Files
bigcapital/server/src/models/index.js
2020-09-16 21:41:09 +02:00

47 lines
1.3 KiB
JavaScript

import Customer from './Customer';
import Vendor from './Vendor';
import Option from './Option';
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 BillPaymentEntry from './BillPaymentEntry';
import View from './View';
import ItemEntry from './ItemEntry';
import InventoryTransaction from './InventoryTransaction';
import AccountType from './AccountType';
import InventoryLotCostTracker from './InventoryCostLotTracker';
export {
Customer,
Vendor,
SaleEstimate,
SaleEstimateEntry,
SaleReceipt,
SaleReceiptEntry,
SaleInvoice,
SaleInvoiceEntry,
Item,
Account,
AccountTransaction,
PaymentReceive,
PaymentReceiveEntry,
Bill,
BillPayment,
BillPaymentEntry,
View,
ItemEntry,
InventoryTransaction,
InventoryLotCostTracker,
AccountType,
Option,
};