Member Practice Summary Report and bugfixes

This commit is contained in:
Senad Uka
2019-08-08 04:56:46 +02:00
parent 55ddf76223
commit 23110d3c02
21 changed files with 13461 additions and 13 deletions

View File

@@ -1,7 +1,8 @@
import UploadDLockData from '../scenes/UploadDLockData';
import Home from '../scenes/Home';
import IncidentsReport from '../scenes/IncidentsReport';
import PracticeSummaryReport from '../scenes/PracticeSummaryReport';
import SpecificMemberIncidentsReport from '../scenes/SpecificMemberIncidentsReport';
import MemberPracticeSummaryReport from '../scenes/MemberPracticeSummaryReport';
export const mainMenuItems = [
{
@@ -12,17 +13,24 @@ export const mainMenuItems = [
component: Home,
},
{
id: 'practiceSummaryReport',
id: 'memberPracticeSummaryReport',
showInMenu: true,
title: 'Practice Summary Report',
url: '/practice-summary-report',
component: PracticeSummaryReport,
title: 'Member Practice Summary Report',
url: '/member-practice-summary-report',
component: MemberPracticeSummaryReport,
},
{
id: 'practiceSummaryReportWithMemberId',
id: 'specificMemberIncidentsReport',
showInMenu: true,
title: 'Member Incidents Report',
url: '/specific-member-incidents-report',
component: SpecificMemberIncidentsReport,
},
{
id: 'specificMemberIncidentsReportWithMemberId',
showInMenu: false,
url: '/practice-summary-report/:memberId',
component: PracticeSummaryReport,
url: '/specific-member-incidents-report/:memberId',
component: SpecificMemberIncidentsReport,
},
{
id: 'report',