@platform-modules/civil-aviation-authority 2.3.291 → 2.3.293

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.
@@ -9,7 +9,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
9
9
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.FollowUpReportRequests = exports.FollowUpReportRequestStatus = exports.FollowUpReportConcernedDepartment = exports.FollowUpReportSubjectClassification = void 0;
12
+ exports.FollowUpReportRequests = exports.FollowUpReportRequestStatus = exports.FollowUpReportConcernedDepartment = exports.FOLLOW_UP_REPORT_SUBJECT_CLASSIFICATION_VALUES = exports.FollowUpReportSubjectClassification = void 0;
13
13
  const typeorm_1 = require("typeorm");
14
14
  const BaseModel_1 = require("./BaseModel");
15
15
  /** Subject / handling priority classification */
@@ -20,7 +20,13 @@ var FollowUpReportSubjectClassification;
20
20
  FollowUpReportSubjectClassification["CONFIDENTIAL"] = "Confidential";
21
21
  FollowUpReportSubjectClassification["INFORMATIONAL"] = "Informational";
22
22
  FollowUpReportSubjectClassification["NORMAL"] = "Normal";
23
+ FollowUpReportSubjectClassification["IMPORTANT"] = "Important";
24
+ FollowUpReportSubjectClassification["HIGHLY_CONFIDENTIAL"] = "Highly Confidential";
25
+ FollowUpReportSubjectClassification["RESTRICTED"] = "Restricted";
26
+ FollowUpReportSubjectClassification["LIMITED"] = "Limited";
23
27
  })(FollowUpReportSubjectClassification || (exports.FollowUpReportSubjectClassification = FollowUpReportSubjectClassification = {}));
28
+ /** Allowed API/DB values for follow-up report subject classification. */
29
+ exports.FOLLOW_UP_REPORT_SUBJECT_CLASSIFICATION_VALUES = Object.values(FollowUpReportSubjectClassification);
24
30
  /** Concerned department under General Manager of Support Services */
25
31
  var FollowUpReportConcernedDepartment;
