-
Notifications
You must be signed in to change notification settings - Fork 0
/
xlsxReports.ts
56 lines (49 loc) · 1.45 KB
/
xlsxReports.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// eslint-disable-next-line @eslint-community/eslint-comments/disable-enable-pair
/* eslint-disable no-secrets/no-secrets */
export {
parseW114ExcelReport,
w114ReportName,
type W114ExcelReportResults,
type W114AssetReportData
} from './xlsxReports/assets/w114.assetMasterList.js'
export {
parseW200ExcelReport,
w200ReportName,
type W200ExcelReportResults,
type W200StoreroomReportData,
type W200ItemReportData
} from './xlsxReports/inventory/w200.inventory.js'
export {
parseW201ExcelReport,
w201ReportName,
type W201ExcelReportResults,
type W201ItemReportData
} from './xlsxReports/inventory/w201.inventoryItemIssue.js'
export {
parseW217ExcelReport,
w217ReportName,
type W217ExcelReportResults,
type W217DocumentReportData,
type W217TransactionReportData
} from './xlsxReports/inventory/w217.directChargeTransactions.js'
export {
parseW223ExcelReport,
w223ReportName,
type W223ExcelReportResults,
type W223StoreroomReportData,
type W223TransactionReportData
} from './xlsxReports/inventory/w223.inventoryTransactionDetails.js'
export {
parseW311ExcelReport,
w311ReportName,
type W311ExcelReportResults,
type W311ShopReportData,
type W311WorkOrderReportData,
type W311RepairReportData
} from './xlsxReports/maintenance/w311.activeWorkOrdersByShop.js'
export {
parseW604ExcelReport,
w604ReportName,
type W604ExcelReportResults,
type W604MessageReportData
} from './xlsxReports/setup/w604.integrationLogViewer.js'