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);
};

View File

@@ -3,8 +3,6 @@
/* tslint:disable */
/* eslint-disable */
export type CreateBoxInDealSchema = {
productId: (number | null);
quantity: (number | null);
dealId: (number | null);
};

View File

@@ -3,8 +3,6 @@
/* tslint:disable */
/* eslint-disable */
export type CreateBoxInPalletSchema = {
productId: (number | null);
quantity: (number | null);
palletId: (number | null);
};