mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
refactor(FE-363): Extract row and summary types for logistic report
This commit is contained in:
+27
-17
@@ -3,21 +3,31 @@ import { Supplier } from '@/types/api/supplier/supplier';
|
||||
import { Product } from '@/types/api/product/product';
|
||||
import { Warehouse } from '@/types/api/warehouse/warehouse';
|
||||
|
||||
export type LogisticPurchasePerSupplierReport = BaseMetadata & {
|
||||
rows: {
|
||||
supplier: Supplier;
|
||||
receive_date: string;
|
||||
po_date: string;
|
||||
po_number: string;
|
||||
product: Product;
|
||||
warehouse: Warehouse;
|
||||
qty: number;
|
||||
unit_price: number;
|
||||
purchase_value: number;
|
||||
transport_unit_price: number;
|
||||
transport_value: number;
|
||||
total_amount: number;
|
||||
expedition: string;
|
||||
delivery_number: string;
|
||||
}[];
|
||||
export type LogisticPurchasePerSupplierReportRow = {
|
||||
receive_date: string;
|
||||
po_date: string;
|
||||
po_number: string;
|
||||
product: Product;
|
||||
warehouse: Warehouse;
|
||||
qty: number;
|
||||
unit_price: number;
|
||||
purchase_value: number;
|
||||
transport_unit_price: number;
|
||||
transport_value: number;
|
||||
total_amount: number;
|
||||
expedition: string;
|
||||
delivery_number: string;
|
||||
};
|
||||
|
||||
export type LogisticPurchasePerSupplierSummary = {
|
||||
total_qty: number;
|
||||
total_purchase_value: number;
|
||||
total_transport_value: number;
|
||||
total_amount: number;
|
||||
};
|
||||
|
||||
export type LogisticPurchasePerSupplierReport = BaseMetadata & {
|
||||
supplier: Supplier;
|
||||
rows: LogisticPurchasePerSupplierReportRow[];
|
||||
summary: LogisticPurchasePerSupplierSummary;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user