@platform-modules/civil-aviation-authority 2.3.310 → 2.3.312
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/data-source.js +2 -0
- package/dist/i18n/workflow-chat-i18n.json +8 -0
- package/dist/i18n/workflow-chat-message.builder.d.ts +1 -1
- package/dist/i18n/workflow-chat-message.builder.js +21 -3
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/models/ChatbotQnsAnsMappingModel.d.ts +8 -0
- package/dist/models/ChatbotQnsAnsMappingModel.js +40 -0
- package/dist/models/DocumentMetadataModel.d.ts +45 -0
- package/dist/models/DocumentMetadataModel.js +171 -0
- package/dist/models/DocumentationDepartmentsModel.d.ts +13 -0
- package/dist/models/DocumentationDepartmentsModel.js +53 -0
- package/dist/models/FolderModel.d.ts +16 -0
- package/dist/models/FolderModel.js +85 -0
- package/dist/models/ImportExportMaterialModels.d.ts +92 -0
- package/dist/models/ImportExportMaterialModels.js +307 -0
- package/dist/models/PermissionModel.d.ts +18 -0
- package/dist/models/PermissionModel.js +68 -0
- package/dist/models/SecurityAccessApprovalModel.d.ts +23 -0
- package/dist/models/SecurityAccessApprovalModel.js +82 -0
- package/dist/models/SecurityAccessAttachmentModel.d.ts +12 -0
- package/dist/models/SecurityAccessAttachmentModel.js +56 -0
- package/dist/models/SecurityAccessChatModel.d.ts +12 -0
- package/dist/models/SecurityAccessChatModel.js +56 -0
- package/dist/models/SecurityAccessRequestModel.d.ts +25 -0
- package/dist/models/SecurityAccessRequestModel.js +80 -0
- package/dist/models/SecurityAccessWorkflowModel.d.ts +24 -0
- package/dist/models/SecurityAccessWorkflowModel.js +84 -0
- package/dist/models/ServiceExtensionAfterAge60Models.d.ts +93 -0
- package/dist/models/ServiceExtensionAfterAge60Models.js +312 -0
- package/dist/models/SlaApprovalsViewModel.js +54 -47
- package/dist/models/SlaMyRequestsViewModel.d.ts +3 -0
- package/dist/models/SlaMyRequestsViewModel.js +22 -2
- package/dist/models/UUIDBaseModel.d.ts +14 -0
- package/dist/models/UUIDBaseModel.js +66 -0
- package/dist/models/WorkingHoursExtensionModels.d.ts +88 -0
- package/dist/models/WorkingHoursExtensionModels.js +295 -0
- package/package.json +1 -1
- package/scripts/sync-sla-reports-sql.js +92 -92
- package/sql/README.md +21 -21
- package/sql/create_chatbot_qns_ans_mapping.sql +25 -0
- package/sql/sla_reports_admin_procedures.sql +323 -304
- package/sql/sla_reports_approvals_workbook.sql +430 -383
- package/sql/sla_reports_procedures.sql +886 -886
- package/sql/user_role_department_section_validation.sql +214 -0
- package/sql/vw_sla_approvals.sql +115 -108
- package/sql/vw_sla_my_requests.sql +58 -53
- package/src/data-source.ts +2 -0
- package/src/i18n/workflow-chat-i18n.json +8 -0
- package/src/i18n/workflow-chat-message.builder.ts +27 -3
- package/src/index.ts +1 -0
- package/src/models/AccessCardRequestModel.ts +135 -135
- package/src/models/AirportEntryPermitModel.ts +276 -276
- package/src/models/AnnualTrainingPlanRequestModel.ts +153 -153
- package/src/models/ChatbotQnsAnsMappingModel.ts +21 -0
- package/src/models/DocumentDriveModel.ts +28 -28
- package/src/models/DocumentFolderModel.ts +45 -45
- package/src/models/HotelApprovalModel.ts +83 -83
- package/src/models/HousingContractCancelApprovalModel.ts +64 -64
- package/src/models/HousingContractRenewalApprovalModel.ts +64 -64
- package/src/models/ITRequestAttachmentModel.ts +73 -73
- package/src/models/ItApprovalsModel.ts +84 -84
- package/src/models/LegalConsultationApprovalModel.ts +65 -65
- package/src/models/MissionTravelPassportExpiryNotificationConfigModel.ts +36 -36
- package/src/models/NotificationModel.ts +89 -89
- package/src/models/ResidentialUnitRentalApprovalModel.ts +143 -143
- package/src/models/ServiceExtensionAfter60ApprovalModel.ts +87 -87
- package/src/models/ServiceSlaApprovalModel.ts +64 -64
- package/src/models/ServicesNotificationConfigModel.ts +55 -55
- package/src/models/SlaApprovalsViewModel.ts +142 -135
- package/src/models/SlaMyRequestsViewModel.ts +21 -1
- package/src/models/StudyLeaveRequestModel.ts +144 -144
- package/src/models/TrainingRequestModel.ts +164 -164
- package/src/models/TrainingRoomBookingRequestModel.ts +142 -142
- package/src/models/TrainingRoomNotificationConfigModel.ts +30 -30
- package/src/models/role.ts +34 -34
- package/src/sla/sla-table-sync.service.ts +90 -90
- package/dist/helpers/cancellation-bilingual-persist.helper.d.ts +0 -37
- package/dist/helpers/cancellation-bilingual-persist.helper.js +0 -77
|
@@ -11,53 +11,60 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.SlaApprovalsView = void 0;
|
|
13
13
|
const typeorm_1 = require("typeorm");
|
|
14
|
-
const VW_SLA_APPROVALS_SQL = `
|
|
15
|
-
SELECT
|
|
16
|
-
sa.id AS sla_approval_id,
|
|
17
|
-
sa.source_approval_id,
|
|
18
|
-
sa.request_id,
|
|
19
|
-
sa.service_id AS service_id,
|
|
20
|
-
sa.sub_service_id AS sub_service_id,
|
|
21
|
-
TRIM(COALESCE(svc.name, ''))::TEXT AS service_name,
|
|
22
|
-
TRIM(COALESCE(subsvc.sub_service_name, ''))::TEXT AS sub_service_name,
|
|
23
|
-
sa.approver_role_id AS approval_role_id,
|
|
24
|
-
TRIM(COALESCE(ar.name, ''))::TEXT AS approval_role_name,
|
|
25
|
-
sa.department_id AS approval_department_id,
|
|
26
|
-
TRIM(COALESCE(adpt.department_name, ''))::TEXT AS approval_department_name,
|
|
27
|
-
sa.section_id AS approval_section_id,
|
|
28
|
-
TRIM(COALESCE(asec.section_name, ''))::TEXT AS approval_section_name,
|
|
29
|
-
sa.approval_status::TEXT AS approval_status,
|
|
30
|
-
sr.status::TEXT AS request_status,
|
|
31
|
-
sa.level AS level,
|
|
32
|
-
sa.approver_user_id AS approver_user_id,
|
|
33
|
-
TRIM(COALESCE(au.employee_name, ''))::TEXT AS approver_user_name,
|
|
34
|
-
sa.delegate_user_id AS delegate_user_id,
|
|
35
|
-
TRIM(COALESCE(du.employee_name, ''))::TEXT AS delegate_user_name,
|
|
36
|
-
sa.approved_by AS approved_by,
|
|
37
|
-
TRIM(COALESCE(ab.employee_name, ''))::TEXT AS approved_by_name,
|
|
38
|
-
sa.comment::TEXT AS comment,
|
|
39
|
-
sa.created_at AS created_at,
|
|
40
|
-
sa.updated_at AS updated_at
|
|
41
|
-
FROM sla_approval sa
|
|
42
|
-
INNER JOIN sla_requests sr
|
|
43
|
-
ON sr.
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
14
|
+
const VW_SLA_APPROVALS_SQL = `
|
|
15
|
+
SELECT
|
|
16
|
+
sa.id AS sla_approval_id,
|
|
17
|
+
sa.source_approval_id,
|
|
18
|
+
sa.request_id,
|
|
19
|
+
sa.service_id AS service_id,
|
|
20
|
+
sa.sub_service_id AS sub_service_id,
|
|
21
|
+
TRIM(COALESCE(svc.name, ''))::TEXT AS service_name,
|
|
22
|
+
TRIM(COALESCE(subsvc.sub_service_name, ''))::TEXT AS sub_service_name,
|
|
23
|
+
sa.approver_role_id AS approval_role_id,
|
|
24
|
+
TRIM(COALESCE(ar.name, ''))::TEXT AS approval_role_name,
|
|
25
|
+
sa.department_id AS approval_department_id,
|
|
26
|
+
TRIM(COALESCE(adpt.department_name, ''))::TEXT AS approval_department_name,
|
|
27
|
+
sa.section_id AS approval_section_id,
|
|
28
|
+
TRIM(COALESCE(asec.section_name, ''))::TEXT AS approval_section_name,
|
|
29
|
+
sa.approval_status::TEXT AS approval_status,
|
|
30
|
+
sr.status::TEXT AS request_status,
|
|
31
|
+
sa.level AS level,
|
|
32
|
+
sa.approver_user_id AS approver_user_id,
|
|
33
|
+
TRIM(COALESCE(au.employee_name, ''))::TEXT AS approver_user_name,
|
|
34
|
+
sa.delegate_user_id AS delegate_user_id,
|
|
35
|
+
TRIM(COALESCE(du.employee_name, ''))::TEXT AS delegate_user_name,
|
|
36
|
+
sa.approved_by AS approved_by,
|
|
37
|
+
TRIM(COALESCE(ab.employee_name, ''))::TEXT AS approved_by_name,
|
|
38
|
+
sa.comment::TEXT AS comment,
|
|
39
|
+
sa.created_at AS created_at,
|
|
40
|
+
sa.updated_at AS updated_at
|
|
41
|
+
FROM sla_approval sa
|
|
42
|
+
INNER JOIN sla_requests sr
|
|
43
|
+
ON sr.id = (
|
|
44
|
+
SELECT MIN(sr2.id)
|
|
45
|
+
FROM sla_requests sr2
|
|
46
|
+
WHERE sr2.request_id = sa.request_id
|
|
47
|
+
AND COALESCE(sr2.is_deleted, false) = false
|
|
48
|
+
AND (sa.service_id IS NULL OR sr2.service_id = sa.service_id)
|
|
49
|
+
AND (sa.sub_service_id IS NULL OR sr2.sub_service_id = sa.sub_service_id)
|
|
50
|
+
)
|
|
51
|
+
LEFT JOIN caa_services svc
|
|
52
|
+
ON svc.id = sa.service_id AND COALESCE(svc.is_deleted, false) = false
|
|
53
|
+
LEFT JOIN caa_sub_services subsvc
|
|
54
|
+
ON subsvc.id = sa.sub_service_id AND COALESCE(subsvc.is_deleted, false) = false
|
|
55
|
+
LEFT JOIN departments adpt
|
|
56
|
+
ON adpt.id = sa.department_id AND COALESCE(adpt.is_deleted, false) = false
|
|
57
|
+
LEFT JOIN sections asec
|
|
58
|
+
ON asec.id = sa.section_id AND COALESCE(asec.is_deleted, false) = false
|
|
59
|
+
LEFT JOIN role ar
|
|
60
|
+
ON ar.id = sa.approver_role_id AND COALESCE(ar.is_deleted, false) = false
|
|
61
|
+
LEFT JOIN users au
|
|
62
|
+
ON au.id = sa.approver_user_id AND COALESCE(au.is_deleted, false) = false
|
|
63
|
+
LEFT JOIN users du
|
|
64
|
+
ON du.id = sa.delegate_user_id AND COALESCE(du.is_deleted, false) = false
|
|
65
|
+
LEFT JOIN users ab
|
|
66
|
+
ON ab.id = sa.approved_by AND COALESCE(ab.is_deleted, false) = false
|
|
67
|
+
WHERE COALESCE(sa.is_deleted, false) = false
|
|
61
68
|
`;
|
|
62
69
|
/**
|
|
63
70
|
* Read-only view for SLA approvals listings (TypeORM).
|
|
@@ -23,6 +23,9 @@ export declare class SlaMyRequestsView {
|
|
|
23
23
|
request_id: number;
|
|
24
24
|
/** Remaining `request_obj` keys after excluding workflow/common duplicates. */
|
|
25
25
|
request_fields: Record<string, unknown>;
|
|
26
|
+
req_user_arabicname: string;
|
|
27
|
+
req_user_department_arabicname: string;
|
|
28
|
+
req_user_section_arabicname: string;
|
|
26
29
|
}
|
|
27
30
|
/** Flatten view row: fixed columns plus each entry in `request_fields`. */
|
|
28
31
|
export declare function flattenSlaMyRequestsViewRow(row: SlaMyRequestsView): Record<string, unknown>;
|
|
@@ -73,8 +73,13 @@ SELECT
|
|
|
73
73
|
- 'is_deleted'
|
|
74
74
|
- 'sla_request'
|
|
75
75
|
- 'sla_request_id'
|
|
76
|
-
) AS request_fields
|
|
76
|
+
) AS request_fields,
|
|
77
|
+
TRIM(COALESCE(req_owner.employee_arabic_name, ''))::TEXT AS req_user_arabicname,
|
|
78
|
+
TRIM(COALESCE(dept.department_arabic_name, ''))::TEXT AS req_user_department_arabicname,
|
|
79
|
+
TRIM(COALESCE(sec.section_arabic_name, ''))::TEXT AS req_user_section_arabicname
|
|
77
80
|
FROM sla_requests sr
|
|
81
|
+
LEFT JOIN users req_owner
|
|
82
|
+
ON req_owner.id = sr.user_id AND COALESCE(req_owner.is_deleted, false) = false
|
|
78
83
|
LEFT JOIN users creator
|
|
79
84
|
ON creator.id = sr.created_by AND COALESCE(creator.is_deleted, false) = false
|
|
80
85
|
LEFT JOIN departments dept
|
|
@@ -147,6 +152,18 @@ __decorate([
|
|
|
147
152
|
(0, typeorm_1.ViewColumn)(),
|
|
148
153
|
__metadata("design:type", Object)
|
|
149
154
|
], SlaMyRequestsView.prototype, "request_fields", void 0);
|
|
155
|
+
__decorate([
|
|
156
|
+
(0, typeorm_1.ViewColumn)(),
|
|
157
|
+
__metadata("design:type", String)
|
|
158
|
+
], SlaMyRequestsView.prototype, "req_user_arabicname", void 0);
|
|
159
|
+
__decorate([
|
|
160
|
+
(0, typeorm_1.ViewColumn)(),
|
|
161
|
+
__metadata("design:type", String)
|
|
162
|
+
], SlaMyRequestsView.prototype, "req_user_department_arabicname", void 0);
|
|
163
|
+
__decorate([
|
|
164
|
+
(0, typeorm_1.ViewColumn)(),
|
|
165
|
+
__metadata("design:type", String)
|
|
166
|
+
], SlaMyRequestsView.prototype, "req_user_section_arabicname", void 0);
|
|
150
167
|
exports.SlaMyRequestsView = SlaMyRequestsView = __decorate([
|
|
151
168
|
(0, typeorm_1.ViewEntity)({
|
|
152
169
|
name: "vw_sla_my_requests",
|
|
@@ -155,7 +172,7 @@ exports.SlaMyRequestsView = SlaMyRequestsView = __decorate([
|
|
|
155
172
|
], SlaMyRequestsView);
|
|
156
173
|
/** Flatten view row: fixed columns plus each entry in `request_fields`. */
|
|
157
174
|
function flattenSlaMyRequestsViewRow(row) {
|
|
158
|
-
const { sla_request_id, user_id, service_id, sub_service_id, created_by, created_at, req_user_department_id, req_user_section_id, service_name, sub_service_name, status, request_id, request_fields, } = row;
|
|
175
|
+
const { sla_request_id, user_id, service_id, sub_service_id, created_by, created_at, req_user_department_id, req_user_section_id, req_user_arabicname, req_user_department_arabicname, req_user_section_arabicname, service_name, sub_service_name, status, request_id, request_fields, } = row;
|
|
159
176
|
return {
|
|
160
177
|
sla_request_id,
|
|
161
178
|
user_id,
|
|
@@ -165,6 +182,9 @@ function flattenSlaMyRequestsViewRow(row) {
|
|
|
165
182
|
created_at,
|
|
166
183
|
req_user_department_id,
|
|
167
184
|
req_user_section_id,
|
|
185
|
+
req_user_arabicname,
|
|
186
|
+
req_user_department_arabicname,
|
|
187
|
+
req_user_section_arabicname,
|
|
168
188
|
service_name,
|
|
169
189
|
sub_service_name,
|
|
170
190
|
status,
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare abstract class UUIDModel0 {
|
|
2
|
+
jsonIgnore: string[];
|
|
3
|
+
created_by?: string;
|
|
4
|
+
created_at?: Date;
|
|
5
|
+
updated_by?: string;
|
|
6
|
+
updated_at?: Date;
|
|
7
|
+
insertCreated(): void;
|
|
8
|
+
is_deleted?: boolean;
|
|
9
|
+
constructor();
|
|
10
|
+
}
|
|
11
|
+
export declare abstract class UUIDBaseModel extends UUIDModel0 {
|
|
12
|
+
id: string;
|
|
13
|
+
constructor();
|
|
14
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.UUIDBaseModel = exports.UUIDModel0 = void 0;
|
|
16
|
+
const moment_timezone_1 = __importDefault(require("moment-timezone"));
|
|
17
|
+
const typeorm_1 = require("typeorm");
|
|
18
|
+
class UUIDModel0 {
|
|
19
|
+
insertCreated() {
|
|
20
|
+
const currentTime = (0, moment_timezone_1.default)().utc().tz('Asia/Kolkata').toDate();
|
|
21
|
+
this.created_at = currentTime;
|
|
22
|
+
this.updated_at = currentTime;
|
|
23
|
+
}
|
|
24
|
+
constructor() {
|
|
25
|
+
this.jsonIgnore = ['logicalDelete', 'is_deleted', 'jsonIgnore'];
|
|
26
|
+
this.is_deleted = false;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
exports.UUIDModel0 = UUIDModel0;
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, typeorm_1.Column)({ type: 'uuid', nullable: true }),
|
|
32
|
+
__metadata("design:type", String)
|
|
33
|
+
], UUIDModel0.prototype, "created_by", void 0);
|
|
34
|
+
__decorate([
|
|
35
|
+
(0, typeorm_1.CreateDateColumn)({ type: "timestamptz", default: () => "CURRENT_TIMESTAMP" }),
|
|
36
|
+
__metadata("design:type", Date)
|
|
37
|
+
], UUIDModel0.prototype, "created_at", void 0);
|
|
38
|
+
__decorate([
|
|
39
|
+
(0, typeorm_1.Column)({ type: 'uuid', nullable: true }),
|
|
40
|
+
__metadata("design:type", String)
|
|
41
|
+
], UUIDModel0.prototype, "updated_by", void 0);
|
|
42
|
+
__decorate([
|
|
43
|
+
(0, typeorm_1.UpdateDateColumn)({ type: "timestamptz", default: () => "CURRENT_TIMESTAMP" }),
|
|
44
|
+
__metadata("design:type", Date)
|
|
45
|
+
], UUIDModel0.prototype, "updated_at", void 0);
|
|
46
|
+
__decorate([
|
|
47
|
+
(0, typeorm_1.BeforeInsert)(),
|
|
48
|
+
__metadata("design:type", Function),
|
|
49
|
+
__metadata("design:paramtypes", []),
|
|
50
|
+
__metadata("design:returntype", void 0)
|
|
51
|
+
], UUIDModel0.prototype, "insertCreated", null);
|
|
52
|
+
__decorate([
|
|
53
|
+
(0, typeorm_1.Column)({ nullable: true, default: false }),
|
|
54
|
+
__metadata("design:type", Boolean)
|
|
55
|
+
], UUIDModel0.prototype, "is_deleted", void 0);
|
|
56
|
+
class UUIDBaseModel extends UUIDModel0 {
|
|
57
|
+
constructor() {
|
|
58
|
+
super();
|
|
59
|
+
this.id = ''; // This will be set by the database when the entity is saved
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
exports.UUIDBaseModel = UUIDBaseModel;
|
|
63
|
+
__decorate([
|
|
64
|
+
(0, typeorm_1.PrimaryGeneratedColumn)('uuid'),
|
|
65
|
+
__metadata("design:type", String)
|
|
66
|
+
], UUIDBaseModel.prototype, "id", void 0);
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { BaseModel } from "./BaseModel";
|
|
2
|
+
export declare enum WorkingHoursExtensionRequestStatus {
|
|
3
|
+
Pending = "Pending",
|
|
4
|
+
Approved = "Approved",
|
|
5
|
+
Rejected = "Rejected",
|
|
6
|
+
RFC = "RFC"
|
|
7
|
+
}
|
|
8
|
+
export declare enum WorkingHoursExtensionWorkflowStatus {
|
|
9
|
+
Pending = "Pending",
|
|
10
|
+
InProgress = "In Progress",
|
|
11
|
+
Completed = "Completed",
|
|
12
|
+
Approved = "Approved",
|
|
13
|
+
Rejected = "Rejected"
|
|
14
|
+
}
|
|
15
|
+
export declare class WorkingHoursExtensionRequest extends BaseModel {
|
|
16
|
+
req_user_department_id: number | null;
|
|
17
|
+
req_user_section_id: number | null;
|
|
18
|
+
service_id: number | null;
|
|
19
|
+
sub_service_id: number | null;
|
|
20
|
+
user_id: number;
|
|
21
|
+
requested_extension_date: Date;
|
|
22
|
+
requested_start_time: string;
|
|
23
|
+
requested_end_time: string;
|
|
24
|
+
reason_for_extension: string;
|
|
25
|
+
room_or_area: string;
|
|
26
|
+
description: string | null;
|
|
27
|
+
status: string;
|
|
28
|
+
workflow_execution_id: string | null;
|
|
29
|
+
created_by: number;
|
|
30
|
+
}
|
|
31
|
+
export declare enum WorkingHoursExtensionApprovalStatus {
|
|
32
|
+
Pending = "Pending",
|
|
33
|
+
InProgress = "In Progress",
|
|
34
|
+
Approved = "Approved",
|
|
35
|
+
Rejected = "Rejected",
|
|
36
|
+
Reassigned = "Reassigned"
|
|
37
|
+
}
|
|
38
|
+
export declare class WorkingHoursExtensionApproval extends BaseModel {
|
|
39
|
+
request_id: number;
|
|
40
|
+
service_id: number | null;
|
|
41
|
+
sub_service_id: number | null;
|
|
42
|
+
level: number;
|
|
43
|
+
approver_user_id: number | null;
|
|
44
|
+
approver_role_id: number | null;
|
|
45
|
+
department_id: number | null;
|
|
46
|
+
section_id: number | null;
|
|
47
|
+
delegate_user_id: number | null;
|
|
48
|
+
comment: string;
|
|
49
|
+
approval_status: string;
|
|
50
|
+
}
|
|
51
|
+
export declare class WorkingHoursExtensionWorkflow extends BaseModel {
|
|
52
|
+
request_id: number;
|
|
53
|
+
service_id: number | null;
|
|
54
|
+
sub_service_id: number | null;
|
|
55
|
+
workflow_definition_id: number | null;
|
|
56
|
+
current_level: number | null;
|
|
57
|
+
content: string | null;
|
|
58
|
+
status: string;
|
|
59
|
+
step_order: number | null;
|
|
60
|
+
user_id: number | null;
|
|
61
|
+
role_id: number | null;
|
|
62
|
+
department_id: number | null;
|
|
63
|
+
section_id: number | null;
|
|
64
|
+
workflow_data: string | null;
|
|
65
|
+
created_by: number;
|
|
66
|
+
}
|
|
67
|
+
export declare class WorkingHoursExtensionChat extends BaseModel {
|
|
68
|
+
request_id: number;
|
|
69
|
+
service_id: number;
|
|
70
|
+
sub_service_id: number;
|
|
71
|
+
user_id: number;
|
|
72
|
+
approver_role_id: number | null;
|
|
73
|
+
message: string;
|
|
74
|
+
message_type: string;
|
|
75
|
+
status: string | null;
|
|
76
|
+
is_internal: boolean;
|
|
77
|
+
created_by: number;
|
|
78
|
+
}
|
|
79
|
+
export declare class WorkingHoursExtensionAttachment extends BaseModel {
|
|
80
|
+
request_id: number;
|
|
81
|
+
service_id: number;
|
|
82
|
+
sub_service_id: number;
|
|
83
|
+
file_name: string;
|
|
84
|
+
file_url: string;
|
|
85
|
+
file_type: string | null;
|
|
86
|
+
file_size: number | null;
|
|
87
|
+
created_by: number;
|
|
88
|
+
}
|
|
@@ -0,0 +1,295 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.WorkingHoursExtensionAttachment = exports.WorkingHoursExtensionChat = exports.WorkingHoursExtensionWorkflow = exports.WorkingHoursExtensionApproval = exports.WorkingHoursExtensionApprovalStatus = exports.WorkingHoursExtensionRequest = exports.WorkingHoursExtensionWorkflowStatus = exports.WorkingHoursExtensionRequestStatus = void 0;
|
|
13
|
+
const typeorm_1 = require("typeorm");
|
|
14
|
+
const BaseModel_1 = require("./BaseModel");
|
|
15
|
+
var WorkingHoursExtensionRequestStatus;
|
|
16
|
+
(function (WorkingHoursExtensionRequestStatus) {
|
|
17
|
+
WorkingHoursExtensionRequestStatus["Pending"] = "Pending";
|
|
18
|
+
WorkingHoursExtensionRequestStatus["Approved"] = "Approved";
|
|
19
|
+
WorkingHoursExtensionRequestStatus["Rejected"] = "Rejected";
|
|
20
|
+
WorkingHoursExtensionRequestStatus["RFC"] = "RFC";
|
|
21
|
+
})(WorkingHoursExtensionRequestStatus || (exports.WorkingHoursExtensionRequestStatus = WorkingHoursExtensionRequestStatus = {}));
|
|
22
|
+
var WorkingHoursExtensionWorkflowStatus;
|
|
23
|
+
(function (WorkingHoursExtensionWorkflowStatus) {
|
|
24
|
+
WorkingHoursExtensionWorkflowStatus["Pending"] = "Pending";
|
|
25
|
+
WorkingHoursExtensionWorkflowStatus["InProgress"] = "In Progress";
|
|
26
|
+
WorkingHoursExtensionWorkflowStatus["Completed"] = "Completed";
|
|
27
|
+
WorkingHoursExtensionWorkflowStatus["Approved"] = "Approved";
|
|
28
|
+
WorkingHoursExtensionWorkflowStatus["Rejected"] = "Rejected";
|
|
29
|
+
})(WorkingHoursExtensionWorkflowStatus || (exports.WorkingHoursExtensionWorkflowStatus = WorkingHoursExtensionWorkflowStatus = {}));
|
|
30
|
+
let WorkingHoursExtensionRequest = class WorkingHoursExtensionRequest extends BaseModel_1.BaseModel {
|
|
31
|
+
};
|
|
32
|
+
exports.WorkingHoursExtensionRequest = WorkingHoursExtensionRequest;
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
35
|
+
__metadata("design:type", Object)
|
|
36
|
+
], WorkingHoursExtensionRequest.prototype, "req_user_department_id", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
39
|
+
__metadata("design:type", Object)
|
|
40
|
+
], WorkingHoursExtensionRequest.prototype, "req_user_section_id", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
43
|
+
__metadata("design:type", Object)
|
|
44
|
+
], WorkingHoursExtensionRequest.prototype, "service_id", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
47
|
+
__metadata("design:type", Object)
|
|
48
|
+
], WorkingHoursExtensionRequest.prototype, "sub_service_id", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, typeorm_1.Column)({ type: "int", nullable: false }),
|
|
51
|
+
__metadata("design:type", Number)
|
|
52
|
+
], WorkingHoursExtensionRequest.prototype, "user_id", void 0);
|
|
53
|
+
__decorate([
|
|
54
|
+
(0, typeorm_1.Column)({ type: "date", nullable: false }),
|
|
55
|
+
__metadata("design:type", Date)
|
|
56
|
+
], WorkingHoursExtensionRequest.prototype, "requested_extension_date", void 0);
|
|
57
|
+
__decorate([
|
|
58
|
+
(0, typeorm_1.Column)({ type: "varchar", length: 20, nullable: false }),
|
|
59
|
+
__metadata("design:type", String)
|
|
60
|
+
], WorkingHoursExtensionRequest.prototype, "requested_start_time", void 0);
|
|
61
|
+
__decorate([
|
|
62
|
+
(0, typeorm_1.Column)({ type: "varchar", length: 20, nullable: false }),
|
|
63
|
+
__metadata("design:type", String)
|
|
64
|
+
], WorkingHoursExtensionRequest.prototype, "requested_end_time", void 0);
|
|
65
|
+
__decorate([
|
|
66
|
+
(0, typeorm_1.Column)({ type: "text", nullable: false }),
|
|
67
|
+
__metadata("design:type", String)
|
|
68
|
+
], WorkingHoursExtensionRequest.prototype, "reason_for_extension", void 0);
|
|
69
|
+
__decorate([
|
|
70
|
+
(0, typeorm_1.Column)({ type: "varchar", length: 255, nullable: false }),
|
|
71
|
+
__metadata("design:type", String)
|
|
72
|
+
], WorkingHoursExtensionRequest.prototype, "room_or_area", void 0);
|
|
73
|
+
__decorate([
|
|
74
|
+
(0, typeorm_1.Column)({ type: "text", nullable: true }),
|
|
75
|
+
__metadata("design:type", Object)
|
|
76
|
+
], WorkingHoursExtensionRequest.prototype, "description", void 0);
|
|
77
|
+
__decorate([
|
|
78
|
+
(0, typeorm_1.Column)({ type: "varchar", length: 50, nullable: false, default: WorkingHoursExtensionRequestStatus.Pending }),
|
|
79
|
+
__metadata("design:type", String)
|
|
80
|
+
], WorkingHoursExtensionRequest.prototype, "status", void 0);
|
|
81
|
+
__decorate([
|
|
82
|
+
(0, typeorm_1.Column)({ type: "varchar", length: 255, nullable: true }),
|
|
83
|
+
__metadata("design:type", Object)
|
|
84
|
+
], WorkingHoursExtensionRequest.prototype, "workflow_execution_id", void 0);
|
|
85
|
+
__decorate([
|
|
86
|
+
(0, typeorm_1.Column)({ type: "int", nullable: false }),
|
|
87
|
+
__metadata("design:type", Number)
|
|
88
|
+
], WorkingHoursExtensionRequest.prototype, "created_by", void 0);
|
|
89
|
+
exports.WorkingHoursExtensionRequest = WorkingHoursExtensionRequest = __decorate([
|
|
90
|
+
(0, typeorm_1.Entity)({ name: "working_hours_extension_requests" })
|
|
91
|
+
], WorkingHoursExtensionRequest);
|
|
92
|
+
var WorkingHoursExtensionApprovalStatus;
|
|
93
|
+
(function (WorkingHoursExtensionApprovalStatus) {
|
|
94
|
+
WorkingHoursExtensionApprovalStatus["Pending"] = "Pending";
|
|
95
|
+
WorkingHoursExtensionApprovalStatus["InProgress"] = "In Progress";
|
|
96
|
+
WorkingHoursExtensionApprovalStatus["Approved"] = "Approved";
|
|
97
|
+
WorkingHoursExtensionApprovalStatus["Rejected"] = "Rejected";
|
|
98
|
+
WorkingHoursExtensionApprovalStatus["Reassigned"] = "Reassigned";
|
|
99
|
+
})(WorkingHoursExtensionApprovalStatus || (exports.WorkingHoursExtensionApprovalStatus = WorkingHoursExtensionApprovalStatus = {}));
|
|
100
|
+
let WorkingHoursExtensionApproval = class WorkingHoursExtensionApproval extends BaseModel_1.BaseModel {
|
|
101
|
+
};
|
|
102
|
+
exports.WorkingHoursExtensionApproval = WorkingHoursExtensionApproval;
|
|
103
|
+
__decorate([
|
|
104
|
+
(0, typeorm_1.Column)({ type: "int", nullable: false }),
|
|
105
|
+
__metadata("design:type", Number)
|
|
106
|
+
], WorkingHoursExtensionApproval.prototype, "request_id", void 0);
|
|
107
|
+
__decorate([
|
|
108
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
109
|
+
__metadata("design:type", Object)
|
|
110
|
+
], WorkingHoursExtensionApproval.prototype, "service_id", void 0);
|
|
111
|
+
__decorate([
|
|
112
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
113
|
+
__metadata("design:type", Object)
|
|
114
|
+
], WorkingHoursExtensionApproval.prototype, "sub_service_id", void 0);
|
|
115
|
+
__decorate([
|
|
116
|
+
(0, typeorm_1.Column)({ type: "int", nullable: false }),
|
|
117
|
+
__metadata("design:type", Number)
|
|
118
|
+
], WorkingHoursExtensionApproval.prototype, "level", void 0);
|
|
119
|
+
__decorate([
|
|
120
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
121
|
+
__metadata("design:type", Object)
|
|
122
|
+
], WorkingHoursExtensionApproval.prototype, "approver_user_id", void 0);
|
|
123
|
+
__decorate([
|
|
124
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
125
|
+
__metadata("design:type", Object)
|
|
126
|
+
], WorkingHoursExtensionApproval.prototype, "approver_role_id", void 0);
|
|
127
|
+
__decorate([
|
|
128
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
129
|
+
__metadata("design:type", Object)
|
|
130
|
+
], WorkingHoursExtensionApproval.prototype, "department_id", void 0);
|
|
131
|
+
__decorate([
|
|
132
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
133
|
+
__metadata("design:type", Object)
|
|
134
|
+
], WorkingHoursExtensionApproval.prototype, "section_id", void 0);
|
|
135
|
+
__decorate([
|
|
136
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
137
|
+
__metadata("design:type", Object)
|
|
138
|
+
], WorkingHoursExtensionApproval.prototype, "delegate_user_id", void 0);
|
|
139
|
+
__decorate([
|
|
140
|
+
(0, typeorm_1.Column)({ type: "varchar", length: 255, nullable: true, default: "" }),
|
|
141
|
+
__metadata("design:type", String)
|
|
142
|
+
], WorkingHoursExtensionApproval.prototype, "comment", void 0);
|
|
143
|
+
__decorate([
|
|
144
|
+
(0, typeorm_1.Column)({ type: "varchar", length: 50, nullable: false, default: WorkingHoursExtensionApprovalStatus.Pending }),
|
|
145
|
+
__metadata("design:type", String)
|
|
146
|
+
], WorkingHoursExtensionApproval.prototype, "approval_status", void 0);
|
|
147
|
+
exports.WorkingHoursExtensionApproval = WorkingHoursExtensionApproval = __decorate([
|
|
148
|
+
(0, typeorm_1.Entity)({ name: "working_hours_extension_approvals" })
|
|
149
|
+
], WorkingHoursExtensionApproval);
|
|
150
|
+
let WorkingHoursExtensionWorkflow = class WorkingHoursExtensionWorkflow extends BaseModel_1.BaseModel {
|
|
151
|
+
};
|
|
152
|
+
exports.WorkingHoursExtensionWorkflow = WorkingHoursExtensionWorkflow;
|
|
153
|
+
__decorate([
|
|
154
|
+
(0, typeorm_1.Column)({ type: "int", nullable: false }),
|
|
155
|
+
__metadata("design:type", Number)
|
|
156
|
+
], WorkingHoursExtensionWorkflow.prototype, "request_id", void 0);
|
|
157
|
+
__decorate([
|
|
158
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
159
|
+
__metadata("design:type", Object)
|
|
160
|
+
], WorkingHoursExtensionWorkflow.prototype, "service_id", void 0);
|
|
161
|
+
__decorate([
|
|
162
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
163
|
+
__metadata("design:type", Object)
|
|
164
|
+
], WorkingHoursExtensionWorkflow.prototype, "sub_service_id", void 0);
|
|
165
|
+
__decorate([
|
|
166
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
167
|
+
__metadata("design:type", Object)
|
|
168
|
+
], WorkingHoursExtensionWorkflow.prototype, "workflow_definition_id", void 0);
|
|
169
|
+
__decorate([
|
|
170
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
171
|
+
__metadata("design:type", Object)
|
|
172
|
+
], WorkingHoursExtensionWorkflow.prototype, "current_level", void 0);
|
|
173
|
+
__decorate([
|
|
174
|
+
(0, typeorm_1.Column)({ type: "varchar", length: 500, nullable: true }),
|
|
175
|
+
__metadata("design:type", Object)
|
|
176
|
+
], WorkingHoursExtensionWorkflow.prototype, "content", void 0);
|
|
177
|
+
__decorate([
|
|
178
|
+
(0, typeorm_1.Column)({ type: "varchar", length: 50, nullable: false }),
|
|
179
|
+
__metadata("design:type", String)
|
|
180
|
+
], WorkingHoursExtensionWorkflow.prototype, "status", void 0);
|
|
181
|
+
__decorate([
|
|
182
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
183
|
+
__metadata("design:type", Object)
|
|
184
|
+
], WorkingHoursExtensionWorkflow.prototype, "step_order", void 0);
|
|
185
|
+
__decorate([
|
|
186
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
187
|
+
__metadata("design:type", Object)
|
|
188
|
+
], WorkingHoursExtensionWorkflow.prototype, "user_id", void 0);
|
|
189
|
+
__decorate([
|
|
190
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
191
|
+
__metadata("design:type", Object)
|
|
192
|
+
], WorkingHoursExtensionWorkflow.prototype, "role_id", void 0);
|
|
193
|
+
__decorate([
|
|
194
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
195
|
+
__metadata("design:type", Object)
|
|
196
|
+
], WorkingHoursExtensionWorkflow.prototype, "department_id", void 0);
|
|
197
|
+
__decorate([
|
|
198
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
199
|
+
__metadata("design:type", Object)
|
|
200
|
+
], WorkingHoursExtensionWorkflow.prototype, "section_id", void 0);
|
|
201
|
+
__decorate([
|
|
202
|
+
(0, typeorm_1.Column)({ type: "text", nullable: true }),
|
|
203
|
+
__metadata("design:type", Object)
|
|
204
|
+
], WorkingHoursExtensionWorkflow.prototype, "workflow_data", void 0);
|
|
205
|
+
__decorate([
|
|
206
|
+
(0, typeorm_1.Column)({ type: "int", nullable: false }),
|
|
207
|
+
__metadata("design:type", Number)
|
|
208
|
+
], WorkingHoursExtensionWorkflow.prototype, "created_by", void 0);
|
|
209
|
+
exports.WorkingHoursExtensionWorkflow = WorkingHoursExtensionWorkflow = __decorate([
|
|
210
|
+
(0, typeorm_1.Entity)({ name: "working_hours_extension_workflow" })
|
|
211
|
+
], WorkingHoursExtensionWorkflow);
|
|
212
|
+
let WorkingHoursExtensionChat = class WorkingHoursExtensionChat extends BaseModel_1.BaseModel {
|
|
213
|
+
};
|
|
214
|
+
exports.WorkingHoursExtensionChat = WorkingHoursExtensionChat;
|
|
215
|
+
__decorate([
|
|
216
|
+
(0, typeorm_1.Column)({ type: "int", nullable: false }),
|
|
217
|
+
__metadata("design:type", Number)
|
|
218
|
+
], WorkingHoursExtensionChat.prototype, "request_id", void 0);
|
|
219
|
+
__decorate([
|
|
220
|
+
(0, typeorm_1.Column)({ type: "int", nullable: false }),
|
|
221
|
+
__metadata("design:type", Number)
|
|
222
|
+
], WorkingHoursExtensionChat.prototype, "service_id", void 0);
|
|
223
|
+
__decorate([
|
|
224
|
+
(0, typeorm_1.Column)({ type: "int", nullable: false }),
|
|
225
|
+
__metadata("design:type", Number)
|
|
226
|
+
], WorkingHoursExtensionChat.prototype, "sub_service_id", void 0);
|
|
227
|
+
__decorate([
|
|
228
|
+
(0, typeorm_1.Column)({ type: "int", nullable: false }),
|
|
229
|
+
__metadata("design:type", Number)
|
|
230
|
+
], WorkingHoursExtensionChat.prototype, "user_id", void 0);
|
|
231
|
+
__decorate([
|
|
232
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
233
|
+
__metadata("design:type", Object)
|
|
234
|
+
], WorkingHoursExtensionChat.prototype, "approver_role_id", void 0);
|
|
235
|
+
__decorate([
|
|
236
|
+
(0, typeorm_1.Column)({ type: "text", nullable: false }),
|
|
237
|
+
__metadata("design:type", String)
|
|
238
|
+
], WorkingHoursExtensionChat.prototype, "message", void 0);
|
|
239
|
+
__decorate([
|
|
240
|
+
(0, typeorm_1.Column)({ type: "varchar", length: 50, nullable: false, default: "text" }),
|
|
241
|
+
__metadata("design:type", String)
|
|
242
|
+
], WorkingHoursExtensionChat.prototype, "message_type", void 0);
|
|
243
|
+
__decorate([
|
|
244
|
+
(0, typeorm_1.Column)({ type: "varchar", length: 50, nullable: true }),
|
|
245
|
+
__metadata("design:type", Object)
|
|
246
|
+
], WorkingHoursExtensionChat.prototype, "status", void 0);
|
|
247
|
+
__decorate([
|
|
248
|
+
(0, typeorm_1.Column)({ type: "boolean", nullable: false, default: false }),
|
|
249
|
+
__metadata("design:type", Boolean)
|
|
250
|
+
], WorkingHoursExtensionChat.prototype, "is_internal", void 0);
|
|
251
|
+
__decorate([
|
|
252
|
+
(0, typeorm_1.Column)({ type: "int", nullable: false }),
|
|
253
|
+
__metadata("design:type", Number)
|
|
254
|
+
], WorkingHoursExtensionChat.prototype, "created_by", void 0);
|
|
255
|
+
exports.WorkingHoursExtensionChat = WorkingHoursExtensionChat = __decorate([
|
|
256
|
+
(0, typeorm_1.Entity)({ name: "working_hours_extension_chat" })
|
|
257
|
+
], WorkingHoursExtensionChat);
|
|
258
|
+
let WorkingHoursExtensionAttachment = class WorkingHoursExtensionAttachment extends BaseModel_1.BaseModel {
|
|
259
|
+
};
|
|
260
|
+
exports.WorkingHoursExtensionAttachment = WorkingHoursExtensionAttachment;
|
|
261
|
+
__decorate([
|
|
262
|
+
(0, typeorm_1.Column)({ type: "int", nullable: false }),
|
|
263
|
+
__metadata("design:type", Number)
|
|
264
|
+
], WorkingHoursExtensionAttachment.prototype, "request_id", void 0);
|
|
265
|
+
__decorate([
|
|
266
|
+
(0, typeorm_1.Column)({ type: "int", nullable: false }),
|
|
267
|
+
__metadata("design:type", Number)
|
|
268
|
+
], WorkingHoursExtensionAttachment.prototype, "service_id", void 0);
|
|
269
|
+
__decorate([
|
|
270
|
+
(0, typeorm_1.Column)({ type: "int", nullable: false }),
|
|
271
|
+
__metadata("design:type", Number)
|
|
272
|
+
], WorkingHoursExtensionAttachment.prototype, "sub_service_id", void 0);
|
|
273
|
+
__decorate([
|
|
274
|
+
(0, typeorm_1.Column)({ type: "varchar", length: 255, nullable: false }),
|
|
275
|
+
__metadata("design:type", String)
|
|
276
|
+
], WorkingHoursExtensionAttachment.prototype, "file_name", void 0);
|
|
277
|
+
__decorate([
|
|
278
|
+
(0, typeorm_1.Column)({ type: "text", nullable: false }),
|
|
279
|
+
__metadata("design:type", String)
|
|
280
|
+
], WorkingHoursExtensionAttachment.prototype, "file_url", void 0);
|
|
281
|
+
__decorate([
|
|
282
|
+
(0, typeorm_1.Column)({ type: "varchar", length: 120, nullable: true }),
|
|
283
|
+
__metadata("design:type", Object)
|
|
284
|
+
], WorkingHoursExtensionAttachment.prototype, "file_type", void 0);
|
|
285
|
+
__decorate([
|
|
286
|
+
(0, typeorm_1.Column)({ type: "int", nullable: true }),
|
|
287
|
+
__metadata("design:type", Object)
|
|
288
|
+
], WorkingHoursExtensionAttachment.prototype, "file_size", void 0);
|
|
289
|
+
__decorate([
|
|
290
|
+
(0, typeorm_1.Column)({ type: "int", nullable: false }),
|
|
291
|
+
__metadata("design:type", Number)
|
|
292
|
+
], WorkingHoursExtensionAttachment.prototype, "created_by", void 0);
|
|
293
|
+
exports.WorkingHoursExtensionAttachment = WorkingHoursExtensionAttachment = __decorate([
|
|
294
|
+
(0, typeorm_1.Entity)({ name: "working_hours_extension_attachments" })
|
|
295
|
+
], WorkingHoursExtensionAttachment);
|