refactor(FE): Add week field handling for marketing and sales order

forms
This commit is contained in:
rstubryan
2026-02-09 14:06:43 +07:00
parent e6a572ac17
commit 291eee3bce
4 changed files with 63 additions and 12 deletions
+1
View File
@@ -11,6 +11,7 @@ export type BaseProductWarehouse = {
quantity: number;
product: Product;
warehouse: Warehouse;
week?: number | null;
};
export type ProductWarehouse = BaseMetadata & BaseProductWarehouse;