mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
11 lines
442 B
JavaScript
11 lines
442 B
JavaScript
import intl from 'react-intl-universal';
|
|
|
|
export const getQuickNewActions = () => [
|
|
{ path: 'invoices/new', name: intl.get('sale_invoice') },
|
|
{ path: 'bills//new', name: intl.get('purchase_invoice') },
|
|
{ path: 'make-journal-entry', name: intl.get('manual_journal') },
|
|
{ path: 'expenses/new', name: intl.get('expense') },
|
|
{ path: 'customers/new', name: intl.get('customer') },
|
|
{ path: 'vendors/new', name: intl.get('vendor') },
|
|
];
|