mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 05:22:02 +00:00
feat: add bank_name
This commit is contained in:
+2
@@ -10,6 +10,7 @@ export type BaseCustomer = {
|
||||
phone: string;
|
||||
email: string;
|
||||
account_number: string;
|
||||
bank_name: string;
|
||||
};
|
||||
|
||||
export type Customer = BaseMetadata & BaseCustomer;
|
||||
@@ -22,6 +23,7 @@ export type CreateCustomerPayload = {
|
||||
phone: string;
|
||||
email: string;
|
||||
account_number: string;
|
||||
bank_name: string;
|
||||
};
|
||||
|
||||
export type UpdateCustomerPayload = CreateCustomerPayload;
|
||||
|
||||
+2
@@ -16,6 +16,7 @@ export type BaseSupplier = {
|
||||
account_number: string;
|
||||
due_date: number;
|
||||
balance?: number;
|
||||
bank_name: string;
|
||||
};
|
||||
|
||||
export type Supplier = BaseMetadata & BaseSupplier;
|
||||
@@ -45,6 +46,7 @@ export type CreateSupplierPayload = {
|
||||
account_number: string;
|
||||
due_date: number;
|
||||
balance?: number;
|
||||
bank_name: string;
|
||||
};
|
||||
|
||||
export type UpdateSupplierPayload = CreateSupplierPayload;
|
||||
|
||||
Reference in New Issue
Block a user