@plusscommunities/pluss-maintenance-aws 2.1.44 → 2.1.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/createJob.js +201 -114
- package/createJobType.js +49 -49
- package/db/maintenance/addMaintenanceJob.js +100 -90
- package/db/maintenance/editMaintenanceJob.js +22 -12
- package/db/maintenance/getJobEmail.js +22 -22
- package/deleteJob.js +58 -58
- package/deleteJobType.js +40 -40
- package/editJob.js +126 -65
- package/editJobStatus.js +57 -57
- package/editJobType.js +61 -61
- package/editNote.js +117 -117
- package/feature.config.js +279 -262
- package/getData.js +48 -41
- package/getJob.js +4 -4
- package/getJobType.js +35 -35
- package/getJobTypes.js +66 -66
- package/getJobs.js +48 -48
- package/integration/IntegrationStrategy.js +52 -52
- package/integration/archibus/ArchibusStrategy.js +42 -28
- package/integration/index.js +19 -19
- package/jobChanged.js +88 -89
- package/jobTypesChanged.js +52 -39
- package/package.json +3 -3
- package/requests/assignRequest.js +81 -81
- package/requests/getAssignees.js +27 -27
- package/requests/getExternalSync.js +100 -100
- package/requests/getPropertyRequests.js +89 -0
- package/requests/getRequest.js +77 -77
- package/requests/getRequests.js +210 -144
- package/requests/helper/hasRequestPermission.js +12 -12
- package/requests/helper/isValidAssignee.js +10 -10
- package/requests/retrySync.js +90 -90
- package/requests/setExternalJobId.js +113 -113
- package/requests/updatePriority.js +33 -33
- package/scheduleJobImport.js +63 -63
- package/sendJobEmail.js +105 -104
- package/updateData.js +34 -34
- package/values.config.a.js +26 -25
- package/values.config.default.js +30 -28
- package/values.config.enquiry.js +222 -221
- package/values.config.feedback.js +194 -193
- package/values.config.food.js +29 -28
- package/values.config.forms.js +29 -28
- package/values.config.js +30 -28
- package/watchJobs.js +154 -154
|
@@ -1,196 +1,197 @@
|
|
|
1
1
|
const values = {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
2
|
+
entityKey: "maintenancerequestFeedback",
|
|
3
|
+
serviceKey: "maintenanceFeedback",
|
|
4
|
+
updateKey: "jobsFeedback",
|
|
5
|
+
tableKeyJobTypes: "jobtypesFeedback",
|
|
6
|
+
tableKeyMaintenance: "maintenanceFeedback",
|
|
7
|
+
tableKeySupportTickets: "supportticketsFeedback",
|
|
8
|
+
tableNameJobTypes: "jobTypesFeedback",
|
|
9
|
+
tableNameMaintenance: "maintenanceFeedback",
|
|
10
|
+
tableNameSupportTickets: "supportticketsFeedback",
|
|
11
|
+
permissionMaintenanceTracking: "maintenanceTrackingFeedback",
|
|
12
|
+
permissionMaintenanceAssignment: "maintenanceAssignmentFeedback",
|
|
13
|
+
permissionMaintenanceTypes: "maintenanceTypesFeedback",
|
|
14
|
+
routeEntityPath: "/requestsHubFeedback/jobDetails/:id",
|
|
15
|
+
screenMaintenanceDetail: "requestDetailFeedback",
|
|
16
|
+
notificationMaintenanceJobAssigned: "MaintenanceJobAssignedFeedback",
|
|
17
|
+
notificationMaintenanceJobUnassigned: "MaintenanceJobUnassignedFeedback",
|
|
18
|
+
activityAddMaintenanceJob: "AddMaintenanceJobFeedback",
|
|
19
|
+
activityDeleteMaintenanceJob: "DeleteMaintenanceJobFeedback",
|
|
20
|
+
activityEditMaintenanceJob: "EditMaintenanceJobFeedback",
|
|
21
|
+
activityMaintenanceJobStatusChanged: "MaintenanceJobStatusChangedFeedback",
|
|
22
|
+
activityAddMaintenanceNote: "AddMaintenanceNoteFeedback",
|
|
23
|
+
activityDeleteMaintenanceNote: "DeleteMaintenanceNoteFeedback",
|
|
24
|
+
activityEditMaintenanceNote: "EditMaintenanceNoteFeedback",
|
|
25
|
+
textJobEmailTitle: "Feedback Submission",
|
|
26
|
+
allowGeneralType: false,
|
|
27
|
+
defaultJobTypes: [
|
|
28
|
+
{
|
|
29
|
+
customFields: [
|
|
30
|
+
{
|
|
31
|
+
isTitle: false,
|
|
32
|
+
label: "What is the feedback about?",
|
|
33
|
+
mandatory: true,
|
|
34
|
+
type: "text",
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
isTitle: false,
|
|
38
|
+
label: "Feedback details",
|
|
39
|
+
mandatory: true,
|
|
40
|
+
placeHolder:
|
|
41
|
+
"Record specific details related to your feedback. Include dates, names, other relevant information in the order they happened",
|
|
42
|
+
type: "text",
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
isTitle: false,
|
|
46
|
+
label: "Desired outcome",
|
|
47
|
+
mandatory: false,
|
|
48
|
+
placeHolder:
|
|
49
|
+
"Describe the outcome you would like to see achieved as a result of the feedback you have provided.",
|
|
50
|
+
type: "text",
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
isTitle: false,
|
|
54
|
+
label: "Thanks for taking the time to share your feedback with us.",
|
|
55
|
+
mandatory: false,
|
|
56
|
+
type: "staticText",
|
|
57
|
+
},
|
|
58
|
+
],
|
|
59
|
+
description:
|
|
60
|
+
"Use this form to provide general feedback that is not a specific complaint or compliment",
|
|
61
|
+
email: "feedback@plusscommunities.com",
|
|
62
|
+
hasCustomFields: true,
|
|
63
|
+
level: 1,
|
|
64
|
+
typeName: "General Feedback",
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
customFields: [
|
|
68
|
+
{
|
|
69
|
+
isTitle: false,
|
|
70
|
+
label: "What is the complaint about?",
|
|
71
|
+
mandatory: true,
|
|
72
|
+
type: "checkbox",
|
|
73
|
+
values: [
|
|
74
|
+
"An employee",
|
|
75
|
+
"Another community member",
|
|
76
|
+
"A specific incident",
|
|
77
|
+
"Service delivery",
|
|
78
|
+
"A facility",
|
|
79
|
+
"An Activity",
|
|
80
|
+
"Other",
|
|
81
|
+
],
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
isTitle: false,
|
|
85
|
+
label: "Complaint details",
|
|
86
|
+
mandatory: true,
|
|
87
|
+
placeHolder:
|
|
88
|
+
"Please provide the details of your complaint in this section. Include dates, names, other relevant information in the order they happened",
|
|
89
|
+
type: "text",
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
isTitle: false,
|
|
93
|
+
label: "Action required",
|
|
94
|
+
mandatory: true,
|
|
95
|
+
placeHolder:
|
|
96
|
+
"Please describe what action, if any, you would like the organisation to take in relation to this matter",
|
|
97
|
+
type: "text",
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
isTitle: false,
|
|
101
|
+
label: "Have you raised this complaint previously",
|
|
102
|
+
mandatory: true,
|
|
103
|
+
type: "yn",
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
isTitle: false,
|
|
107
|
+
label:
|
|
108
|
+
"If yes, please provide details of who you complained to, when and how (phone, email, form)",
|
|
109
|
+
mandatory: false,
|
|
110
|
+
type: "text",
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
isTitle: false,
|
|
114
|
+
label:
|
|
115
|
+
"If you have any supporting documentation (e.g. emails, letters, receipts) for your complaint, please attach the files below. If you do not have the documentation right now, you can email us.",
|
|
116
|
+
mandatory: false,
|
|
117
|
+
type: "document",
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
isTitle: false,
|
|
121
|
+
label:
|
|
122
|
+
"Declaration . I declare that the information supplied by me is, to the best of my knowledge, true and correct. ",
|
|
123
|
+
mandatory: true,
|
|
124
|
+
type: "yn",
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
isTitle: false,
|
|
128
|
+
label:
|
|
129
|
+
"I agree that the information provided (except for demographic data) may, if necessary, be revealed to the organisation in correspondence or investigations concerning this complaint or referred to another authority for their appropriate action should the matter fall outside this department's jurisdiction",
|
|
130
|
+
mandatory: true,
|
|
131
|
+
type: "yn",
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
isTitle: false,
|
|
135
|
+
label:
|
|
136
|
+
"If your complaint is resolved after lodgement of this form, please advise us at as soon as possible.",
|
|
137
|
+
mandatory: false,
|
|
138
|
+
type: "staticText",
|
|
139
|
+
},
|
|
140
|
+
],
|
|
141
|
+
description: "Use this form to provide a complaint to the organisation",
|
|
142
|
+
email: "example@plusscommunities.com",
|
|
143
|
+
hasCustomFields: true,
|
|
144
|
+
level: 1,
|
|
145
|
+
typeName: "Complaint",
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
customFields: [
|
|
149
|
+
{
|
|
150
|
+
isTitle: false,
|
|
151
|
+
label: "What is this compliment about?",
|
|
152
|
+
mandatory: true,
|
|
153
|
+
type: "multichoice",
|
|
154
|
+
values: [
|
|
155
|
+
"An employee",
|
|
156
|
+
"A facility",
|
|
157
|
+
"Another community member",
|
|
158
|
+
"A facility",
|
|
159
|
+
"A service",
|
|
160
|
+
"An activity",
|
|
161
|
+
"Other",
|
|
162
|
+
],
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
isTitle: false,
|
|
166
|
+
label: "Compliment details",
|
|
167
|
+
mandatory: true,
|
|
168
|
+
placeHolder: "Please explain your compliment in detail",
|
|
169
|
+
type: "text",
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
isTitle: false,
|
|
173
|
+
label:
|
|
174
|
+
"Please describe what action, if any, you would like us to take in relation to this compliment",
|
|
175
|
+
mandatory: false,
|
|
176
|
+
type: "text",
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
isTitle: false,
|
|
180
|
+
label:
|
|
181
|
+
"Thanks for taking the time to record your compliment. It is always appreciated.",
|
|
182
|
+
mandatory: false,
|
|
183
|
+
type: "staticText",
|
|
184
|
+
},
|
|
185
|
+
],
|
|
186
|
+
description: "Use this form to record a compliment",
|
|
187
|
+
email: "example@pluss.com",
|
|
188
|
+
hasCustomFields: true,
|
|
189
|
+
level: 1,
|
|
190
|
+
typeName: "Compliment",
|
|
191
|
+
},
|
|
192
|
+
],
|
|
193
|
+
triggerMaintenanceStatusChanged: "MaintenanceStatusChangedFeedback",
|
|
194
|
+
enableSiteConfigsPropagation: false,
|
|
195
|
+
linkToProperty: false,
|
|
195
196
|
};
|
|
196
197
|
exports.values = values;
|
package/values.config.food.js
CHANGED
|
@@ -1,31 +1,32 @@
|
|
|
1
1
|
const values = {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
2
|
+
entityKey: "maintenancerequestFood",
|
|
3
|
+
serviceKey: "maintenanceFood",
|
|
4
|
+
updateKey: "jobsFood",
|
|
5
|
+
tableKeyJobTypes: "jobtypesFood",
|
|
6
|
+
tableKeyMaintenance: "maintenanceFood",
|
|
7
|
+
tableKeySupportTickets: "supportticketsFood",
|
|
8
|
+
tableNameJobTypes: "jobTypesFood",
|
|
9
|
+
tableNameMaintenance: "maintenanceFood",
|
|
10
|
+
tableNameSupportTickets: "supportticketsFood",
|
|
11
|
+
permissionMaintenanceTracking: "maintenanceTrackingFood",
|
|
12
|
+
permissionMaintenanceAssignment: "maintenanceAssignmentFood",
|
|
13
|
+
permissionMaintenanceTypes: "maintenanceTypesFood",
|
|
14
|
+
routeEntityPath: "/requestsHubFood/jobDetails/:id",
|
|
15
|
+
screenMaintenanceDetail: "requestDetailFood",
|
|
16
|
+
notificationMaintenanceJobAssigned: "MaintenanceJobAssignedFood",
|
|
17
|
+
notificationMaintenanceJobUnassigned: "MaintenanceJobUnassignedFood",
|
|
18
|
+
activityAddMaintenanceJob: "AddMaintenanceJobFood",
|
|
19
|
+
activityDeleteMaintenanceJob: "DeleteMaintenanceJobFood",
|
|
20
|
+
activityEditMaintenanceJob: "EditMaintenanceJobFood",
|
|
21
|
+
activityMaintenanceJobStatusChanged: "MaintenanceJobStatusChangedFood",
|
|
22
|
+
activityAddMaintenanceNote: "AddMaintenanceNoteFood",
|
|
23
|
+
activityDeleteMaintenanceNote: "DeleteMaintenanceNoteFood",
|
|
24
|
+
activityEditMaintenanceNote: "EditMaintenanceNoteFood",
|
|
25
|
+
textJobEmailTitle: "Food Ordering",
|
|
26
|
+
allowGeneralType: false,
|
|
27
|
+
defaultJobTypes: [],
|
|
28
|
+
triggerMaintenanceStatusChanged: "MaintenanceStatusChangedFood",
|
|
29
|
+
enableSiteConfigsPropagation: false,
|
|
30
|
+
linkToProperty: false,
|
|
30
31
|
};
|
|
31
32
|
exports.values = values;
|
package/values.config.forms.js
CHANGED
|
@@ -1,31 +1,32 @@
|
|
|
1
1
|
const values = {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
2
|
+
entityKey: "maintenancerequestForms",
|
|
3
|
+
serviceKey: "maintenanceForms",
|
|
4
|
+
updateKey: "jobsForms",
|
|
5
|
+
tableKeyJobTypes: "jobtypesForms",
|
|
6
|
+
tableKeyMaintenance: "maintenanceForms",
|
|
7
|
+
tableKeySupportTickets: "supportticketsForms",
|
|
8
|
+
tableNameJobTypes: "jobTypesForms",
|
|
9
|
+
tableNameMaintenance: "maintenanceForms",
|
|
10
|
+
tableNameSupportTickets: "supportticketsForms",
|
|
11
|
+
permissionMaintenanceTracking: "maintenanceTrackingForms",
|
|
12
|
+
permissionMaintenanceAssignment: "maintenanceAssignmentForms",
|
|
13
|
+
permissionMaintenanceTypes: "maintenanceTypesForms",
|
|
14
|
+
routeEntityPath: "/requestsHubForms/jobDetails/:id",
|
|
15
|
+
screenMaintenanceDetail: "requestDetailForms",
|
|
16
|
+
notificationMaintenanceJobAssigned: "MaintenanceJobAssignedForms",
|
|
17
|
+
notificationMaintenanceJobUnassigned: "MaintenanceJobUnassignedForms",
|
|
18
|
+
activityAddMaintenanceJob: "AddMaintenanceJobForms",
|
|
19
|
+
activityDeleteMaintenanceJob: "DeleteMaintenanceJobForms",
|
|
20
|
+
activityEditMaintenanceJob: "EditMaintenanceJobForms",
|
|
21
|
+
activityMaintenanceJobStatusChanged: "MaintenanceJobStatusChangedForms",
|
|
22
|
+
activityAddMaintenanceNote: "AddMaintenanceNoteForms",
|
|
23
|
+
activityDeleteMaintenanceNote: "DeleteMaintenanceNoteForms",
|
|
24
|
+
activityEditMaintenanceNote: "EditMaintenanceNoteForms",
|
|
25
|
+
textJobEmailTitle: "Form Submission",
|
|
26
|
+
allowGeneralType: false,
|
|
27
|
+
defaultJobTypes: [],
|
|
28
|
+
triggerMaintenanceStatusChanged: "MaintenanceStatusChangedForms",
|
|
29
|
+
enableSiteConfigsPropagation: true,
|
|
30
|
+
linkToProperty: false,
|
|
30
31
|
};
|
|
31
32
|
exports.values = values;
|
package/values.config.js
CHANGED
|
@@ -1,31 +1,33 @@
|
|
|
1
1
|
const values = {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
2
|
+
entityKey: "maintenancerequest",
|
|
3
|
+
serviceKey: "maintenance",
|
|
4
|
+
updateKey: "jobs",
|
|
5
|
+
tableKeyJobTypes: "jobtypes",
|
|
6
|
+
tableKeyMaintenance: "maintenance",
|
|
7
|
+
tableKeySupportTickets: "supporttickets",
|
|
8
|
+
tableNameJobTypes: "jobTypes",
|
|
9
|
+
tableNameMaintenance: "maintenance",
|
|
10
|
+
tableNameSupportTickets: "supporttickets",
|
|
11
|
+
permissionMaintenanceTracking: "maintenanceTracking",
|
|
12
|
+
permissionMaintenanceAssignment: "maintenanceAssignment",
|
|
13
|
+
permissionMaintenanceTypes: "maintenanceTypes",
|
|
14
|
+
routeEntityPath: "/requestsHub/jobDetails/:id",
|
|
15
|
+
screenMaintenanceDetail: "requestDetail",
|
|
16
|
+
notificationMaintenanceJobAssigned: "MaintenanceJobAssigned",
|
|
17
|
+
notificationMaintenanceJobUnassigned: "MaintenanceJobUnassigned",
|
|
18
|
+
activityAddMaintenanceJob: "AddMaintenanceJob",
|
|
19
|
+
activityDeleteMaintenanceJob: "DeleteMaintenanceJob",
|
|
20
|
+
activityEditMaintenanceJob: "EditMaintenanceJob",
|
|
21
|
+
activityMaintenanceJobStatusChanged: "MaintenanceJobStatusChanged",
|
|
22
|
+
activityAddMaintenanceNote: "AddMaintenanceNote",
|
|
23
|
+
activityDeleteMaintenanceNote: "DeleteMaintenanceNote",
|
|
24
|
+
activityEditMaintenanceNote: "EditMaintenanceNote",
|
|
25
|
+
textJobEmailTitle: "Service Request",
|
|
26
|
+
allowGeneralType: true,
|
|
27
|
+
// Links maintenance requests to a property instead of the free-text room/address field.
|
|
28
|
+
linkToProperty: true,
|
|
29
|
+
defaultJobTypes: [],
|
|
30
|
+
triggerMaintenanceStatusChanged: "MaintenanceStatusChanged",
|
|
31
|
+
enableSiteConfigsPropagation: true,
|
|
30
32
|
};
|
|
31
33
|
exports.values = values;
|