feat(design): fix issues in sidebar design.

feat(sales): reference number auto-increment optimizations.
fix(payments): payment receive/made statement.
This commit is contained in:
a.bouhuolia
2021-03-11 14:29:38 +02:00
parent 59f8010122
commit 30cd6c8a61
62 changed files with 921 additions and 378 deletions

View File

@@ -13,4 +13,5 @@ export const ERROR = {
// Bills
BILL_NUMBER_EXISTS: 'BILL.NUMBER.EXISTS',
SALE_INVOICE_NO_IS_REQUIRED: 'SALE_INVOICE_NO_IS_REQUIRED'
};

View File

@@ -1,8 +1,8 @@
export default [
{ path: 'invoices/new', name: 'Sale invoice', label: 'Ctrl+Shift+I' },
{ path: 'bill//new', name: 'Purchase invoice',label:'Ctrl+Shift+B' },
{ path: 'make-journal-entry', name: 'Manual journal', label: 'Ctrl+Shift+M' },
{ path: 'expenses/new', name: 'Expense', label: 'Ctrl+Shift+X' },
{ path: 'customers/new', name: 'Customer', label: 'Ctrl+Shift+C' },
{ path: 'vendors/new', name: 'Vendor', label: 'Ctrl+Shift+V' },
{ path: 'invoices/new', name: 'Sale invoice' },
{ path: 'bill//new', name: 'Purchase invoice' },
{ path: 'make-journal-entry', name: 'Manual journal' },
{ path: 'expenses/new', name: 'Expense' },
{ path: 'customers/new', name: 'Customer' },
{ path: 'vendors/new', name: 'Vendor' },
];