mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
- feat: Optimize tenancy software architecture.
This commit is contained in:
3
server/src/interfaces/Bill.ts
Normal file
3
server/src/interfaces/Bill.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export interface IBillOTD {};
|
||||
export interface IBill {};
|
||||
|
||||
@@ -10,4 +10,6 @@ export interface IBillPayment {
|
||||
reference: string,
|
||||
billNo: string,
|
||||
entries: IBillPaymentEntry[],
|
||||
}
|
||||
}
|
||||
|
||||
export interface IBillPaymentOTD {};
|
||||
4
server/src/interfaces/PaymentReceive.ts
Normal file
4
server/src/interfaces/PaymentReceive.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
|
||||
|
||||
export interface IPaymentReceive { };
|
||||
export interface IPaymentReceiveOTD { };
|
||||
4
server/src/interfaces/SaleEstimate.ts
Normal file
4
server/src/interfaces/SaleEstimate.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
|
||||
|
||||
export interface ISaleEstimate {};
|
||||
export interface ISaleEstimateOTD {};
|
||||
@@ -1,5 +1,9 @@
|
||||
import { IInventoryTransaction, IInventoryLotCost } from './InventoryTransaction';
|
||||
import { IBillPaymentEntry, IBillPayment } from './BillPayment';
|
||||
import {
|
||||
IBillPaymentEntry,
|
||||
IBillPayment,
|
||||
IBillPaymentOTD,
|
||||
} from './BillPayment';
|
||||
import { IInventoryCostMethod } from './InventoryCostMethod';
|
||||
import { IItemEntry } from './ItemEntry';
|
||||
import { IItem } from './Item';
|
||||
@@ -16,10 +20,20 @@ import {
|
||||
ISaleInvoice,
|
||||
ISaleInvoiceOTD,
|
||||
} from './SaleInvoice';
|
||||
import {
|
||||
IPaymentReceive,
|
||||
IPaymentReceiveOTD,
|
||||
} from './PaymentReceive';
|
||||
import {
|
||||
ISaleEstimate,
|
||||
ISaleEstimateOTD,
|
||||
} from './SaleEstimate';
|
||||
|
||||
export {
|
||||
IBillPaymentEntry,
|
||||
IBillPayment,
|
||||
IBillPaymentOTD,
|
||||
|
||||
IInventoryTransaction,
|
||||
IInventoryLotCost,
|
||||
IInventoryCostMethod,
|
||||
@@ -38,4 +52,10 @@ export {
|
||||
|
||||
ISaleInvoice,
|
||||
ISaleInvoiceOTD,
|
||||
|
||||
ISaleEstimate,
|
||||
ISaleEstimateOTD,
|
||||
|
||||
IPaymentReceive,
|
||||
IPaymentReceiveOTD,
|
||||
};
|
||||
Reference in New Issue
Block a user