mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
- feat: Sales estimates.
- feat: Sales invoices. - feat: Sales payment receives. - feat: Purchases bills. - feat: Purchases bills payments that made to the vendors.
This commit is contained in:
13
server/src/interfaces/BillPayment.ts
Normal file
13
server/src/interfaces/BillPayment.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
|
||||
export interface IBillPaymentEntry {
|
||||
billId: number,
|
||||
paymentAmount: number,
|
||||
};
|
||||
|
||||
export interface IBillPayment {
|
||||
amount: number,
|
||||
reference: string,
|
||||
billNo: string,
|
||||
entries: IBillPaymentEntry[],
|
||||
}
|
||||
Reference in New Issue
Block a user