Connect production orders to stock movements

This commit is contained in:
Cauê Faleiros
2026-07-13 13:22:11 -03:00
parent afaa18ca14
commit 8f3f2f3e93
6 changed files with 475 additions and 10 deletions

View File

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