mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
feat(design): fix issues in sidebar design.
feat(sales): reference number auto-increment optimizations. fix(payments): payment receive/made statement.
This commit is contained in:
@@ -17,6 +17,7 @@ export interface IBillPayment {
|
||||
paymentDate: Date,
|
||||
userId: number,
|
||||
entries: IBillPaymentEntry[],
|
||||
statement: string,
|
||||
}
|
||||
|
||||
export interface IBillPaymentEntryDTO {
|
||||
@@ -29,7 +30,7 @@ export interface IBillPaymentDTO {
|
||||
paymentAccountId: number,
|
||||
paymentNumber?: string,
|
||||
paymentDate: Date,
|
||||
description: string,
|
||||
statement: string,
|
||||
reference: string,
|
||||
entries: IBillPaymentEntryDTO[],
|
||||
};
|
||||
|
||||
@@ -9,7 +9,7 @@ export interface IPaymentReceive {
|
||||
referenceNo: string,
|
||||
depositAccountId: number,
|
||||
paymentReceiveNo: string,
|
||||
description: string,
|
||||
statement: string,
|
||||
entries: IPaymentReceiveEntry[],
|
||||
userId: number,
|
||||
};
|
||||
@@ -20,7 +20,7 @@ export interface IPaymentReceiveCreateDTO {
|
||||
referenceNo: string,
|
||||
depositAccountId: number,
|
||||
paymentReceiveNo?: string,
|
||||
description: string,
|
||||
statement: string,
|
||||
entries: IPaymentReceiveEntryDTO[],
|
||||
};
|
||||
|
||||
@@ -31,7 +31,7 @@ export interface IPaymentReceiveEditDTO {
|
||||
referenceNo: string,
|
||||
depositAccountId: number,
|
||||
paymentReceiveNo?: string,
|
||||
description: string,
|
||||
statement: string,
|
||||
entries: IPaymentReceiveEntryDTO[],
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user