timers
This commit is contained in:
@@ -37,6 +37,12 @@ export interface ManufacturingProjectOptionDto {
|
||||
status: string;
|
||||
}
|
||||
|
||||
export interface ManufacturingUserOptionDto {
|
||||
id: string;
|
||||
name: string;
|
||||
email: string;
|
||||
}
|
||||
|
||||
export interface ManufacturingItemOptionDto {
|
||||
id: string;
|
||||
sku: string;
|
||||
@@ -95,6 +101,9 @@ export interface WorkOrderOperationDto {
|
||||
actualEnd: string | null;
|
||||
actualMinutes: number;
|
||||
laborEntryCount: number;
|
||||
assignedOperatorId: string | null;
|
||||
assignedOperatorName: string | null;
|
||||
activeTimerStartedAt: string | null;
|
||||
laborEntries: WorkOrderOperationLaborEntryDto[];
|
||||
}
|
||||
|
||||
@@ -200,3 +209,12 @@ export interface WorkOrderOperationLaborEntryInput {
|
||||
minutes: number;
|
||||
notes: string;
|
||||
}
|
||||
|
||||
export interface WorkOrderOperationAssignmentInput {
|
||||
assignedOperatorId: string | null;
|
||||
}
|
||||
|
||||
export interface WorkOrderOperationTimerInput {
|
||||
action: "START" | "STOP";
|
||||
notes: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user