26
32
  (function (FollowUpReportConcernedDepartment) {
@@ -103,6 +109,26 @@ __decorate([
103
109
  (0, typeorm_1.Column)({ type: 'date', nullable: false }),
104
110
  __metadata("design:type", Date)
105
111
  ], FollowUpReportRequests.prototype, "date_to", void 0);
112
+ __decorate([
113
+ (0, typeorm_1.Column)({ type: 'varchar', length: 500, nullable: true }),
114
+ __metadata("design:type", Object)
115
+ ], FollowUpReportRequests.prototype, "general_manager_comment", void 0);
116
+ __decorate([
117
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
118
+ __metadata("design:type", Object)
119
+ ], FollowUpReportRequests.prototype, "response_date_target", void 0);
120
+ __decorate([
121
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
122
+ __metadata("design:type", Object)
123
+ ], FollowUpReportRequests.prototype, "action_status", void 0);
124
+ __decorate([
125
+ (0, typeorm_1.Column)({ type: 'text', nullable: true }),
126
+ __metadata("design:type", Object)
127
+ ], FollowUpReportRequests.prototype, "action_taken", void 0);
128
+ __decorate([
129
+ (0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
130
+ __metadata("design:type", Object)
131
+ ], FollowUpReportRequests.prototype, "delay_period", void 0);
106
132
  __decorate([
107
133
  (0, typeorm_1.Column)({ type: 'date', nullable: false, default: () => 'CURRENT_DATE' }),
108
134
  __metadata("design:type", Date)
@@ -9,5 +9,6 @@ export declare class RespondToEnquiriesRequestAttachment extends BaseModel {
9
9
  file_type: string;
10
10
  file_size: number | null;
11
11
  description: string;
12
- constructor(request_id: number, uploaded_by: number, file_url: string, service_id?: number | null, sub_service_id?: number | null, file_name?: string, file_type?: string, file_size?: number, description?: string);
12
+ document_name: string | null;
13
+ constructor(request_id: number, uploaded_by: number, file_url: string, service_id?: number | null, sub_service_id?: number | null, file_name?: string, file_type?: string, file_size?: number, description?: string, document_name?: string);
13
14
  }
@@ -13,7 +13,7 @@ exports.RespondToEnquiriesRequestAttachment = void 0;
13
13
  const typeorm_1 = require("typeorm");
14
14
  const BaseModel_1 = require("./BaseModel");
15
15
  let RespondToEnquiriesRequestAttachment = class RespondToEnquiriesRequestAttachment extends BaseModel_1.BaseModel {
16
- constructor(request_id, uploaded_by, file_url, service_id, sub_service_id, file_name, file_type, file_size, description) {
16
+ constructor(request_id, uploaded_by, file_url, service_id, sub_service_id, file_name, file_type, file_size, description, document_name) {
17
17
  super();
18
18
  this.request_id = request_id;
19
19
  this.service_id = service_id || null;
@@ -24,6 +24,7 @@ let RespondToEnquiriesRequestAttachment = class RespondToEnquiriesRequestAttachm
24
24
  this.file_type = file_type || "";
25
25
  this.file_size = file_size || null;
26
26
  this.description = description || "";
27
+ this.document_name = document_name || null;
27
28
  }
28
29
  };
29
30
  exports.RespondToEnquiriesRequestAttachment = RespondToEnquiriesRequestAttachment;
@@ -63,7 +64,11 @@ __decorate([
63
64
  (0, typeorm_1.Column)({ type: "text", nullable: true }),
64
65
  __metadata("design:type", String)
65
66
  ], RespondToEnquiriesRequestAttachment.prototype, "description", void 0);
67
+ __decorate([
68
+ (0, typeorm_1.Column)({ type: "varchar", length: 500, nullable: true }),
69
+ __metadata("design:type", Object)
70
+ ], RespondToEnquiriesRequestAttachment.prototype, "document_name", void 0);
66
71
  exports.RespondToEnquiriesRequestAttachment = RespondToEnquiriesRequestAttachment = __decorate([
67
72
  (0, typeorm_1.Entity)({ name: "respond_to_enquiries_request_attachments" }),
68
- __metadata("design:paramtypes", [Number, Number, String, Object, Object, String, String, Number, String])
73
+ __metadata("design:paramtypes", [Number, Number, String, Object, Object, String, String, Number, String, String])
69
74
  ], RespondToEnquiriesRequestAttachment);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/civil-aviation-authority",
3
- "version": "2.3.291",
3
+ "version": "2.3.293",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -30,3 +30,43 @@ ALTER TABLE request_a_tender_requests
30
30
  ALTER TABLE cyber_security_risk_management_risks
31
31
  ADD COLUMN IF NOT EXISTS treatment TEXT,
32
32
  ADD COLUMN IF NOT EXISTS action TEXT;
33
+
34
+ -- 7. Follow-up report: subject_classification enum values
35
+ ALTER TYPE maintenance_subject_classification_en ADD VALUE IF NOT EXISTS 'Important';
36
+ ALTER TYPE maintenance_subject_classification_en ADD VALUE IF NOT EXISTS 'Highly Confidential';
37
+ ALTER TYPE maintenance_subject_classification_en ADD VALUE IF NOT EXISTS 'Restricted';
38
+ ALTER TYPE maintenance_subject_classification_en ADD VALUE IF NOT EXISTS 'Limited';
39
+
40
+ -- 8. Contract service request: notes, company phone, contract documents table
41
+ ALTER TABLE contract_service_requests
42
+ ADD COLUMN IF NOT EXISTS notes TEXT,
43
+ ADD COLUMN IF NOT EXISTS company_phone_number VARCHAR(30);
44
+
45
+ CREATE TABLE IF NOT EXISTS contract_service_request_documents (
46
+ id SERIAL PRIMARY KEY,
47
+ created_at TIMESTAMPTZ DEFAULT CURRENT_TIMESTAMP,
48
+ updated_at TIMESTAMPTZ DEFAULT CURRENT_TIMESTAMP,
49
+ created_by INT,
50
+ updated_by INT,
51
+ is_deleted BOOLEAN DEFAULT FALSE,
52
+ request_id INT NOT NULL,
53
+ service_id INT,
54
+ sub_service_id INT,
55
+ document_name VARCHAR(500) NOT NULL,
56
+ description TEXT,
57
+ file_url VARCHAR(500) NOT NULL,
58
+ file_name VARCHAR(255),
59
+ file_type VARCHAR(100),
60
+ file_size BIGINT,
61
+ uploaded_by INT NOT NULL
62
+ );
63
+
64
+ ALTER TABLE respond_to_enquiries_request_attachments
65
+ ADD COLUMN IF NOT EXISTS document_name VARCHAR(500);
66
+
67
+ -- 9. Follow-up report items: per-item attachment fields
68
+ ALTER TABLE followup_report_items
69
+ ADD COLUMN IF NOT EXISTS file_url VARCHAR(500),
70
+ ADD COLUMN IF NOT EXISTS file_name VARCHAR(255),
71
+ ADD COLUMN IF NOT EXISTS file_type VARCHAR(100),
72
+ ADD COLUMN IF NOT EXISTS file_size BIGINT;
@@ -234,6 +234,7 @@ import { MaintenanceExternalStationsAttachment } from './models/MaintenanceExter
234
234
  import { MaintenanceExternalStationsChat } from './models/MaintenanceExternalStationsChatModel';
235
235
  import { MaintenanceExternalStationsWorkFlow } from './models/MaintenanceExternalStationsWorkflowModel';
236
236
  import { FollowUpReportRequests } from './models/FollowUpReportRequestModel';
237
+ import { FollowUpReportItem } from './models/FollowUpReportItemModel';
237
238
  import { FollowUpReportApprovalDetails } from './models/FollowUpReportApprovalModel';
238
239
  import { FollowUpReportAttachment } from './models/FollowUpReportAttachmentModel';
239
240
  import { FollowUpReportChat } from './models/FollowUpReportChatModel';
@@ -268,6 +269,7 @@ import { ComplaintLostPropertyReportChat } from './models/ComplaintLostPropertyR
268
269
  import { ComplaintLostPropertyReportRequest } from './models/ComplaintLostPropertyReportRequestModel';
269
270
  import { ComplaintLostPropertyReportWorkflow } from './models/ComplaintLostPropertyReportWorkflowModel';
270
271
  import { ContractServiceRequest } from './models/ContractServiceRequestModel';
272
+ import { ContractServiceRequestDocument } from './models/ContractServiceRequestDocumentModel';
271
273
  import { CountryMaster } from './models/CountryMasterModel';
272
274
  import { CyberSecurityAuditRequest } from './models/CyberSecurityAuditRequestModel';
273
275
  import { CyberSecurityRiskManagementRequest } from './models/CyberSecurityRiskManagementRequestModel';
@@ -557,6 +559,7 @@ export const AppDataSource = new DataSource({
557
559
  MaintenanceExternalStationsChat,
558
560
  MaintenanceExternalStationsWorkFlow,
559
561
  FollowUpReportRequests,
562
+ FollowUpReportItem,
560
563
  FollowUpReportApprovalDetails,
561
564
  FollowUpReportAttachment,
562
565
  FollowUpReportChat,
@@ -591,6 +594,7 @@ export const AppDataSource = new DataSource({
591
594
  ComplaintLostPropertyReportRequest,
592
595
  ComplaintLostPropertyReportWorkflow,
593
596
  ContractServiceRequest,
597
+ ContractServiceRequestDocument,
594
598
  CountryMaster,
595
599
  CyberSecurityAuditRequest,
596
600
  CyberSecurityRiskManagementRequest,
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "request_approval_pending": {
20
20
  "en": "Request Approval Pending",
21
- "ar": "في انتظار الموافقة على الطلب"
21
+ "ar": "الموافقة على الطلب قيد الانتظار"
22
22
  },
23
23
  "request_approval_in_progress_from": {
24
24
  "en": "Request Approval In Progress from {{name}}",
@@ -26,7 +26,7 @@
26
26
  },
27
27
  "request_approval_pending_from": {
28
28
  "en": "Request Approval Pending from {{name}}",
29
- "ar": "في انتظار موافقة {{name}}"
29
+ "ar": "الموافقة على الطلب قيد الانتظار من {{name}}"
30
30
  },
31
31
  "request_approved_by": {
32
32
  "en": "Request Approved by {{name}}{{comment}}",
@@ -40,17 +40,25 @@
40
40
  "en": "Request Approved{{comment}}",
41
41
  "ar": "تمت الموافقة على الطلب{{comment}}"
42
42
  },
43
+ "request_approved_assigned_to_user": {
44
+ "en": "Request Approved: Request assigned to {{assignedUserName}} by {{roleName}} ({{actorUserName}} - {{employeeId}})",
45
+ "ar": "تمت الموافقة على الطلب: تم تعيين الطلب إلى {{assignedUserName}} من قبل {{roleName}} ({{actorUserName}} - {{employeeId}})"
46
+ },
47
+ "request_approved_assigned_to_technician": {
48
+ "en": "Request Approved: Request assigned to technician {{assignedUserName}} by {{roleName}} ({{actorUserName}} - {{employeeId}})",
49
+ "ar": "تمت الموافقة على الطلب: تم تعيين الطلب إلى الفني {{assignedUserName}} من قبل {{roleName}} ({{actorUserName}} - {{employeeId}})"
50
+ },
43
51
  "request_rejected": {
44
52
  "en": "Request Rejected{{comment}}",
45
53
  "ar": "تم رفض الطلب{{comment}}"
46
54
  },
47
55
  "request_returned_for_modification_by": {
48
56
  "en": "Request Returned for Modification by {{name}}{{comment}}",
49
- "ar": "تم إرجاع الطلب للتعديل من قبل {{name}}{{comment}}"
57
+ "ar": "تمت إعادة الطلب للتعديل من قبل {{name}}{{comment}}"
50
58
  },
51
59
  "request_returned_for_modification": {
52
60
  "en": "Request Returned for Modification{{comment}}",
53
- "ar": "تم إرجاع الطلب للتعديل{{comment}}"
61
+ "ar": "تمت إعادة الطلب للتعديل{{comment}}"
54
62
  },
55
63
  "request_closed_by": {
56
64
  "en": "Request Closed by: {{name}}{{comment}}",
@@ -62,77 +70,77 @@
62
70
  },
63
71
  "it_helpdesk_wf_hos_assigned": {
64
72
  "en": "{{approverRoleName}} assigned the request to {{assignedRoleName}}{{comment}}",
65
- "ar": "قام {{approverRoleName}} بتعيين الطلب إلى {{assignedRoleName}}{{comment}}"
73
+ "ar": "تم تعيين الطلب إلى {{assignedRoleName}} من قبل {{approverRoleName}}{{comment}}"
66
74
  },
67
75
  "it_helpdesk_wf_technician_assigned": {
68
76
  "en": "IT technician {{level}} assigned by {{approverRoleName}}{{comment}}",
69
- "ar": "تم تعيين فني IT {{level}} بواسطة {{approverRoleName}}{{comment}}"
77
+ "ar": "تم تعيين فني تقنية المعلومات {{level}} من قبل {{approverRoleName}}{{comment}}"
70
78
  },
71
79
  "it_helpdesk_wf_reassigned_technician": {
72
80
  "en": "{{approverRoleName}} reassigned request to Technician{{comment}}{{modifiers}}",
73
- "ar": "أعاد {{approverRoleName}} تعيين الطلب إلى الفني{{comment}}{{modifiers}}"
81
+ "ar": "{{approverRoleName}} تمت إعادة تعيين الطلب إلى الفني{{comment}}{{modifiers}}"
74
82
  },
75
83
  "it_helpdesk_wf_reassigned_l3": {
76
84
  "en": "{{approverRoleName}} reassigned request to L3{{comment}}{{modifiers}}",
77
- "ar": "أعاد {{approverRoleName}} تعيين الطلب إلى L3{{comment}}{{modifiers}}"
85
+ "ar": "{{approverRoleName}} تمت إعادة تعيين الطلب إلى المستوى الثالث (L3){{comment}}{{modifiers}}"
78
86
  },
79
87
  "it_helpdesk_wf_reassigned_generic": {
80
88
  "en": "{{approverRoleName}} {{level}} reassigned{{comment}}{{modifiers}}",
81
- "ar": "أعاد {{approverRoleName}} {{level}} التعيين{{comment}}{{modifiers}}"
89
+ "ar": "{{approverRoleName}} {{level}} إعادة التعيين{{comment}}{{modifiers}}"
82
90
  },
83
91
  "it_helpdesk_wf_closed_request": {
84
92
  "en": "{{approverRoleName}} closed request{{comment}}",
85
- "ar": "أغلق {{approverRoleName}} الطلب{{comment}}"
93
+ "ar": "تم إغلاق الطلب من قبل {{approverRoleName}}{{comment}}"
86
94
  },
87
95
  "it_helpdesk_wf_closed_request_cap": {
88
96
  "en": "{{approverRoleName}} Closed request{{comment}}",
89
- "ar": "أغلق {{approverRoleName}} الطلب{{comment}}"
97
+ "ar": "تم إغلاق الطلب من قبل {{approverRoleName}}{{comment}}"
90
98
  },
91
99
  "it_helpdesk_wf_l3_approved_by": {
92
100
  "en": "{{roleName}} approved the request by {{userName}}{{comment}}",
93
- "ar": "وافق {{roleName}} على الطلب من قبل {{userName}}{{comment}}"
101
+ "ar": "{{roleName}} تمت الموافقة على الطلب من قبل {{userName}}{{comment}}"
94
102
  },
95
103
  "it_helpdesk_wf_l3_rejected_by": {
96
104
  "en": "{{roleName}} rejected the request by {{userName}}{{comment}}",
97
- "ar": "رفض {{roleName}} على الطلب من قبل {{userName}}{{comment}}"
105
+ "ar": "{{roleName}} تم رفض الطلب من قبل {{userName}}{{comment}}"
98
106
  },
99
107
  "it_helpdesk_wf_level_approved": {
100
108
  "en": "Level {{level}} approved by {{approverRoleName}}{{comment}}",
101
- "ar": "تمت الموافقة على المستوى {{level}} من قبل {{approverRoleName}}{{comment}}"
109
+ "ar": "تمت الموافقة من قبل {{approverRoleName}} للمستوى {{level}}{{comment}}"
102
110
  },
103
111
  "it_helpdesk_wf_rejected": {
104
112
  "en": "{{approverRoleName}} rejected the request{{comment}}",
105
- "ar": "رفض {{approverRoleName}} الطلب{{comment}}"
113
+ "ar": "{{approverRoleName}} تم رفض الطلب{{comment}}"
106
114
  },
107
115
  "it_helpdesk_wf_status_by_role": {
108
116
  "en": "Request {{status}} by {{approverRoleName}}{{comment}}",
109
- "ar": "تم {{statusAr}} الطلب من قبل {{approverRoleName}}{{comment}}"
117
+ "ar": "{{statusAr}} الطلب من قبل {{approverRoleName}}{{comment}}"
110
118
  },
111
119
  "it_helpdesk_wf_l3_step_rejected": {
112
120
  "en": "{{roleName}} rejected the request{{comment}}",
113
- "ar": "رفض {{roleName}} الطلب{{comment}}"
121
+ "ar": "{{roleName}} تم رفض الطلب{{comment}}"
114
122
  },
115
123
  "it_helpdesk_wf_technician_completed": {
116
124
  "en": "Technician action completed - request closed by {{roleName}}{{comment}}",
117
- "ar": "اكتمل إجراء الفني - تم إغلاق الطلب بواسطة {{roleName}}{{comment}}"
125
+ "ar": "تم استكمال إجراء الفني - تم إغلاق الطلب من قبل {{roleName}}{{comment}}"
118
126
  },
119
127
  "it_helpdesk_wf_routing_rejected": {
120
128
  "en": "Workflow routing completed - request rejected at L3{{comment}}",
121
- "ar": "اكتمل توجيه سير العمل - تم رفض الطلب في L3{{comment}}"
129
+ "ar": "تم استكمال مسار سير العمل - تم رفض الطلب في المستوى الثالث (L3){{comment}}"
122
130
  },
123
131
  "it_helpdesk_wf_routing_resolved": {
124
132
  "en": "Workflow routing completed - request resolved at L3",
125
- "ar": "اكتمل توجيه سير العمل - تم حل الطلب في L3"
133
+ "ar": "تم استكمال مسار سير العمل - تم حل الطلب في المستوى الثالث (L3)"
126
134
  }
127
135
  },
128
136
  "chatTemplates": {
129
137
  "request_submitted_by": {
130
138
  "en": "Request Submitted by {{userName}} ({{employeeId}})",
131
- "ar": "تم تقديم الطلب بواسطة {{userName}} ({{employeeId}})"
139
+ "ar": "تم تقديم الطلب من قبل {{userName}} ({{employeeId}})"
132
140
  },
133
141
  "cancellation_submitted_by": {
134
142
  "en": "Cancellation request submitted by {{userName}} ({{employeeId}})",
135
- "ar": "تم تقديم طلب الإلغاء بواسطة {{userName}} ({{employeeId}})"
143
+ "ar": "تم تقديم طلب الإلغاء من قبل {{userName}} ({{employeeId}})"
136
144
  },
137
145
  "cancellation_submitted": {
138
146
  "en": "Cancellation request submitted",
@@ -142,6 +150,10 @@
142
150
  "en": "Request Received",
143
151
  "ar": "تم استلام الطلب"
144
152
  },
153
+ "request_assigned_by_role": {
154
+ "en": "Request assigned by {{roleName}}{{comment}}",
155
+ "ar": "تم تعيين الطلب من قبل {{roleName}}{{comment}}"
156
+ },
145
157
  "request_approved_by_role": {
146
158
  "en": "Request Approved by: {{roleName}}{{comment}}",
147
159
  "ar": "تمت الموافقة على الطلب من قبل: {{roleName}}{{comment}}"
@@ -152,7 +164,7 @@
152
164
  },
153
165
  "request_returned_for_modification_by_role": {
154
166
  "en": "Request Returned for Modification by: {{roleName}}{{comment}}",
155
- "ar": "تم إرجاع الطلب للتعديل من قبل: {{roleName}}{{comment}}"
167
+ "ar": "تمت إعادة الطلب للتعديل من قبل: {{roleName}}{{comment}}"
156
168
  },
157
169
  "request_approved": {
158
170
  "en": "Request Approved{{comment}}",
@@ -164,7 +176,7 @@
164
176
  },
165
177
  "request_returned_for_modification": {
166
178
  "en": "Request Returned for Modification{{comment}}",
167
- "ar": "تم إرجاع الطلب للتعديل{{comment}}"
179
+ "ar": "تمت إعادة الطلب للتعديل{{comment}}"
168
180
  },
169
181
  "request_closed_by_role": {
170
182
  "en": "Request Closed by: {{roleName}}{{comment}}",
@@ -172,11 +184,11 @@
172
184
  },
173
185
  "request_for_change_by_role": {
174
186
  "en": "Request For Change by: {{roleName}}{{comment}}",
175
- "ar": "طلب تعديل من قبل: {{roleName}}{{comment}}"
187
+ "ar": "طلب تغيير من قبل: {{roleName}}{{comment}}"
176
188
  },
177
189
  "request_for_change_requested_by_role": {
178
190
  "en": "Request For Change requested by: {{roleName}}{{comment}}",
179
- "ar": "تم طلب التعديل من قبل: {{roleName}}{{comment}}"
191
+ "ar": "تم طلب التغيير من قبل: {{roleName}}{{comment}}"
180
192
  },
181
193
  "attachment_uploaded": {
182
194
  "en": "Attachment uploaded: {{fileName}}",
@@ -188,11 +200,11 @@
188
200
  },
189
201
  "task_status_in_progress_by_role": {
190
202
  "en": "Task status updated to \"In Progress\" by: {{roleName}}",
191
- "ar": "تم تحديث حالة المهمة إلى \"قيد التنفيذ\" بواسطة: {{roleName}}"
203
+ "ar": "تم تحديث حالة المهمة إلى \"قيد التنفيذ\" من قبل: {{roleName}}"
192
204
  },
193
205
  "task_completed_by_role": {
194
206
  "en": "Task Completed by: {{roleName}}{{comment}}",
195
- "ar": "تم إكمال المهمة بواسطة: {{roleName}}{{comment}}"
207
+ "ar": "اكتملت المهمة من قبل: {{roleName}}{{comment}}"
196
208
  },
197
209
  "task_status_updated": {
198
210
  "en": "Task status updated to {{status}}",
@@ -204,23 +216,23 @@
204
216
  },
205
217
  "it_helpdesk_technician_assigned": {
206
218
  "en": "IT technician {{level}} assigned to {{assignedRoleName}}: {{assignedUserName}}{{comment}}",
207
- "ar": "تم تعيين فني IT {{level}} إلى {{assignedRoleName}}: {{assignedUserName}}{{comment}}"
219
+ "ar": "تم تعيين فني تقنية المعلومات {{level}} إلى {{assignedRoleName}}: {{assignedUserName}}{{comment}}"
208
220
  },
209
221
  "it_helpdesk_reassigned_to_role": {
210
222
  "en": "{{approverRoleName}} reassigned request to {{reassignedRoleName}}{{comment}}",
211
- "ar": "أعاد {{approverRoleName}} تعيين الطلب إلى {{reassignedRoleName}}{{comment}}"
223
+ "ar": "{{approverRoleName}} تمت إعادة تعيين الطلب إلى {{reassignedRoleName}}{{comment}}"
212
224
  },
213
225
  "it_helpdesk_reassigned_to_l3": {
214
226
  "en": "{{approverRoleName}} reassigned request to L3{{comment}}",
215
- "ar": "أعاد {{approverRoleName}} تعيين الطلب إلى L3{{comment}}"
227
+ "ar": "{{approverRoleName}} تمت إعادة تعيين الطلب إلى المستوى الثالث (L3){{comment}}"
216
228
  },
217
229
  "it_helpdesk_reassigned_generic": {
218
230
  "en": "{{approverRoleName}} {{level}} reassigned the request{{comment}}",
219
- "ar": "أعاد {{approverRoleName}} {{level}} تعيين الطلب{{comment}}"
231
+ "ar": "{{approverRoleName}} {{level}} تمت إعادة تعيين الطلب{{comment}}"
220
232
  },
221
233
  "request_submitted_with_ref": {
222
234
  "en": "{{requestLabel}} #{{requestId}} has been submitted by {{userName}} ({{employeeId}})",
223
- "ar": "تم تقديم {{requestLabel}} رقم {{requestId}} بواسطة {{userName}} ({{employeeId}})"
235
+ "ar": "تم تقديم {{requestLabel}} رقم {{requestId}} من قبل {{userName}} ({{employeeId}})"
224
236
  },
225
237
  "security_access_approval_step": {
226
238
  "en": "{{productLabel}} request #{{requestId}} was {{statusWord}} (approval step {{approvalLevel}}).{{comment}}",
@@ -228,7 +240,7 @@
228
240
  },
229
241
  "logistics_actual_return_updated": {
230
242
  "en": "{{roleName}} updated the Vehicle Actual Return Date, Time, and Reason. Actual Return Date: {{date}}, Actual Return Time: {{time}}, Reason: {{reason}}",
231
- "ar": "قام {{roleName}} بتحديث تاريخ ووقت وسبب الإرجاع الفعلي للمركبة. تاريخ الإرجاع الفعلي: {{date}}، وقت الإرجاع الفعلي: {{time}}، السبب: {{reason}}"
243
+ "ar": "قام {{roleName}} بتحديث تاريخ الإرجاع الفعلي للمركبة والوقت والسبب. تاريخ الإرجاع الفعلي: {{date}}، وقت الإرجاع الفعلي: {{time}}، السبب: {{reason}}"
232
244
  }
233
245
  },
234
246
  "notificationTemplates": {
@@ -238,11 +250,11 @@
238
250
  },
239
251
  "it_helpdesk_notif_request_closed": {
240
252
  "en": "IT request #{{requestId}} has been closed",
241
- "ar": "تم إغلاق طلب IT رقم {{requestId}}"
253
+ "ar": "تم إغلاق طلب تقنية المعلومات رقم {{requestId}}"
242
254
  },
243
255
  "it_helpdesk_notif_request_rejected": {
244
256
  "en": "IT request #{{requestId}} has been rejected",
245
- "ar": "تم رفض طلب IT رقم {{requestId}}"
257
+ "ar": "تم رفض طلب تقنية المعلومات رقم {{requestId}}"
246
258
  }
247
259
  },
248
260
  "workflowStatusLabels": {
@@ -253,15 +265,15 @@
253
265
  "chatStatusLabels": {
254
266
  "Submitted": "تم التقديم",
255
267
  "Received": "تم الاستلام",
256
- "Approved": "موافق عليه",
257
- "Rejected": "مرفوض",
268
+ "Approved": "تم الموافقة",
269
+ "Rejected": "تم الرفض",
258
270
  "Pending": "قيد الانتظار",
259
- "Returned for Modification": "أُعيد للتعديل",
260
- "Request For Change": "طلب تعديل",
271
+ "Returned for Modification": "تمت إعادته للتعديل",
272
+ "Request For Change": "طلب تغيير",
261
273
  "Closed": "مغلق",
262
274
  "Completed": "مكتمل",
263
- "Assigned": "معيّن",
264
- "Reassigned": "أعيد التعيين",
275
+ "Assigned": "تم التعيين",
276
+ "Reassigned": "تمت إعادة التعيين",
265
277
  "In Progress": "قيد التنفيذ",
266
278
  "Attachment uploaded": "تم رفع المرفق"
267
279
  }