[WIP] Add Linksehat Payment Report

This commit is contained in:
R
2023-04-06 05:03:38 +07:00
parent 59e7394d13
commit cca2310f54
20 changed files with 1786 additions and 46 deletions

View File

@@ -265,6 +265,10 @@ export default function Router() {
path: 'report/live-chat/:id/edit',
element: <LivechatCreate />,
},
{
path: 'report/linksehat-payments',
element: <LinksehatPayment />,
},
{
path: 'claims',
@@ -385,6 +389,8 @@ 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 LinksehatPayment = Loadable(lazy(() => import('../pages/Report/LinksehatPayments/Index')));
const MasterDrug = Loadable(lazy(() => import('../pages/Master/Drug/Index')));
const MasterFormularium = Loadable(lazy(() => import('../pages/Master/Formularium/Index')));