2022-04-14 08:01:33 +00:00
|
|
|
export type InvoiceStatus = 'Draft' | 'Unpaid' | 'Cancelled' | 'Paid';
|
2022-04-18 11:29:20 +00:00
|
|
|
export enum ModelNameEnum {
|
|
|
|
Account = 'Account',
|
|
|
|
AccountingLedgerEntry = 'AccountingLedgerEntry',
|
|
|
|
AccountingSettings = 'AccountingSettings',
|
|
|
|
Address = 'Address',
|
|
|
|
Color = 'Color',
|
|
|
|
CompanySettings = 'CompanySettings',
|
|
|
|
Currency = 'Currency',
|
|
|
|
GetStarted = 'GetStarted',
|
|
|
|
Item = 'Item',
|
|
|
|
JournalEntry = 'JournalEntry',
|
|
|
|
JournalEntryAccount = 'JournalEntryAccount',
|
|
|
|
NumberSeries = 'NumberSeries',
|
|
|
|
Party = 'Party',
|
|
|
|
Payment = 'Payment',
|
|
|
|
PaymentFor = 'PaymentFor',
|
|
|
|
PrintSettings = 'PrintSettings',
|
|
|
|
PurchaseInvoice = 'PurchaseInvoice',
|
|
|
|
PurchaseInvoiceItem = 'PurchaseInvoiceItem',
|
|
|
|
SalesInvoice = 'SalesInvoice',
|
|
|
|
SalesInvoiceItem = 'SalesInvoiceItem',
|
|
|
|
SalesInvoiceSettings = 'SalesInvoiceSettings',
|
|
|
|
SetupWizard = 'SetupWizard',
|
|
|
|
Tax = 'Tax',
|
|
|
|
TaxDetail = 'TaxDetail',
|
|
|
|
TaxSummary = 'TaxSummary',
|
|
|
|
PatchRun = 'PatchRun',
|
|
|
|
SingleValue = 'SingleValue',
|
|
|
|
SystemSettings = 'SystemSettings',
|
|
|
|
}
|