mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-14 11:50:31 +00:00
57 lines
2.3 KiB
TypeScript
57 lines
2.3 KiB
TypeScript
// @ts-nocheck
|
|
export enum DialogsName {
|
|
AccountForm = 'account-form',
|
|
CurrencyForm = 'currency-form',
|
|
InviteForm = 'invite-user',
|
|
UserForm = 'user-form',
|
|
ExchangeRateForm = 'exchangeRate-form',
|
|
ItemCategoryForm = 'item-category-form',
|
|
InventoryAdjustmentForm = 'inventory-adjustment',
|
|
PaymentViaVoucherForm = 'payment-via-voucher',
|
|
KeyboardShortcutForm = 'keyboard-shortcuts',
|
|
ContactDuplicateForm = 'contact-duplicate',
|
|
QuickPaymentReceiveForm = 'quick-payment-receive',
|
|
QuickPaymentMadeForm = 'quick-payment-made',
|
|
AllocateLandedCostForm = 'allocate-landed-cost',
|
|
InvoicePdfForm = 'invoice-pdf-preview',
|
|
EstimatePdfForm = 'estimate-pdf-preview',
|
|
ReceiptPdfForm = 'receipt-pdf-preview',
|
|
CreditNotePdfForm = 'credit-note-pdf-preview',
|
|
PaymentPdfForm = 'payment-pdf-preview',
|
|
MoneyInForm = 'money-in',
|
|
MoneyOutForm = 'money-out',
|
|
NotifyInvoiceViaForm = 'notify-invoice-via-sms',
|
|
NotifyReceiptViaForm = 'notify-receipt-via-sms',
|
|
NotifyEstimateViaForm = 'notify-estimate-via-sms',
|
|
NotifyPaymentViaForm = 'notify-payment-via-sms',
|
|
BadDebtForm = 'write-off-bad-debt',
|
|
SMSMessageForm = 'sms-message-form',
|
|
RefundCreditNote = 'refund-credit-note',
|
|
RefundVendorCredit = 'refund-vendor-credit',
|
|
ReconcileCreditNote = 'reconcile-credit-note',
|
|
ReconcileVendorCredit = 'reconcile-vendor-credit',
|
|
TransactionsLocking = 'locking-transactions',
|
|
TransactionsUnlocking = 'unlocking-transactions',
|
|
PartialTransactionsUnlocking = 'unlocking-partial-transactions',
|
|
WarehouseForm = 'warehouse-form',
|
|
BranchForm = 'branch-form',
|
|
BranchActivateForm = 'branch-activate',
|
|
WarehouseActivateForm = 'warehouse-activate',
|
|
CustomerOpeningBalanceForm = 'customer-opening-balance',
|
|
VendorOpeningBalanceForm = 'vendor-opening-balance',
|
|
ProjectForm = 'project-form',
|
|
ProjectTaskForm = 'project-task-form',
|
|
ProjectTimeEntryForm = 'project-time-entry-form',
|
|
ProjectExpenseForm = 'project-expense-form',
|
|
EstimateExpenseForm = 'estimate-expense-form',
|
|
ProjectInvoicingForm = 'project-invoicing-form',
|
|
ProjectBillableEntriesForm = 'project-billable-entries',
|
|
InvoiceNumberSettings = 'InvoiceNumberSettings',
|
|
TaxRateForm = 'tax-rate-form',
|
|
InvoiceExchangeRateChangeNotice = 'InvoiceExchangeRateChangeNotice',
|
|
InvoiceMail = 'invoice-mail',
|
|
EstimateMail = 'estimate-mail',
|
|
ReceiptMail = 'receipt-mail',
|
|
PaymentMail = 'payment-mail',
|
|
}
|