refactor(FE): Show expedition vendor name in order detail

This commit is contained in:
rstubryan
2025-12-31 11:21:35 +07:00
parent a1e8f582ba
commit 28c94e3e1d
2 changed files with 7 additions and 1 deletions
+6
View File
@@ -42,6 +42,12 @@ export type PurchaseItem = {
expedition_vendor_name?: string | null;
received_qty?: number | null;
transport_per_item?: number | null;
expedition_vendor: {
id: number;
name: string;
alias: string;
category: string;
};
};
export type BasePurchase = {