This commit is contained in:
2026-03-18 06:39:38 -05:00
parent c49ed4bf4a
commit e00639bb8b
11 changed files with 488 additions and 4 deletions

View File

@@ -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;
}