fix(FE): Make expedition_vendor optional and nullable

This commit is contained in:
rstubryan
2025-12-31 11:58:45 +07:00
parent 201c9249cc
commit 37317ed95c
+4 -4
View File
@@ -43,10 +43,10 @@ export type PurchaseItem = {
received_qty?: number | null;
transport_per_item?: number | null;
expedition_vendor?: {
id: number;
name: string;
alias: string;
category: string;
id?: number;
name?: string;
alias?: string;
category?: string;
} | null;
};