refactor(FE): Add reference number column to ExpensesTable

This commit is contained in:
rstubryan
2026-02-07 09:29:05 +07:00
parent 5ac958231a
commit 3dee5c1828
3 changed files with 69 additions and 2 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ export type BasePurchase = {
items?: PurchaseItem[];
latest_approval?: BaseApproval;
requester_name?: string;
po_expedition?: string[];
po_expedition?: { id: number; refrence: string }[];
created_user?: CreatedUser;
products?: PurchaseItemProduct[];
};