mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-21 22:05:45 +00:00
refactor(FE-363): Rename SupplierWithItems type for clarity
This commit is contained in:
+2
-2
@@ -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[];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user