mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
feat: customer form styling.
feat: customers list.
This commit is contained in:
@@ -47,7 +47,10 @@ export interface IContact extends IContactAddress{
|
||||
contactType: string,
|
||||
|
||||
balance: number,
|
||||
currencyCode: string,
|
||||
|
||||
openingBalance: number,
|
||||
openingBalanceAt: Date,
|
||||
|
||||
firstName: string,
|
||||
lastName: string,
|
||||
@@ -64,7 +67,10 @@ export interface IContact extends IContactAddress{
|
||||
export interface IContactNewDTO {
|
||||
contactType?: string,
|
||||
|
||||
currencyCode?: string,
|
||||
|
||||
openingBalance?: number,
|
||||
openingBalanceAt?: string,
|
||||
|
||||
firstName?: string,
|
||||
lastName?: string,
|
||||
@@ -81,8 +87,6 @@ export interface IContactNewDTO {
|
||||
export interface IContactEditDTO {
|
||||
contactType?: string,
|
||||
|
||||
openingBalance?: number,
|
||||
|
||||
firstName?: string,
|
||||
lastName?: string,
|
||||
companyName?: string,
|
||||
@@ -104,7 +108,10 @@ export interface ICustomer extends IContact {
|
||||
export interface ICustomerNewDTO extends IContactAddressDTO {
|
||||
customerType: string,
|
||||
|
||||
currencyCode: string,
|
||||
|
||||
openingBalance?: number,
|
||||
openingBalanceAt?: string,
|
||||
|
||||
firstName?: string,
|
||||
lastName?: string,
|
||||
@@ -121,8 +128,6 @@ export interface ICustomerNewDTO extends IContactAddressDTO {
|
||||
export interface ICustomerEditDTO extends IContactAddressDTO {
|
||||
customerType: string,
|
||||
|
||||
openingBalance?: number,
|
||||
|
||||
firstName?: string,
|
||||
lastName?: string,
|
||||
companyName?: string,
|
||||
@@ -142,7 +147,10 @@ export interface IVendor extends IContact {
|
||||
contactService: 'vendor',
|
||||
}
|
||||
export interface IVendorNewDTO extends IContactAddressDTO {
|
||||
currencyCode: string,
|
||||
|
||||
openingBalance?: number,
|
||||
openingBalanceAt?: string,
|
||||
|
||||
firstName?: string,
|
||||
lastName?: string,
|
||||
@@ -157,8 +165,6 @@ export interface IVendorNewDTO extends IContactAddressDTO {
|
||||
active?: boolean,
|
||||
};
|
||||
export interface IVendorEditDTO extends IContactAddressDTO {
|
||||
openingBalance?: number,
|
||||
|
||||
firstName?: string,
|
||||
lastName?: string,
|
||||
companyName?: string,
|
||||
|
||||
Reference in New Issue
Block a user