feat: empty boxes, ids for shipping pdfs

This commit is contained in:
2024-12-17 20:19:47 +04:00
parent 31a959236c
commit 9167fd0586
10 changed files with 54 additions and 61 deletions

View File

@@ -6,7 +6,7 @@ import type { ProductSchema } from './ProductSchema';
export type BoxSchema = {
id: number;
quantity: number;
product: ProductSchema;
product: (ProductSchema | null);
palletId: (number | null);
dealId: (number | null);
};