mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-10 01:41:59 +00:00
179 lines
3.8 KiB
JavaScript
179 lines
3.8 KiB
JavaScript
export const AbilitySubject = {
|
|
Item: 'Item',
|
|
InventoryAdjustment: 'InventoryAdjustment',
|
|
Estimate: 'SaleEstimate',
|
|
Invoice: 'SaleInvoice',
|
|
Receipt: 'SaleReceipt',
|
|
PaymentReceive: 'PaymentReceive',
|
|
Bill: 'Bill',
|
|
PaymentMade: 'PaymentMade',
|
|
Customer: 'Customer',
|
|
Vendor: 'Vendor',
|
|
Account: 'Account',
|
|
ManualJournal: 'ManualJournal',
|
|
Expense: 'Expense',
|
|
Cashflow: 'Cashflow',
|
|
Report: 'Report',
|
|
Preferences: 'Preferences',
|
|
ExchangeRate: 'ExchangeRate',
|
|
SubscriptionBilling: 'SubscriptionBilling',
|
|
CreditNote: 'CreditNote',
|
|
VendorCredit: 'VendorCredit',
|
|
};
|
|
|
|
export const ItemAction = {
|
|
View: 'View',
|
|
Create: 'Create',
|
|
Edit: 'Edit',
|
|
Delete: 'Delete',
|
|
};
|
|
|
|
export const InventoryAdjustmentAction = {
|
|
Create: 'Create',
|
|
Edit: 'Edit',
|
|
View: 'View',
|
|
Delete: 'Delete',
|
|
};
|
|
|
|
export const SaleEstimateAction = {
|
|
View: 'View',
|
|
Create: 'Create',
|
|
Edit: 'Edit',
|
|
Delete: 'Delete',
|
|
NotifyBySms: 'NotifyBySms',
|
|
};
|
|
|
|
export const SaleInvoiceAction = {
|
|
View: 'View',
|
|
Create: 'Create',
|
|
Edit: 'Edit',
|
|
Delete: 'Delete',
|
|
Writeoff: 'bad-debt',
|
|
NotifyBySms: 'NotifyBySms',
|
|
};
|
|
|
|
export const SaleReceiptAction = {
|
|
View: 'View',
|
|
Create: 'Create',
|
|
Edit: 'Edit',
|
|
Delete: 'Delete',
|
|
NotifyBySms: 'NotifyBySms',
|
|
};
|
|
|
|
export const PaymentReceiveAction = {
|
|
View: 'View',
|
|
Create: 'Create',
|
|
Edit: 'Edit',
|
|
Delete: 'Delete',
|
|
NotifyBySms: 'NotifyBySms',
|
|
};
|
|
|
|
export const CreditNoteAction = {
|
|
View: 'View',
|
|
Create: 'Create',
|
|
Edit: 'Edit',
|
|
Delete: 'Delete',
|
|
Refund: 'Refund'
|
|
};
|
|
|
|
export const VendorCreditAction = {
|
|
View: 'View',
|
|
Create: 'Create',
|
|
Edit: 'Edit',
|
|
Delete: 'Delete',
|
|
Refund: 'Refund'
|
|
};
|
|
export const BillAction = {
|
|
View: 'View',
|
|
Create: 'Create',
|
|
Edit: 'Edit',
|
|
Delete: 'Delete',
|
|
NotifyBySms: 'NotifyBySms',
|
|
};
|
|
|
|
export const PaymentMadeAction = {
|
|
View: 'View',
|
|
Create: 'Create',
|
|
Edit: 'Edit',
|
|
Delete: 'Delete',
|
|
};
|
|
|
|
export const CustomerAction = {
|
|
View: 'View',
|
|
Create: 'Create',
|
|
Edit: 'Edit',
|
|
Delete: 'Delete',
|
|
};
|
|
|
|
export const VendorAction = {
|
|
View: 'View',
|
|
Create: 'Create',
|
|
Edit: 'Edit',
|
|
Delete: 'Delete',
|
|
};
|
|
|
|
export const AccountAction = {
|
|
View: 'View',
|
|
Create: 'Create',
|
|
Edit: 'Edit',
|
|
Delete: 'Delete',
|
|
TransactionsLocking: 'TransactionsLocking',
|
|
};
|
|
|
|
export const ManualJournalAction = {
|
|
View: 'View',
|
|
Create: 'Create',
|
|
Edit: 'Edit',
|
|
Delete: 'Delete',
|
|
TransactionLocking: 'TransactionLocking',
|
|
};
|
|
|
|
export const ExpenseAction = {
|
|
View: 'View',
|
|
Create: 'Create',
|
|
Edit: 'Edit',
|
|
Delete: 'Delete',
|
|
};
|
|
|
|
export const CashflowAction = {
|
|
View: 'View',
|
|
Create: 'Create',
|
|
Delete: 'Delete',
|
|
};
|
|
|
|
export const ReportsAction = {
|
|
ALL: 'all',
|
|
READ_BALANCE_SHEET: 'read-balance-sheet',
|
|
READ_TRIAL_BALANCE_SHEET: 'read-trial-balance-sheet',
|
|
READ_PROFIT_LOSS: 'read-profit-loss',
|
|
READ_JOURNAL: 'read-journal',
|
|
READ_GENERAL_LEDGET: 'read-general-ledger',
|
|
READ_CASHFLOW: 'read-cashflow',
|
|
READ_AR_AGING_SUMMARY: 'read-ar-aging-summary',
|
|
READ_AP_AGING_SUMMARY: 'read-ap-aging-summary',
|
|
READ_PURCHASES_BY_ITEMS: 'read-purchases-by-items',
|
|
READ_SALES_BY_ITEMS: 'read-sales-by-items',
|
|
READ_CUSTOMERS_TRANSACTIONS: 'read-customers-transactions',
|
|
READ_VENDORS_TRANSACTIONS: 'read-vendors-transactions',
|
|
READ_CUSTOMERS_SUMMARY_BALANCE: 'read-customers-summary-balance',
|
|
READ_VENDORS_SUMMARY_BALANCE: 'read-vendors-summary-balance',
|
|
READ_INVENTORY_VALUATION_SUMMARY: 'read-inventory-valuation-summary',
|
|
READ_INVENTORY_ITEM_DETAILS: 'read-inventory-item-details',
|
|
READ_CASHFLOW_ACCOUNT_TRANSACTION: 'read-cashflow-account-transactions',
|
|
};
|
|
|
|
export const PreferencesAbility = {
|
|
Mutate: 'Mutate',
|
|
};
|
|
|
|
export const ExchangeRateAbility = {
|
|
View: 'view',
|
|
Create: 'create',
|
|
Delete: 'delete',
|
|
};
|
|
|
|
export const SubscriptionBillingAbility = {
|
|
View: 'view',
|
|
Payment: 'payment',
|
|
};
|