list dan show appointment

This commit is contained in:
pajri
2023-02-10 16:55:24 +07:00
parent 6491f4d3e3
commit f309f4039c
26 changed files with 2867 additions and 4 deletions

View File

@@ -217,6 +217,39 @@ export default function Router() {
element: <MasterFormulariumCreate />,
},
{
path: 'report/appointments',
element: <Appointment />,
},
{
path: 'report/appointments/:id',
element: <AppointmentCreate />,
},
{
path: 'report/appointments/:id/show',
element: <AppointmentShow />,
},
{
path: 'report/appointments/:id/edit',
element: <AppointmentCreate />,
},
{
path: 'report/live-chat',
element: <Livechat />,
},
{
path: 'report/live-chat/:id',
element: <LivechatCreate />,
},
{
path: 'report/live-chat/:id/show',
element: <LivechatShow />,
},
{
path: 'report/live-chat/:id/edit',
element: <LivechatCreate />,
},
{
path: 'claims',
element: <Claims />,
@@ -322,6 +355,14 @@ const MasterDiagnosis = Loadable(lazy(() => import('../pages/Master/Diagnosis/In
const MasterDoctors = Loadable(lazy(() => import('../pages/Master/Doctors/Index')));
const MasterHospitals = Loadable(lazy(() => import('../pages/Master/Hospitals/Index')));
const Appointment = Loadable(lazy(() => import('../pages/Report/Appointments/Index')));
const AppointmentCreate = Loadable(lazy(() => import('../pages/Report/Appointments/Create')));
const AppointmentShow = Loadable(lazy(() => import('../pages/Report/Appointments/Show')));
const Livechat = Loadable(lazy(() => import('../pages/Report/Livechat/Index')));
const LivechatCreate = Loadable(lazy(() => import('../pages/Report/Livechat/Create')));
const LivechatShow = Loadable(lazy(() => import('../pages/Report/Livechat/Show')));
const MasterDrug = Loadable(lazy(() => import('../pages/Master/Drug/Index')));
const MasterFormularium = Loadable(lazy(() => import('../pages/Master/Formularium/Index')));