2019-06-17 12:45:23 +02:00
|
|
|
|
2019-07-07 02:44:34 +02:00
|
|
|
export const UNLOCKED_INCIDENT_RELATED_WITH_RESERVATION = 2;
|
|
|
|
|
export const UNSCHEDULED_INCIDENT_BEFORE_RESERVATION = 3;
|
|
|
|
|
export const UNSCHEDULED_INCIDENT_AFTER_RESERVATION = 4;
|
|
|
|
|
export const UNLOCKED_INCIDENT_STANDALONE = 5;
|
|
|
|
|
export const UNSCHEDULED_INCIDENT_STANDALONE = 6;
|
2019-06-17 12:45:23 +02:00
|
|
|
|
|
|
|
|
export const incidentDescriptions = {};
|
2019-07-07 02:44:34 +02:00
|
|
|
incidentDescriptions[UNLOCKED_INCIDENT_RELATED_WITH_RESERVATION] = 'User left door unlocked';
|
|
|
|
|
incidentDescriptions[UNSCHEDULED_INCIDENT_BEFORE_RESERVATION] = 'Unscheduled use - before';
|
|
|
|
|
incidentDescriptions[UNSCHEDULED_INCIDENT_AFTER_RESERVATION] = 'Unscheduled use - after';
|
|
|
|
|
incidentDescriptions[UNLOCKED_INCIDENT_STANDALONE] = 'User left door unlocked';
|
|
|
|
|
incidentDescriptions[UNSCHEDULED_INCIDENT_STANDALONE] = 'Unscheduled use';
|
2019-06-17 12:45:23 +02:00
|
|
|
|
|
|
|
|
export const incidentLevelDescriptions = {
|
|
|
|
|
UNLOCKED_0: 'First month',
|
|
|
|
|
UNLOCKED_1: 'Second month',
|
|
|
|
|
UNLOCKED_2: 'Third month',
|
|
|
|
|
UNLOCKED_3: 'Fourth month',
|
|
|
|
|
UNLOCKED_4: 'Fifth month',
|
|
|
|
|
UNLOCKED_5: 'Sixth month',
|
|
|
|
|
};
|