feat: rename item sku to code.

feat: fix sidebar current tab issue.
This commit is contained in:
Ahmed Bouhuolia
2020-11-24 11:30:27 +02:00
parent a7e5401b7d
commit 0321f29442
20 changed files with 75 additions and 50 deletions

View File

@@ -259,7 +259,6 @@ export default [
}),
breadcrumb: 'Edit',
},
{
path: `/invoices/new`,
component: LazyLoader({
@@ -298,10 +297,9 @@ export default [
breadcrumb: 'Receipt List',
},
// Payment Receives
// Payment receives
{
path: `/payment-receive/:id/edit`,
path: `/payment-receives/:id/edit`,
component: LazyLoader({
loader: () =>
import('containers/Sales/PaymentReceive/PaymentReceiveFormPage'),
@@ -309,7 +307,7 @@ export default [
breadcrumb: 'Edit',
},
{
path: `/payment-receive/new`,
path: `/payment-receives/new`,
component: LazyLoader({
loader: () =>
import('containers/Sales/PaymentReceive/PaymentReceiveFormPage'),
@@ -364,14 +362,14 @@ export default [
},
// Payment mades.
{
path: `/payment-made/:id/edit`,
path: `/payment-mades/:id/edit`,
component: LazyLoader({
loader: () => import('containers/Purchases/PaymentMades/PaymentMade'),
}),
breadcrumb: 'Edit',
},
{
path: `/payment-made/new`,
path: `/payment-mades/new`,
component: LazyLoader({
loader: () => import('containers/Purchases/PaymentMades/PaymentMade'),
}),