mirror of
https://github.com/frappe/books.git
synced 2024-11-08 14:50:56 +00:00
63 lines
2.0 KiB
TypeScript
63 lines
2.0 KiB
TypeScript
export type InvoiceStatus = 'Draft' | 'Saved' | 'Unpaid' | 'Cancelled' | 'Paid' | 'Return' | 'ReturnIssued';
|
|
export enum ModelNameEnum {
|
|
Account = 'Account',
|
|
AccountingLedgerEntry = 'AccountingLedgerEntry',
|
|
AccountingSettings = 'AccountingSettings',
|
|
Address = 'Address',
|
|
Batch= 'Batch',
|
|
Color = 'Color',
|
|
Currency = 'Currency',
|
|
GetStarted = 'GetStarted',
|
|
Defaults = 'Defaults',
|
|
Item = 'Item',
|
|
ItemPrice = 'ItemPrice',
|
|
UOM = 'UOM',
|
|
UOMConversionItem = 'UOMConversionItem',
|
|
JournalEntry = 'JournalEntry',
|
|
JournalEntryAccount = 'JournalEntryAccount',
|
|
Misc = 'Misc',
|
|
NumberSeries = 'NumberSeries',
|
|
Lead = 'Lead',
|
|
Party = 'Party',
|
|
LoyaltyProgram = 'LoyaltyProgram',
|
|
LoyaltyPointEntry = 'LoyaltyPointEntry',
|
|
CollectionRulesItems = 'CollectionRulesItems',
|
|
Payment = 'Payment',
|
|
PaymentFor = 'PaymentFor',
|
|
PriceList = 'PriceList',
|
|
PricingRule = 'PricingRule',
|
|
PricingRuleItem = 'PricingRuleItem',
|
|
PricingRuleDetail = 'PricingRuleDetail',
|
|
PrintSettings = 'PrintSettings',
|
|
PrintTemplate = 'PrintTemplate',
|
|
PurchaseInvoice = 'PurchaseInvoice',
|
|
PurchaseInvoiceItem = 'PurchaseInvoiceItem',
|
|
SalesInvoice = 'SalesInvoice',
|
|
SalesInvoiceItem = 'SalesInvoiceItem',
|
|
SalesQuote = 'SalesQuote',
|
|
SalesQuoteItem = 'SalesQuoteItem',
|
|
SerialNumber = 'SerialNumber',
|
|
SetupWizard = 'SetupWizard',
|
|
Tax = 'Tax',
|
|
TaxDetail = 'TaxDetail',
|
|
TaxSummary = 'TaxSummary',
|
|
PatchRun = 'PatchRun',
|
|
SingleValue = 'SingleValue',
|
|
InventorySettings = 'InventorySettings',
|
|
SystemSettings = 'SystemSettings',
|
|
StockMovement = 'StockMovement',
|
|
StockMovementItem = 'StockMovementItem',
|
|
StockLedgerEntry = 'StockLedgerEntry',
|
|
Shipment = 'Shipment',
|
|
ShipmentItem = 'ShipmentItem',
|
|
PurchaseReceipt = 'PurchaseReceipt',
|
|
PurchaseReceiptItem = 'PurchaseReceiptItem',
|
|
Location = 'Location',
|
|
CustomForm = 'CustomForm',
|
|
CustomField = 'CustomField',
|
|
POSSettings = 'POSSettings',
|
|
POSShift = 'POSShift'
|
|
}
|
|
|
|
export type ModelName = keyof typeof ModelNameEnum;
|