update report resep online

This commit is contained in:
2024-07-12 08:23:11 +07:00
parent 18946128aa
commit 8e8aa9cb41
15 changed files with 829 additions and 1058 deletions

View File

@@ -12,7 +12,6 @@ import VerifyCode from '../pages/auth/VerifyCode';
import { AuthProvider } from '../contexts/LaravelAuthContext';
import AuthGuard from '../guards/AuthGuard';
import { Link, useParams, useSearchParams } from 'react-router-dom';
import Prescription from '@/pages/Report/Prescription/Index';
import DoctorRating from '@/pages/Report/DoctorRating/Index';
// ----------------------------------------------------------------------
@@ -438,10 +437,6 @@ export default function Router() {
path: 'report/live-chat/:id/edit',
element: <LivechatCreate />,
},
{
path: 'report/prescription',
element: <Prescription/>,
},
{
path: 'report/doctorrating',
element: <DoctorRating/>,
@@ -455,7 +450,14 @@ export default function Router() {
path: 'report/phr',
element: <RiwayatMedisPeserta />,
},
{
path: 'report/prescription',
element: <Prescription/>,
},
{
path: 'report/rujukan',
element: <RujukanPasien/>,
},
{
path: 'claims',
element: <Claims />,
@@ -722,6 +724,8 @@ const EPrescriptionShow = Loadable(lazy(() => import('../pages/EPrescription/Liv
const LinksehatPayment = Loadable(lazy(() => import('../pages/Report/LinksehatPayments/Index')));
const RiwayatMedisPeserta = Loadable(lazy(() => import('../pages/Report/RiwayatMedisPeserta/Index')));
const RujukanPasien = Loadable(lazy(() => import('../pages/Report/Rujukan/Index')));
const Prescription = Loadable(lazy(() => import('../pages/Report/Prescription/Index')));
const MasterDrug = Loadable(lazy(() => import('../pages/Master/Drug/Index')));