WIP / Feature Fix _bills

This commit is contained in:
elforjani3
2020-08-04 17:51:17 +02:00
parent 5d1b41da16
commit 1cb826163b
25 changed files with 1703 additions and 5 deletions

View File

@@ -275,4 +275,42 @@ export default [
// }),
// breadcrumb: 'New Receipt',
// }
// Payment Receives
{
path: `/payment-receive/:id/edit`,
component: LazyLoader({
loader: () => import('containers/Sales/PaymentReceive/PaymentReceives'),
}),
breadcrumb: 'Edit',
},
{
path: `/payment-receive/new`,
component: LazyLoader({
loader: () => import('containers/Sales/PaymentReceive/PaymentReceives'),
}),
breadcrumb: 'New Payment Receive',
},
//Bills
{
path: `/bill/:id/edit`,
component: LazyLoader({
loader: () => import('containers/Purchases/Bills'),
}),
breadcrumb: 'Edit',
},
{
path: `/bill/new`,
component: LazyLoader({
loader: () => import('containers/Purchases/Bills'),
}),
breadcrumb: 'New Bill',
},
];