mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
WIP / Features / Sate
This commit is contained in:
@@ -204,4 +204,75 @@ export default [
|
||||
}),
|
||||
breadcrumb: 'Customers',
|
||||
},
|
||||
|
||||
//Estimates
|
||||
{
|
||||
path: `/estimates/:id/edit`,
|
||||
component: LazyLoader({
|
||||
loader: () => import('containers/Sales/Estimate/Estimates'),
|
||||
}),
|
||||
breadcrumb: 'Edit',
|
||||
},
|
||||
{
|
||||
path: `/estimates/new`,
|
||||
component: LazyLoader({
|
||||
loader: () => import('containers/Sales/Estimate/Estimates'),
|
||||
}),
|
||||
breadcrumb: 'New Estimates',
|
||||
},
|
||||
// {
|
||||
// path: `/estimates`,
|
||||
// component: LazyLoader({
|
||||
// loader: () => import('containers/Sales/EstimatesList'),
|
||||
// }),
|
||||
// breadcrumb: 'Estimates',
|
||||
// },
|
||||
|
||||
//Invoices
|
||||
|
||||
{
|
||||
path: `/invoices/:id/edit`,
|
||||
component: LazyLoader({
|
||||
loader: () => import('containers/Sales/Invoice/Invoices'),
|
||||
}),
|
||||
breadcrumb: 'Edit',
|
||||
},
|
||||
|
||||
{
|
||||
path: `/invoices/new`,
|
||||
component: LazyLoader({
|
||||
loader: () => import('containers/Sales/Invoice/Invoices'),
|
||||
}),
|
||||
breadcrumb: 'New Invoice',
|
||||
},
|
||||
// {
|
||||
// path:`/invoices`,
|
||||
// component:LazyLoader({
|
||||
// loader:()=>import('containers/Sales/Invoice/Invoices')
|
||||
// }),
|
||||
// breadcrumb: 'New Invoice',
|
||||
// },
|
||||
|
||||
//Receipts
|
||||
{
|
||||
path: `/receipts/:id/edit`,
|
||||
component: LazyLoader({
|
||||
loader: () => import('containers/Sales/Receipt/Receipts'),
|
||||
}),
|
||||
breadcrumb: 'Edit',
|
||||
},
|
||||
{
|
||||
path: `/receipts/new`,
|
||||
component: LazyLoader({
|
||||
loader: () => import('containers/Sales/Receipt/Receipts'),
|
||||
}),
|
||||
breadcrumb: 'New Receipt',
|
||||
},
|
||||
// {
|
||||
// path: `/receipts`,
|
||||
// component: LazyLoader({
|
||||
// loader: () => import('containers/Sales/Receipt/Receipts'),
|
||||
// }),
|
||||
// breadcrumb: 'New Receipt',
|
||||
// }
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user