mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
WIP/ Feature : Estimate & Receipt & Bill & Invoice
This commit is contained in:
@@ -220,13 +220,13 @@ export default [
|
||||
}),
|
||||
breadcrumb: 'New Estimates',
|
||||
},
|
||||
// {
|
||||
// path: `/estimates`,
|
||||
// component: LazyLoader({
|
||||
// loader: () => import('containers/Sales/EstimatesList'),
|
||||
// }),
|
||||
// breadcrumb: 'Estimates',
|
||||
// },
|
||||
{
|
||||
path: `/estimates`,
|
||||
component: LazyLoader({
|
||||
loader: () => import('containers/Sales/Estimate/EstimateList'),
|
||||
}),
|
||||
breadcrumb: 'Estimates List',
|
||||
},
|
||||
|
||||
//Invoices
|
||||
|
||||
@@ -245,13 +245,13 @@ export default [
|
||||
}),
|
||||
breadcrumb: 'New Invoice',
|
||||
},
|
||||
// {
|
||||
// path:`/invoices`,
|
||||
// component:LazyLoader({
|
||||
// loader:()=>import('containers/Sales/Invoice/Invoices')
|
||||
// }),
|
||||
// breadcrumb: 'New Invoice',
|
||||
// },
|
||||
{
|
||||
path: `/invoices`,
|
||||
component: LazyLoader({
|
||||
loader: () => import('containers/Sales/Invoice/InvoiceList'),
|
||||
}),
|
||||
breadcrumb: 'Invoices List',
|
||||
},
|
||||
|
||||
//Receipts
|
||||
{
|
||||
@@ -268,16 +268,15 @@ export default [
|
||||
}),
|
||||
breadcrumb: 'New Receipt',
|
||||
},
|
||||
// {
|
||||
// path: `/receipts`,
|
||||
// component: LazyLoader({
|
||||
// loader: () => import('containers/Sales/Receipt/Receipts'),
|
||||
// }),
|
||||
// breadcrumb: 'New Receipt',
|
||||
// }
|
||||
{
|
||||
path: `/receipts`,
|
||||
component: LazyLoader({
|
||||
loader: () => import('containers/Sales/Receipt/ReceiptList'),
|
||||
}),
|
||||
breadcrumb: 'Receipt List',
|
||||
},
|
||||
|
||||
|
||||
// Payment Receives
|
||||
// Payment Receives
|
||||
|
||||
{
|
||||
path: `/payment-receive/:id/edit`,
|
||||
@@ -285,7 +284,6 @@ export default [
|
||||
loader: () => import('containers/Sales/PaymentReceive/PaymentReceives'),
|
||||
}),
|
||||
breadcrumb: 'Edit',
|
||||
|
||||
},
|
||||
{
|
||||
path: `/payment-receive/new`,
|
||||
@@ -293,24 +291,35 @@ export default [
|
||||
loader: () => import('containers/Sales/PaymentReceive/PaymentReceives'),
|
||||
}),
|
||||
breadcrumb: 'New Payment Receive',
|
||||
|
||||
},
|
||||
|
||||
|
||||
|
||||
//Bills
|
||||
{
|
||||
path: `/bill/:id/edit`,
|
||||
path: `/bills/:id/edit`,
|
||||
component: LazyLoader({
|
||||
loader: () => import('containers/Purchases/Bills'),
|
||||
loader: () => import('containers/Purchases/Bill/Bills'),
|
||||
}),
|
||||
breadcrumb: 'Edit',
|
||||
},
|
||||
{
|
||||
path: `/bill/new`,
|
||||
path: `/bills/new`,
|
||||
component: LazyLoader({
|
||||
loader: () => import('containers/Purchases/Bills'),
|
||||
loader: () => import('containers/Purchases/Bill/Bills'),
|
||||
}),
|
||||
breadcrumb: 'New Bill',
|
||||
},
|
||||
{
|
||||
path: `/bills`,
|
||||
component: LazyLoader({
|
||||
loader: () => import('containers/Purchases/Bill/BillList'),
|
||||
}),
|
||||
breadcrumb: 'Bill List',
|
||||
},
|
||||
{
|
||||
path: `/receipts`,
|
||||
component: LazyLoader({
|
||||
loader: () => import('containers/Sales/Receipt/ReceiptList'),
|
||||
}),
|
||||
breadcrumb: 'Receipt List',
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user