Connect production orders to stock movements
This commit is contained in:
11
src/types.ts
11
src/types.ts
@@ -270,6 +270,17 @@ export type SupplyFabricPlanPayload = {
|
||||
priority?: string;
|
||||
};
|
||||
|
||||
export type SupplyInventoryAdjustmentPayload = {
|
||||
countedQuantity: number | string;
|
||||
reason: string;
|
||||
};
|
||||
|
||||
export type SupplyProductionExitPayload = {
|
||||
quantity: number | string;
|
||||
productionOrderNumber?: string;
|
||||
reason?: string;
|
||||
};
|
||||
|
||||
export interface DateRange {
|
||||
start: Date;
|
||||
end: Date;
|
||||
|
||||
Reference in New Issue
Block a user