Merge branch 'BIG-316-crud-branches' into feature/multi-dimensions

This commit is contained in:
elforjani13
2022-02-03 12:39:11 +02:00
27 changed files with 937 additions and 3 deletions

View File

@@ -8,6 +8,7 @@ import Item from 'containers/Preferences/Item';
import SMSIntegration from '../containers/Preferences/SMSIntegration';
import DefaultRoute from '../containers/Preferences/DefaultRoute';
import Warehouses from '../containers/Preferences/Warehouses';
import Branches from '../containers/Preferences/Branches';
const BASE_URL = '/preferences';
@@ -42,6 +43,11 @@ export default [
component: Warehouses,
exact: true,
},
{
path: `${BASE_URL}/branches`,
component: Branches,
exact: true,
},
{
path: `${BASE_URL}/accountant`,
component: Accountant,