mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 22:00:31 +00:00
32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
export const ERRORS = {
|
|
NOT_FOUND: 'manual_journal_not_found',
|
|
CREDIT_DEBIT_NOT_EQUAL_ZERO: 'credit_debit_not_equal_zero',
|
|
CREDIT_DEBIT_NOT_EQUAL: 'credit_debit_not_equal',
|
|
ACCOUNTS_IDS_NOT_FOUND: 'accounts_ids_not_found',
|
|
JOURNAL_NUMBER_EXISTS: 'journal_number_exists',
|
|
ENTRIES_SHOULD_ASSIGN_WITH_CONTACT: 'ENTRIES_SHOULD_ASSIGN_WITH_CONTACT',
|
|
CONTACTS_NOT_FOUND: 'contacts_not_found',
|
|
ENTRIES_CONTACTS_NOT_FOUND: 'ENTRIES_CONTACTS_NOT_FOUND',
|
|
MANUAL_JOURNAL_ALREADY_PUBLISHED: 'MANUAL_JOURNAL_ALREADY_PUBLISHED',
|
|
MANUAL_JOURNAL_NO_REQUIRED: 'MANUAL_JOURNAL_NO_REQUIRED',
|
|
COULD_NOT_ASSIGN_DIFFERENT_CURRENCY_TO_ACCOUNTS:
|
|
'COULD_NOT_ASSIGN_DIFFERENT_CURRENCY_TO_ACCOUNTS',
|
|
MANUAL_JOURNAL_ENTRIES_HAVE_NO_BRANCH_ID:
|
|
'MANUAL_JOURNAL_ENTRIES_HAVE_NO_BRANCH_ID',
|
|
};
|
|
|
|
export const CONTACTS_CONFIG = [
|
|
{
|
|
accountBySlug: 'accounts-receivable',
|
|
contactService: 'customer',
|
|
assignRequired: true,
|
|
},
|
|
{
|
|
accountBySlug: 'accounts-payable',
|
|
contactService: 'vendor',
|
|
assignRequired: true,
|
|
},
|
|
];
|
|
|
|
export const DEFAULT_VIEWS = [];
|