mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
- feat: Sales estimates APIs.
- feat: Sales invoices APIs. - feat: Sales receipts APIs. - WIP: Sales payment receipts. - WIP: Purchases bills. - WIP: Purchases payments made.
This commit is contained in:
37
server/src/models/index.js
Normal file
37
server/src/models/index.js
Normal file
@@ -0,0 +1,37 @@
|
||||
import Customer from './Customer';
|
||||
import Vendor from './Vendor';
|
||||
import SaleEstimate from './SaleEstimate';
|
||||
import SaleEstimateEntry from './SaleEstimateEntry';
|
||||
import SaleReceipt from './SaleReceipt';
|
||||
import SaleReceiptEntry from './SaleReceiptEntry';
|
||||
import Item from './Item';
|
||||
import Account from './Account';
|
||||
import AccountTransaction from './AccountTransaction';
|
||||
import SaleInvoice from './SaleInvoice';
|
||||
import SaleInvoiceEntry from './SaleInvoiceEntry';
|
||||
import PaymentReceive from './PaymentReceive';
|
||||
import PaymentReceiveEntry from './PaymentReceiveEntry';
|
||||
import Bill from './Bill';
|
||||
import BillPayment from './BillPayment';
|
||||
import Resource from './Resource';
|
||||
import View from './View';
|
||||
|
||||
export {
|
||||
Customer,
|
||||
Vendor,
|
||||
SaleEstimate,
|
||||
SaleEstimateEntry,
|
||||
SaleReceipt,
|
||||
SaleReceiptEntry,
|
||||
SaleInvoice,
|
||||
SaleInvoiceEntry,
|
||||
Item,
|
||||
Account,
|
||||
AccountTransaction,
|
||||
PaymentReceive,
|
||||
PaymentReceiveEntry,
|
||||
Bill,
|
||||
BillPayment,
|
||||
Resource,
|
||||
View,
|
||||
};
|
||||
Reference in New Issue
Block a user