mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-25 15:55:48 +00:00
fix(FE): Make expedition_vendor optional and nullable
This commit is contained in:
Vendored
+4
-4
@@ -43,10 +43,10 @@ export type PurchaseItem = {
|
|||||||
received_qty?: number | null;
|
received_qty?: number | null;
|
||||||
transport_per_item?: number | null;
|
transport_per_item?: number | null;
|
||||||
expedition_vendor?: {
|
expedition_vendor?: {
|
||||||
id: number;
|
id?: number;
|
||||||
name: string;
|
name?: string;
|
||||||
alias: string;
|
alias?: string;
|
||||||
category: string;
|
category?: string;
|
||||||
} | null;
|
} | null;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user