add list master formularium

This commit is contained in:
adibwp
2023-10-26 17:43:47 +07:00
parent 0abcaea006
commit 010e971b69
13 changed files with 1061 additions and 2 deletions

View File

@@ -323,6 +323,26 @@ export default function Router() {
path: 'master/formularium-template/:id/edit',
element: <MasterFormulariumTemplateCreate />,
},
{
path: 'master/formularium-template-v2',
element: <MasterFormulariumTemplateV2 />
},
{
path: 'master/formularium-template-v2/create',
element: <MasterFormulariumTemplateCreateV2 />
},
{
path: 'master/formularium-template-v2/:id/edit',
element: <MasterFormulariumTemplateCreateV2 />
},
{
path: 'master/formularium-template-v2/:id/history',
element: <MasterFormulariumTemplateHistoriesV2 />
},
{
path: 'master/formularium-template-v2/:id/detail',
element: <MasterFormulariumTemplateDetailV2 />
},
{
path: 'report/appointments',
@@ -536,6 +556,11 @@ const MasterFormulariumTemplate = Loadable(lazy(() => import('../pages/Master/Fo
const MasterFormulariumTemplateCreate = Loadable(lazy(() => import('../pages/Master/Formularium/Master/CreateUpdate')));
const MasterFormulariumTemplateHistories = Loadable(lazy(() => import('../pages/Master/Formularium/Master/History')));
const MasterFormulariumTemplateV2 = Loadable(lazy(() => import('../pages/Master/FormulariumV2/Index')));
const MasterFormulariumTemplateCreateV2 = Loadable(lazy(() => import('../pages/Master/FormulariumV2/CreateUpdate')));
const MasterFormulariumTemplateHistoriesV2 = Loadable(lazy(() => import('../pages/Master/FormulariumV2/History')));
const MasterFormulariumTemplateDetailV2 = Loadable(lazy(() => import('../pages/Master/FormulariumV2/Detail/Index')))
const CorporateServices = Loadable(lazy(() => import('../pages/Corporates/Services/Index')));
const CorporateServicesCreate = Loadable(lazy(() => import('../pages/Corporates/Services/Create')));
const CorporateServicesHistory = Loadable(lazy(() => import('../pages/Corporates/Services/sections/History')));