workbench rebalance
This commit is contained in:
@@ -8,6 +8,9 @@ export interface ManufacturingStationDto {
|
||||
name: string;
|
||||
description: string;
|
||||
queueDays: number;
|
||||
dailyCapacityMinutes: number;
|
||||
parallelCapacity: number;
|
||||
workingDays: number[];
|
||||
isActive: boolean;
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
@@ -18,6 +21,9 @@ export interface ManufacturingStationInput {
|
||||
name: string;
|
||||
description: string;
|
||||
queueDays: number;
|
||||
dailyCapacityMinutes: number;
|
||||
parallelCapacity: number;
|
||||
workingDays: number[];
|
||||
isActive: boolean;
|
||||
}
|
||||
|
||||
@@ -71,6 +77,9 @@ export interface WorkOrderOperationDto {
|
||||
stationId: string;
|
||||
stationCode: string;
|
||||
stationName: string;
|
||||
stationDailyCapacityMinutes: number;
|
||||
stationParallelCapacity: number;
|
||||
stationWorkingDays: number[];
|
||||
sequence: number;
|
||||
setupMinutes: number;
|
||||
runMinutesPerUnit: number;
|
||||
@@ -159,3 +168,8 @@ export interface WorkOrderCompletionInput {
|
||||
quantity: number;
|
||||
notes: string;
|
||||
}
|
||||
|
||||
export interface WorkOrderOperationScheduleInput {
|
||||
plannedStart: string;
|
||||
stationId?: string | null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user