mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
- fix: Schedule write journal entries after item compute cost.
- fix: active vouchers query. - fix: remove babel loader in server-side.
This commit is contained in:
@@ -1,8 +1,18 @@
|
||||
|
||||
|
||||
export interface ISaleInvoice {
|
||||
id: number,
|
||||
balance: number,
|
||||
paymentAmount: number,
|
||||
invoiceDate: Date,
|
||||
entries: [],
|
||||
dueDate: Date,
|
||||
entries: any[],
|
||||
}
|
||||
|
||||
export interface ISaleInvoiceOTD {
|
||||
invoiceDate: Date,
|
||||
dueDate: Date,
|
||||
referenceNo: string,
|
||||
invoiceMessage: string,
|
||||
termsConditions: string,
|
||||
entries: any[],
|
||||
}
|
||||
@@ -12,6 +12,10 @@ import {
|
||||
IVoucherPaymentMethod,
|
||||
IPaymentContext,
|
||||
} from './Payment';
|
||||
import {
|
||||
ISaleInvoice,
|
||||
ISaleInvoiceOTD,
|
||||
} from './SaleInvoice';
|
||||
|
||||
export {
|
||||
IBillPaymentEntry,
|
||||
@@ -31,4 +35,7 @@ export {
|
||||
IPaymentContext,
|
||||
IVoucherPaymentModel,
|
||||
IVoucherPaymentMethod,
|
||||
|
||||
ISaleInvoice,
|
||||
ISaleInvoiceOTD,
|
||||
};
|
||||
Reference in New Issue
Block a user