feat: empty boxes, ids for shipping pdfs
This commit is contained in:
@@ -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);
|
||||
};
|
||||
|
||||
@@ -3,8 +3,6 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type CreateBoxInDealSchema = {
|
||||
productId: (number | null);
|
||||
quantity: (number | null);
|
||||
dealId: (number | null);
|
||||
};
|
||||
|
||||
|
||||
@@ -3,8 +3,6 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type CreateBoxInPalletSchema = {
|
||||
productId: (number | null);
|
||||
quantity: (number | null);
|
||||
palletId: (number | null);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user