mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-21 05:45:46 +00:00
refactor(FE): Update customer payment types and exports
This commit is contained in:
+3
-4
@@ -7,7 +7,7 @@ export type CustomerPaymentRow = {
|
||||
trans_date: string;
|
||||
delivery_date: string | null;
|
||||
reference: string;
|
||||
vehicle_numbers: string;
|
||||
vehicle_numbers: string[];
|
||||
qty: number;
|
||||
weight: number;
|
||||
average_weight: number;
|
||||
@@ -16,16 +16,15 @@ export type CustomerPaymentRow = {
|
||||
total_price: number;
|
||||
payment_amount: number;
|
||||
accounts_receivable: number;
|
||||
aging_day: number;
|
||||
aging_day: number | null;
|
||||
status: string;
|
||||
pickup_info: string;
|
||||
pickup_info: string[];
|
||||
sales_person: string;
|
||||
};
|
||||
|
||||
export type CustomerPaymentSummary = {
|
||||
total_qty: number;
|
||||
total_weight: number;
|
||||
total_initial_amount: number;
|
||||
total_final_amount: number;
|
||||
total_grand_amount: number;
|
||||
total_payment: number;
|
||||
|
||||
Reference in New Issue
Block a user