Skip to content

Commit dfd9aac

Browse files
committed
incomplete
1 parent 807927d commit dfd9aac

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
export interface W399WorkOrderReportData {
2+
workOrderNumber: number;
3+
}
4+
export declare const w399ReportName = "W399 - Technician Work Order";
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import Debug from 'debug';
2+
import { DEBUG_NAMESPACE } from '../../debug.config.js';
3+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
4+
const debug = Debug(`${DEBUG_NAMESPACE}:xlsx:w399`);
5+
export const w399ReportName = 'W399 - Technician Work Order';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import Debug from 'debug'
2+
3+
import { DEBUG_NAMESPACE } from '../../debug.config.js'
4+
5+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
6+
const debug = Debug(`${DEBUG_NAMESPACE}:xlsx:w399`)
7+
8+
export interface W399WorkOrderReportData {
9+
workOrderNumber: number
10+
11+
}
12+
13+
export const w399ReportName = 'W399 - Technician Work Order'

0 commit comments

Comments
 (0)