add salesInvoice in pos of consumer domain
This commit is contained in:
@@ -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
@@ -10,7 +10,7 @@ export interface IPosOrderRequest {
|
||||
items: IPosOrderItem[];
|
||||
notes?: string;
|
||||
customer_type?: CustomerType;
|
||||
customerId?: string;
|
||||
customer_id?: string;
|
||||
customer?: ICustomer;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user