Files
bigcapital/packages/webapp/src/constants/dialogs.ts
2023-05-19 00:29:35 +02:00

51 lines
2.1 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'
}