add salesInvoice in pos of consumer domain

This commit is contained in:
2026-03-30 13:17:34 +03:30
parent c10623bc3f
commit 44097fe1ac
35 changed files with 855 additions and 122 deletions
@@ -20,9 +20,9 @@ export interface IUnknownCustomer {
}
export interface ICustomer {
customerIndividuals?: IIndividualCustomer;
customerLegals?: ILegalCustomer;
customerUnknown?: IUnknownCustomer;
customer_individual?: IIndividualCustomer;
customer_legal?: ILegalCustomer;
customer_unknown?: IUnknownCustomer;
}
export type TCustomerInfo = IIndividualCustomer | ILegalCustomer | IUnknownCustomer;
+1 -1
View File
@@ -10,7 +10,7 @@ export interface IPosOrderRequest {
items: IPosOrderItem[];
notes?: string;
customer_type?: CustomerType;
customerId?: string;
customer_id?: string;
customer?: ICustomer;
}