fix(FE): Make expedition_vendor optional and nullable

This commit is contained in:
rstubryan
2025-12-31 11:58:14 +07:00
parent 46dfacae23
commit 201c9249cc
+2 -2
View File
@@ -42,12 +42,12 @@ export type PurchaseItem = {
expedition_vendor_name?: string | null; expedition_vendor_name?: string | null;
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;
}; };
export type BasePurchase = { export type BasePurchase = {