refactor(FE-363): Rename SupplierWithItems type for clarity

This commit is contained in:
rstubryan
2025-12-13 10:57:56 +07:00
parent bd4c51cb04
commit 0983f154d2
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -20,12 +20,12 @@ export type LogisticPurchasePerSupplierItems = {
travel_number: string;
};
export type SupplierWithItems = {
export type LogisticPurchasePerSupplier = {
id: number;
supplier: Supplier;
items: LogisticPurchasePerSupplierItems[];
};
export type LogisticPurchasePerSupplierReport = BaseMetadata & {
data: SupplierWithItems[];
data: LogisticPurchasePerSupplier[];
};