Files
old-psihologija/client/src/constants/constants.js

52 lines
1.3 KiB
JavaScript

export const CONTAINER_WIDTH_PERCENTAGE = 90;
export const defaultDateFormat = 'YYYY-MM-DD';
export const doorLockRelatedWithReservationIncidentHeaders = [
'officeName',
'resourceName',
'memberName',
'reservation',
'doorLockTimestamps',
'incidentType',
'feeDescription',
'totalChargeFee'
];
export const standaloneDoorLockIncidentHeaders = [
'officeName',
'resourceName',
'memberName',
'doorLockTimestamps',
'incidentType',
'feeDescription',
'totalChargeFee'
];
export const bookingChangeIncidentHeaders = [
'officeName',
'resourceName',
'memberName',
'incidentTimestamp',
'oldReservation',
'newReservation',
'incidentType',
'totalChargeFee',
];
export const incidentsReportHeaderTitles = {
officeName: 'Office',
resourceName: 'Room',
bookingStart: 'Reservation Start',
bookingEnd: 'Reservation End',
reservation: 'Reservation start/end',
doorLockTimestamps: 'Door unlock/lock',
unlockTimestamp: 'Unlock Time',
lockTimestamp: 'Lock Time',
oldReservation: 'Old Reservation',
newReservation: 'New Reservation',
incidentTimestamp: 'Incident Time',
memberName: 'Member Name',
incidentType: 'Incident Type',
feeDescription: 'Fee description',
totalChargeFee: 'Total Fee',
};