Some work on customers view #3
This commit is contained in:
Vendored
+3
@@ -105,6 +105,7 @@ export interface Customer {
|
||||
customerNr: number | null;
|
||||
vatId: string | null;
|
||||
contacts: Contact[];
|
||||
url?: string;
|
||||
email?: string;
|
||||
phone?: string;
|
||||
billingAddress?: Address;
|
||||
@@ -112,6 +113,7 @@ export interface Customer {
|
||||
status: string;
|
||||
avatar?: string | null;
|
||||
notes?: string;
|
||||
logo: string | null;
|
||||
}
|
||||
|
||||
export type CustomerType = Customer
|
||||
@@ -126,6 +128,7 @@ export function newCustomer(): Customer {
|
||||
billingAddress: newAddress(),
|
||||
paymentTerms: newPaymentTerms(),
|
||||
status: 'active',
|
||||
logo: null
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user