@plusscommunities/pluss-maintenance-web-forms 1.1.25-beta.0 → 1.1.25-beta.2
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/dist/index.cjs.js +6 -5
- package/dist/index.esm.js +6 -5
- package/dist/index.umd.js +6 -5
- package/package.json +1 -1
- package/src/screens/AddJob.js +4 -3
- package/src/screens/Job.js +2 -3
- package/src/values.config.default.js +1 -0
- package/src/values.config.enquiry.js +18 -15
- package/src/values.config.feedback.js +19 -18
- package/src/values.config.food.js +73 -0
package/dist/index.cjs.js
CHANGED
|
@@ -4235,7 +4235,7 @@ var Job = /*#__PURE__*/function (_Component) {
|
|
|
4235
4235
|
className: "padding-60 paddingVertical-40 bottomDivideBorder"
|
|
4236
4236
|
}, customFields.map(function (field, index) {
|
|
4237
4237
|
if (['staticTitle', 'staticText'].includes(field.type)) return null;
|
|
4238
|
-
if (___default['default'].isNil(field.answer) || field.answer === '') return null;
|
|
4238
|
+
if (___default['default'].isNil(field.answer) || field.answer === '' || field.answer.length === 0) return null;
|
|
4239
4239
|
return /*#__PURE__*/React__default['default'].createElement("div", {
|
|
4240
4240
|
key: index,
|
|
4241
4241
|
className: "marginTop-16"
|
|
@@ -4393,7 +4393,7 @@ var Job = /*#__PURE__*/function (_Component) {
|
|
|
4393
4393
|
className: "maintenanceNote_text"
|
|
4394
4394
|
}, Helper$2.toParagraphed(note.Note)), note.Attachments.map(function (a, i) {
|
|
4395
4395
|
return _this6.renderAttachment(a, i);
|
|
4396
|
-
}), note.Images && note.Images.length > 0 ? this.renderImageGrid(note.Images, IMAGE_SIZE_NOTE) : null
|
|
4396
|
+
}), note.Images && note.Images.length > 0 ? this.renderImageGrid(note.Images, IMAGE_SIZE_NOTE) : null));
|
|
4397
4397
|
}
|
|
4398
4398
|
}, {
|
|
4399
4399
|
key: "renderAssignment",
|
|
@@ -5224,6 +5224,7 @@ var AddJob = /*#__PURE__*/function (_Component) {
|
|
|
5224
5224
|
|
|
5225
5225
|
_this.imageInput = null;
|
|
5226
5226
|
_this.customImageInputs = {};
|
|
5227
|
+
_this.customDocumentInputs = {};
|
|
5227
5228
|
_this.state = {
|
|
5228
5229
|
jobId: Helper$1.safeReadParams(_this.props, 'jobId') ? _this.props.match.params.jobId : null,
|
|
5229
5230
|
job: null,
|
|
@@ -5767,9 +5768,9 @@ var AddJob = /*#__PURE__*/function (_Component) {
|
|
|
5767
5768
|
});
|
|
5768
5769
|
}), /*#__PURE__*/React__default['default'].createElement("input", {
|
|
5769
5770
|
ref: function ref(input) {
|
|
5770
|
-
return _this6.
|
|
5771
|
+
return _this6.customDocumentInputs[fieldId] = input;
|
|
5771
5772
|
},
|
|
5772
|
-
id: "
|
|
5773
|
+
id: "documentInput-".concat(fieldId),
|
|
5773
5774
|
type: "file",
|
|
5774
5775
|
className: "fileInput",
|
|
5775
5776
|
onChange: function onChange(e) {
|
|
@@ -5779,7 +5780,7 @@ var AddJob = /*#__PURE__*/function (_Component) {
|
|
|
5779
5780
|
}), /*#__PURE__*/React__default['default'].createElement("div", {
|
|
5780
5781
|
className: "iconTextButton marginBottom-16",
|
|
5781
5782
|
onClick: function onClick() {
|
|
5782
|
-
return _this6.
|
|
5783
|
+
return _this6.customDocumentInputs[fieldId].click();
|
|
5783
5784
|
}
|
|
5784
5785
|
}, /*#__PURE__*/React__default['default'].createElement(FontAwesome__default['default'], {
|
|
5785
5786
|
className: "iconTextButton_icon",
|
package/dist/index.esm.js
CHANGED
|
@@ -4192,7 +4192,7 @@ var Job = /*#__PURE__*/function (_Component) {
|
|
|
4192
4192
|
className: "padding-60 paddingVertical-40 bottomDivideBorder"
|
|
4193
4193
|
}, customFields.map(function (field, index) {
|
|
4194
4194
|
if (['staticTitle', 'staticText'].includes(field.type)) return null;
|
|
4195
|
-
if (_.isNil(field.answer) || field.answer === '') return null;
|
|
4195
|
+
if (_.isNil(field.answer) || field.answer === '' || field.answer.length === 0) return null;
|
|
4196
4196
|
return /*#__PURE__*/React.createElement("div", {
|
|
4197
4197
|
key: index,
|
|
4198
4198
|
className: "marginTop-16"
|
|
@@ -4350,7 +4350,7 @@ var Job = /*#__PURE__*/function (_Component) {
|
|
|
4350
4350
|
className: "maintenanceNote_text"
|
|
4351
4351
|
}, Helper$2.toParagraphed(note.Note)), note.Attachments.map(function (a, i) {
|
|
4352
4352
|
return _this6.renderAttachment(a, i);
|
|
4353
|
-
}), note.Images && note.Images.length > 0 ? this.renderImageGrid(note.Images, IMAGE_SIZE_NOTE) : null
|
|
4353
|
+
}), note.Images && note.Images.length > 0 ? this.renderImageGrid(note.Images, IMAGE_SIZE_NOTE) : null));
|
|
4354
4354
|
}
|
|
4355
4355
|
}, {
|
|
4356
4356
|
key: "renderAssignment",
|
|
@@ -5181,6 +5181,7 @@ var AddJob = /*#__PURE__*/function (_Component) {
|
|
|
5181
5181
|
|
|
5182
5182
|
_this.imageInput = null;
|
|
5183
5183
|
_this.customImageInputs = {};
|
|
5184
|
+
_this.customDocumentInputs = {};
|
|
5184
5185
|
_this.state = {
|
|
5185
5186
|
jobId: Helper$1.safeReadParams(_this.props, 'jobId') ? _this.props.match.params.jobId : null,
|
|
5186
5187
|
job: null,
|
|
@@ -5724,9 +5725,9 @@ var AddJob = /*#__PURE__*/function (_Component) {
|
|
|
5724
5725
|
});
|
|
5725
5726
|
}), /*#__PURE__*/React.createElement("input", {
|
|
5726
5727
|
ref: function ref(input) {
|
|
5727
|
-
return _this6.
|
|
5728
|
+
return _this6.customDocumentInputs[fieldId] = input;
|
|
5728
5729
|
},
|
|
5729
|
-
id: "
|
|
5730
|
+
id: "documentInput-".concat(fieldId),
|
|
5730
5731
|
type: "file",
|
|
5731
5732
|
className: "fileInput",
|
|
5732
5733
|
onChange: function onChange(e) {
|
|
@@ -5736,7 +5737,7 @@ var AddJob = /*#__PURE__*/function (_Component) {
|
|
|
5736
5737
|
}), /*#__PURE__*/React.createElement("div", {
|
|
5737
5738
|
className: "iconTextButton marginBottom-16",
|
|
5738
5739
|
onClick: function onClick() {
|
|
5739
|
-
return _this6.
|
|
5740
|
+
return _this6.customDocumentInputs[fieldId].click();
|
|
5740
5741
|
}
|
|
5741
5742
|
}, /*#__PURE__*/React.createElement(FontAwesome, {
|
|
5742
5743
|
className: "iconTextButton_icon",
|
package/dist/index.umd.js
CHANGED
|
@@ -4214,7 +4214,7 @@
|
|
|
4214
4214
|
className: "padding-60 paddingVertical-40 bottomDivideBorder"
|
|
4215
4215
|
}, customFields.map(function (field, index) {
|
|
4216
4216
|
if (['staticTitle', 'staticText'].includes(field.type)) return null;
|
|
4217
|
-
if (___default['default'].isNil(field.answer) || field.answer === '') return null;
|
|
4217
|
+
if (___default['default'].isNil(field.answer) || field.answer === '' || field.answer.length === 0) return null;
|
|
4218
4218
|
return /*#__PURE__*/React__default['default'].createElement("div", {
|
|
4219
4219
|
key: index,
|
|
4220
4220
|
className: "marginTop-16"
|
|
@@ -4372,7 +4372,7 @@
|
|
|
4372
4372
|
className: "maintenanceNote_text"
|
|
4373
4373
|
}, Helper$2.toParagraphed(note.Note)), note.Attachments.map(function (a, i) {
|
|
4374
4374
|
return _this6.renderAttachment(a, i);
|
|
4375
|
-
}), note.Images && note.Images.length > 0 ? this.renderImageGrid(note.Images, IMAGE_SIZE_NOTE) : null
|
|
4375
|
+
}), note.Images && note.Images.length > 0 ? this.renderImageGrid(note.Images, IMAGE_SIZE_NOTE) : null));
|
|
4376
4376
|
}
|
|
4377
4377
|
}, {
|
|
4378
4378
|
key: "renderAssignment",
|
|
@@ -5203,6 +5203,7 @@
|
|
|
5203
5203
|
|
|
5204
5204
|
_this.imageInput = null;
|
|
5205
5205
|
_this.customImageInputs = {};
|
|
5206
|
+
_this.customDocumentInputs = {};
|
|
5206
5207
|
_this.state = {
|
|
5207
5208
|
jobId: Helper$1.safeReadParams(_this.props, 'jobId') ? _this.props.match.params.jobId : null,
|
|
5208
5209
|
job: null,
|
|
@@ -5746,9 +5747,9 @@
|
|
|
5746
5747
|
});
|
|
5747
5748
|
}), /*#__PURE__*/React__default['default'].createElement("input", {
|
|
5748
5749
|
ref: function ref(input) {
|
|
5749
|
-
return _this6.
|
|
5750
|
+
return _this6.customDocumentInputs[fieldId] = input;
|
|
5750
5751
|
},
|
|
5751
|
-
id: "
|
|
5752
|
+
id: "documentInput-".concat(fieldId),
|
|
5752
5753
|
type: "file",
|
|
5753
5754
|
className: "fileInput",
|
|
5754
5755
|
onChange: function onChange(e) {
|
|
@@ -5758,7 +5759,7 @@
|
|
|
5758
5759
|
}), /*#__PURE__*/React__default['default'].createElement("div", {
|
|
5759
5760
|
className: "iconTextButton marginBottom-16",
|
|
5760
5761
|
onClick: function onClick() {
|
|
5761
|
-
return _this6.
|
|
5762
|
+
return _this6.customDocumentInputs[fieldId].click();
|
|
5762
5763
|
}
|
|
5763
5764
|
}, /*#__PURE__*/React__default['default'].createElement(FontAwesome__default['default'], {
|
|
5764
5765
|
className: "iconTextButton_icon",
|
package/package.json
CHANGED
package/src/screens/AddJob.js
CHANGED
|
@@ -17,6 +17,7 @@ class AddJob extends Component {
|
|
|
17
17
|
super(props);
|
|
18
18
|
this.imageInput = null;
|
|
19
19
|
this.customImageInputs = {};
|
|
20
|
+
this.customDocumentInputs = {};
|
|
20
21
|
this.state = {
|
|
21
22
|
jobId: Helper.safeReadParams(this.props, 'jobId') ? this.props.match.params.jobId : null,
|
|
22
23
|
job: null,
|
|
@@ -779,14 +780,14 @@ class AddJob extends Component {
|
|
|
779
780
|
/>
|
|
780
781
|
))}
|
|
781
782
|
<input
|
|
782
|
-
ref={(input) => (this.
|
|
783
|
-
id=
|
|
783
|
+
ref={(input) => (this.customDocumentInputs[fieldId] = input)}
|
|
784
|
+
id={`documentInput-${fieldId}`}
|
|
784
785
|
type="file"
|
|
785
786
|
className="fileInput"
|
|
786
787
|
onChange={(e) => this.onHandlePDFFileChange(e, fieldId)}
|
|
787
788
|
accept="application/pdf"
|
|
788
789
|
/>
|
|
789
|
-
<div className="iconTextButton marginBottom-16" onClick={() => this.
|
|
790
|
+
<div className="iconTextButton marginBottom-16" onClick={() => this.customDocumentInputs[fieldId].click()}>
|
|
790
791
|
<FontAwesome className="iconTextButton_icon" name="paperclip" />
|
|
791
792
|
<p className="iconTextButton_text">Add Attachment</p>
|
|
792
793
|
</div>
|
package/src/screens/Job.js
CHANGED
|
@@ -559,7 +559,7 @@ class Job extends Component {
|
|
|
559
559
|
);
|
|
560
560
|
}
|
|
561
561
|
|
|
562
|
-
renderDocumentGrid(documents
|
|
562
|
+
renderDocumentGrid(documents) {
|
|
563
563
|
const documentsToUse = documents && documents.length > 0 ? documents : [];
|
|
564
564
|
return (
|
|
565
565
|
<div className="documentGrid">
|
|
@@ -614,7 +614,7 @@ class Job extends Component {
|
|
|
614
614
|
<div className="padding-60 paddingVertical-40 bottomDivideBorder">
|
|
615
615
|
{customFields.map((field, index) => {
|
|
616
616
|
if (['staticTitle', 'staticText'].includes(field.type)) return null;
|
|
617
|
-
if (_.isNil(field.answer) || field.answer === '') return null;
|
|
617
|
+
if (_.isNil(field.answer) || field.answer === '' || field.answer.length === 0) return null;
|
|
618
618
|
return (
|
|
619
619
|
<div key={index} className="marginTop-16">
|
|
620
620
|
<div className={labelClass}>{field.label}</div>
|
|
@@ -759,7 +759,6 @@ class Job extends Component {
|
|
|
759
759
|
<p className="maintenanceNote_text">{Helper.toParagraphed(note.Note)}</p>
|
|
760
760
|
{note.Attachments.map((a, i) => this.renderAttachment(a, i))}
|
|
761
761
|
{note.Images && note.Images.length > 0 ? this.renderImageGrid(note.Images, IMAGE_SIZE_NOTE) : null}
|
|
762
|
-
{note.Documents && note.Documents.length > 0 ? this.renderDocumentGrid(note.Documents, IMAGE_SIZE_NOTE) : null}
|
|
763
762
|
</div>
|
|
764
763
|
</div>
|
|
765
764
|
);
|
|
@@ -36,25 +36,27 @@ const values = {
|
|
|
36
36
|
svgPathGridIconViewBox: '0 0 256 256',
|
|
37
37
|
menuOrder: 10,
|
|
38
38
|
textEmptyDescription: 'allows your users to submit Enquiries.',
|
|
39
|
-
textEmptyExample:
|
|
39
|
+
textEmptyExample:
|
|
40
|
+
'Example might be; General Enquiry form, Sales Enquiry form, Volunteer Enquiry form, Resident Council / Committee Enquiry form, Property Enquiry form.',
|
|
40
41
|
textEmptyJobTypes: 'Please add the different enquiry forms.',
|
|
41
|
-
textEmptyJobTypesExample:
|
|
42
|
+
textEmptyJobTypesExample:
|
|
43
|
+
'Example might be; General Enquiry form, Sales Enquiry form, Volunteer Enquiry form, Resident Council / Committee Enquiry form, Property Enquiry form.',
|
|
42
44
|
textNewTypeButton: 'NEW ENQUIRY FORM',
|
|
43
45
|
textTitleJobTypes: 'Enquiry Forms',
|
|
44
|
-
textJobType: '
|
|
45
|
-
textAreYouSureYouWantToDelete: 'Are you sure you want to delete that enquiry?',
|
|
46
|
+
textJobType: 'Form',
|
|
47
|
+
textAreYouSureYouWantToDelete: 'Are you sure you want to delete that enquiry submission?',
|
|
46
48
|
textAreYouSureYouWantToDeleteNote: 'Are you sure you want to delete that note?',
|
|
47
|
-
textChangedRequestStatus: "changed an enquiry's status:",
|
|
48
|
-
textAddedRequest: 'added an enquiry:',
|
|
49
|
-
textEditedRequest: 'edited an enquiry:',
|
|
50
|
-
textRemovedRequest: 'removed an enquiry:',
|
|
51
|
-
textSingularName: 'Enquiry',
|
|
52
|
-
textYourRequestHere: 'Your
|
|
53
|
-
textTitleRequests: '
|
|
54
|
-
textMenuTitle: '
|
|
55
|
-
textPermissionMaintenanceTracking: 'Manage
|
|
49
|
+
textChangedRequestStatus: "changed an enquiry submission's status:",
|
|
50
|
+
textAddedRequest: 'added an enquiry submission:',
|
|
51
|
+
textEditedRequest: 'edited an enquiry submission:',
|
|
52
|
+
textRemovedRequest: 'removed an enquiry submission:',
|
|
53
|
+
textSingularName: 'Enquiry Submission',
|
|
54
|
+
textYourRequestHere: 'Your Enquiry Submissions will show here',
|
|
55
|
+
textTitleRequests: 'Enquiry Submissions',
|
|
56
|
+
textMenuTitle: 'Enquiries',
|
|
57
|
+
textPermissionMaintenanceTracking: 'Manage Enquiry Submissions',
|
|
56
58
|
textPermissionManageMaintenanceTypes: 'Manage and Set Up Enquiry Forms',
|
|
57
|
-
textPermissionManageAssignedMaintenance: 'Manage Assigned
|
|
59
|
+
textPermissionManageAssignedMaintenance: 'Manage Assigned Enquiry Submissions',
|
|
58
60
|
textHiddenSectionMaintenanceRequests: 'Enquiries',
|
|
59
61
|
keyHiddenSectionMaintenanceRequests: 'maintenanceRequestEnquiry',
|
|
60
62
|
hasMoreSection: false,
|
|
@@ -63,8 +65,9 @@ const values = {
|
|
|
63
65
|
optionKeyMoreSectionMaintenance: 'maintenanceRequestEnquiry',
|
|
64
66
|
hiddenKeyMoreSectionMaintenance: 'maintenanceRequestEnquiry',
|
|
65
67
|
forceCustomFields: false,
|
|
66
|
-
textEntityName: '
|
|
68
|
+
textEntityName: 'Enquiry',
|
|
67
69
|
hasHelpButton: true,
|
|
70
|
+
helpGuideURL: '',
|
|
68
71
|
stringConfigJobStatus: 'maintenanceJobStatusEnquiry',
|
|
69
72
|
stringConfigHideSeen: 'maintenanceDisableSeenEnquiry',
|
|
70
73
|
};
|
|
@@ -35,27 +35,27 @@ const values = {
|
|
|
35
35
|
'M164,152a4,4,0,0,1-4,4H96a4,4,0,0,1,0-8h64A4,4,0,0,1,164,152Zm-4-36H96a4,4,0,0,0,0,8h64a4,4,0,0,0,0-8Zm52-68V216a12,12,0,0,1-12,12H56a12,12,0,0,1-12-12V48A12,12,0,0,1,56,36H94.08a44,44,0,0,1,67.84,0H200A12,12,0,0,1,212,48ZM92,64v4h72V64a36,36,0,0,0-72,0ZM204,48a4,4,0,0,0-4-4H167.17A43.71,43.71,0,0,1,172,64v8a4,4,0,0,1-4,4H88a4,4,0,0,1-4-4V64a43.71,43.71,0,0,1,4.83-20H56a4,4,0,0,0-4,4V216a4,4,0,0,0,4,4H200a4,4,0,0,0,4-4Z',
|
|
36
36
|
svgPathGridIconViewBox: '0 0 256 256',
|
|
37
37
|
menuOrder: 10,
|
|
38
|
-
textEmptyDescription: 'allows your users to submit
|
|
39
|
-
textEmptyExample: 'Example might be; Feedback form.',
|
|
40
|
-
textEmptyJobTypes: 'Please add the different
|
|
41
|
-
textEmptyJobTypesExample: 'Example might be; Feedback form.',
|
|
38
|
+
textEmptyDescription: 'allows your users to submit Feedback.',
|
|
39
|
+
textEmptyExample: 'Example might be; General Feedback form, Complaint form, Compliment form.',
|
|
40
|
+
textEmptyJobTypes: 'Please add the different forms.',
|
|
41
|
+
textEmptyJobTypesExample: 'Example might be; General Feedback form, Complaint form, Compliment form.',
|
|
42
42
|
textNewTypeButton: 'NEW FEEDBACK FORM',
|
|
43
43
|
textTitleJobTypes: 'Feedback Forms',
|
|
44
|
-
textJobType: '
|
|
45
|
-
textAreYouSureYouWantToDelete: 'Are you sure you want to delete that feedback?',
|
|
44
|
+
textJobType: 'Form',
|
|
45
|
+
textAreYouSureYouWantToDelete: 'Are you sure you want to delete that feedback submission?',
|
|
46
46
|
textAreYouSureYouWantToDeleteNote: 'Are you sure you want to delete that note?',
|
|
47
|
-
textChangedRequestStatus: "changed a feedback's status:",
|
|
48
|
-
textAddedRequest: 'added a feedback:',
|
|
49
|
-
textEditedRequest: 'edited a feedback:',
|
|
50
|
-
textRemovedRequest: 'removed a feedback:',
|
|
51
|
-
textSingularName: 'Feedback',
|
|
52
|
-
textYourRequestHere: 'Your
|
|
53
|
-
textTitleRequests: '
|
|
54
|
-
textMenuTitle: '
|
|
55
|
-
textPermissionMaintenanceTracking: 'Manage
|
|
47
|
+
textChangedRequestStatus: "changed a feedback submission's status:",
|
|
48
|
+
textAddedRequest: 'added a feedback submission:',
|
|
49
|
+
textEditedRequest: 'edited a feedback submission:',
|
|
50
|
+
textRemovedRequest: 'removed a feedback submission:',
|
|
51
|
+
textSingularName: 'Feedback Submission',
|
|
52
|
+
textYourRequestHere: 'Your Feedback Submissions will show here',
|
|
53
|
+
textTitleRequests: 'Feedback Submissions',
|
|
54
|
+
textMenuTitle: 'Feedbacks',
|
|
55
|
+
textPermissionMaintenanceTracking: 'Manage Feedback Submissions',
|
|
56
56
|
textPermissionManageMaintenanceTypes: 'Manage and Set Up Feedback Forms',
|
|
57
|
-
textPermissionManageAssignedMaintenance: 'Manage Assigned
|
|
58
|
-
textHiddenSectionMaintenanceRequests: '
|
|
57
|
+
textPermissionManageAssignedMaintenance: 'Manage Assigned Feedback Submissions',
|
|
58
|
+
textHiddenSectionMaintenanceRequests: 'Feedback Submissions',
|
|
59
59
|
keyHiddenSectionMaintenanceRequests: 'maintenanceRequestFeedback',
|
|
60
60
|
hasMoreSection: false,
|
|
61
61
|
textMoreSectionMaintenance: 'Feedbacks',
|
|
@@ -63,8 +63,9 @@ const values = {
|
|
|
63
63
|
optionKeyMoreSectionMaintenance: 'maintenanceRequestFeedback',
|
|
64
64
|
hiddenKeyMoreSectionMaintenance: 'maintenanceRequestFeedback',
|
|
65
65
|
forceCustomFields: false,
|
|
66
|
-
textEntityName: '
|
|
66
|
+
textEntityName: 'Feedback',
|
|
67
67
|
hasHelpButton: true,
|
|
68
|
+
helpGuideURL: '',
|
|
68
69
|
stringConfigJobStatus: 'maintenanceJobStatusFeedback',
|
|
69
70
|
stringConfigHideSeen: 'maintenanceDisableSeenFeedback',
|
|
70
71
|
};
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
const values = {
|
|
2
|
+
featureKey: 'maintenanceFood',
|
|
3
|
+
aliases: ['maintenanceTrackingFood', 'maintenanceTypesFood', 'maintenancerequestFood'],
|
|
4
|
+
serviceKey: 'maintenanceFood',
|
|
5
|
+
reducerKey: 'maintenanceFood',
|
|
6
|
+
analyticsKey: 'maintenancerequestFood',
|
|
7
|
+
commentKey: 'maintenancerequestFood',
|
|
8
|
+
actionJobsLoaded: 'JOBS_LOADEDFood',
|
|
9
|
+
actionJobsRemoved: 'JOBS_REMOVEDFood',
|
|
10
|
+
actionJobsTypesLoaded: 'JOBS_TYPES_LOADEDFood',
|
|
11
|
+
actionJobsStatusesLoaded: 'JOBS_STATUSES_LOADEDFood',
|
|
12
|
+
actionJobsHideSeen: 'JOBS_HIDE_SEENFood',
|
|
13
|
+
actionJobsLoading: 'JOBS_LOADINGFood',
|
|
14
|
+
permissionMaintenanceTracking: 'maintenanceTrackingFood',
|
|
15
|
+
permissionMaintenanceTypes: 'maintenanceTypesFood',
|
|
16
|
+
permissionMaintenanceAssignment: 'maintenanceAssignmentFood',
|
|
17
|
+
activityMaintenanceJobStatusChanged: 'MaintenanceJobStatusChangedFood',
|
|
18
|
+
activityAddMaintenanceJob: 'AddMaintenanceJobFood',
|
|
19
|
+
activityEditMaintenanceJob: 'EditMaintenanceJobFood',
|
|
20
|
+
activityDeleteMaintenanceJob: 'DeleteMaintenanceJobFood',
|
|
21
|
+
routeRequestsHub: '/requestsHubFood',
|
|
22
|
+
routeAddRequest: '/requestsHubFood/job',
|
|
23
|
+
routeAddRequestType: '/requestsHubFood/requestType',
|
|
24
|
+
routeRequestDetails: '/requestsHubFood/jobDetails',
|
|
25
|
+
routeRequestTypes: '/requestTypesFood',
|
|
26
|
+
screenRequestsHub: 'RequestsHubFood',
|
|
27
|
+
screenAddJob: 'AddJobFood',
|
|
28
|
+
screenAddJobType: 'AddJobTypeFood',
|
|
29
|
+
screenJob: 'JobFood',
|
|
30
|
+
screenJobTypes: 'JobTypesFood',
|
|
31
|
+
menuIcon: 'form',
|
|
32
|
+
isFontAwesomeIcon: false,
|
|
33
|
+
isSVGIcon: true,
|
|
34
|
+
svgPathGridIcon:
|
|
35
|
+
'M164,152a4,4,0,0,1-4,4H96a4,4,0,0,1,0-8h64A4,4,0,0,1,164,152Zm-4-36H96a4,4,0,0,0,0,8h64a4,4,0,0,0,0-8Zm52-68V216a12,12,0,0,1-12,12H56a12,12,0,0,1-12-12V48A12,12,0,0,1,56,36H94.08a44,44,0,0,1,67.84,0H200A12,12,0,0,1,212,48ZM92,64v4h72V64a36,36,0,0,0-72,0ZM204,48a4,4,0,0,0-4-4H167.17A43.71,43.71,0,0,1,172,64v8a4,4,0,0,1-4,4H88a4,4,0,0,1-4-4V64a43.71,43.71,0,0,1,4.83-20H56a4,4,0,0,0-4,4V216a4,4,0,0,0,4,4H200a4,4,0,0,0,4-4Z',
|
|
36
|
+
svgPathGridIconViewBox: '0 0 256 256',
|
|
37
|
+
menuOrder: 10,
|
|
38
|
+
textEmptyDescription: 'allows your users to submit Food Orders.',
|
|
39
|
+
textEmptyExample: 'Example might be; Food Order form.',
|
|
40
|
+
textEmptyJobTypes: 'Please add the different food order forms.',
|
|
41
|
+
textEmptyJobTypesExample: 'Example might be; Food Order form.',
|
|
42
|
+
textNewTypeButton: 'NEW FOOD ORDER FORM',
|
|
43
|
+
textTitleJobTypes: 'Food Order Forms',
|
|
44
|
+
textJobType: 'Form',
|
|
45
|
+
textAreYouSureYouWantToDelete: 'Are you sure you want to delete that food order?',
|
|
46
|
+
textAreYouSureYouWantToDeleteNote: 'Are you sure you want to delete that note?',
|
|
47
|
+
textChangedRequestStatus: "changed a food order's status:",
|
|
48
|
+
textAddedRequest: 'added a food order:',
|
|
49
|
+
textEditedRequest: 'edited a food order:',
|
|
50
|
+
textRemovedRequest: 'removed a food order:',
|
|
51
|
+
textSingularName: 'Food Order',
|
|
52
|
+
textYourRequestHere: 'Your Food Orders will show here',
|
|
53
|
+
textTitleRequests: 'Food Ordering',
|
|
54
|
+
textMenuTitle: 'Food Ordering',
|
|
55
|
+
textPermissionMaintenanceTracking: 'Manage Food Ordering',
|
|
56
|
+
textPermissionManageMaintenanceTypes: 'Manage and Set Up Food Order Forms',
|
|
57
|
+
textPermissionManageAssignedMaintenance: 'Manage Assigned Food Orders',
|
|
58
|
+
textHiddenSectionMaintenanceRequests: 'Food Ordering',
|
|
59
|
+
keyHiddenSectionMaintenanceRequests: 'maintenanceRequestFood',
|
|
60
|
+
hasMoreSection: false,
|
|
61
|
+
textMoreSectionMaintenance: 'Food Ordering',
|
|
62
|
+
featureKeyMoreSectionMaintenance: 'maintenanceFood',
|
|
63
|
+
optionKeyMoreSectionMaintenance: 'maintenanceRequestFood',
|
|
64
|
+
hiddenKeyMoreSectionMaintenance: 'maintenanceRequestFood',
|
|
65
|
+
forceCustomFields: false,
|
|
66
|
+
textEntityName: 'Food Ordering',
|
|
67
|
+
hasHelpButton: true,
|
|
68
|
+
helpGuideURL: '',
|
|
69
|
+
stringConfigJobStatus: 'maintenanceJobStatusFood',
|
|
70
|
+
stringConfigHideSeen: 'maintenanceDisableSeenFood',
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
export { values };
|