2019-06-17 13:24:34 +02:00
|
|
|
import UploadDLockData from '../scenes/UploadDLockData';
|
|
|
|
|
import Home from '../scenes/Home';
|
|
|
|
|
import IncidentsReport from '../scenes/IncidentsReport';
|
2019-06-19 11:23:58 +02:00
|
|
|
import PracticeSummaryReport from '../scenes/PracticeSummaryReport';
|
2019-05-28 13:48:58 +02:00
|
|
|
|
|
|
|
|
export const mainMenuItems = [
|
|
|
|
|
{
|
|
|
|
|
id: 'home',
|
|
|
|
|
title: 'Home',
|
|
|
|
|
url: '/',
|
|
|
|
|
component: Home,
|
|
|
|
|
},
|
2019-06-19 11:23:58 +02:00
|
|
|
{
|
|
|
|
|
id: 'practiceSummaryReport',
|
|
|
|
|
title: 'Practice Summary Report',
|
|
|
|
|
url: '/practice-summary-report',
|
|
|
|
|
component: PracticeSummaryReport,
|
|
|
|
|
},
|
2019-06-17 13:24:34 +02:00
|
|
|
{
|
|
|
|
|
id: 'report',
|
|
|
|
|
title: 'Incidents Report',
|
|
|
|
|
url: '/incidents-report',
|
|
|
|
|
component: IncidentsReport,
|
|
|
|
|
},
|
2019-05-28 13:48:58 +02:00
|
|
|
{
|
|
|
|
|
id: 'uploadDLockData',
|
|
|
|
|
title: 'DLock',
|
|
|
|
|
url: '/dlock',
|
|
|
|
|
component: UploadDLockData,
|
|
|
|
|
},
|
|
|
|
|
];
|
2019-06-17 13:24:34 +02:00
|
|
|
|
|
|
|
|
export const incidentsReportHeaderTitles = {
|
|
|
|
|
officeName: 'Office',
|
|
|
|
|
resourceName: 'Room',
|
|
|
|
|
bookingStart: 'Reservation Start',
|
|
|
|
|
bookingEnd: 'Reservation End',
|
|
|
|
|
memberName: 'Member Name',
|
|
|
|
|
incidentType: 'Incident Type',
|
|
|
|
|
feeDescription: 'Fee description',
|
|
|
|
|
totalChargeFee: 'Total Fee',
|
|
|
|
|
};
|