@platform-modules/foreign-ministry 1.2.22 → 1.2.24

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.
Files changed (61) hide show
  1. package/.env +1 -1
  2. package/dist/models/MissionTravelApprovalModel.d.ts +25 -0
  3. package/dist/models/MissionTravelApprovalModel.js +106 -0
  4. package/dist/models/MissionTravelAttachmentModel.d.ts +13 -0
  5. package/dist/models/MissionTravelAttachmentModel.js +69 -0
  6. package/dist/models/MissionTravelChatModel.d.ts +12 -0
  7. package/dist/models/MissionTravelChatModel.js +64 -0
  8. package/dist/models/MissionTravelClassConfigModel.d.ts +10 -0
  9. package/dist/models/MissionTravelClassConfigModel.js +50 -0
  10. package/dist/models/MissionTravelCostModel.d.ts +14 -0
  11. package/dist/models/MissionTravelCostModel.js +74 -0
  12. package/dist/models/MissionTravelPerdiemModel.d.ts +10 -0
  13. package/dist/models/MissionTravelPerdiemModel.js +54 -0
  14. package/dist/models/MissionTravelPersonModel.d.ts +26 -0
  15. package/dist/models/MissionTravelPersonModel.js +115 -0
  16. package/dist/models/MissionTravelRequestModel.d.ts +36 -0
  17. package/dist/models/MissionTravelRequestModel.js +118 -0
  18. package/dist/models/MissionTravelWorkflowModel.d.ts +19 -0
  19. package/dist/models/MissionTravelWorkflowModel.js +80 -0
  20. package/package.json +1 -1
  21. package/src/models/DiplomaticClubSubscriptionMasterModel.ts +26 -26
  22. package/src/models/DiplomaticRequestsModel.ts +154 -154
  23. package/src/models/LeaveConfigModel.ts +71 -71
  24. package/src/models/MissionTravelApprovalModel.ts +94 -0
  25. package/src/models/MissionTravelAttachmentModel.ts +56 -0
  26. package/src/models/MissionTravelChatModel.ts +52 -0
  27. package/src/models/MissionTravelPersonModel.ts +105 -0
  28. package/src/models/MissionTravelRequestModel.ts +107 -0
  29. package/src/models/MissionTravelWorkflowModel.ts +55 -0
  30. package/dist/models/DiplomaticClubCardApprovalModel.d.ts +0 -16
  31. package/dist/models/DiplomaticClubCardApprovalModel.js +0 -58
  32. package/dist/models/DiplomaticClubCardAttachmentModel.d.ts +0 -9
  33. package/dist/models/DiplomaticClubCardAttachmentModel.js +0 -44
  34. package/dist/models/DiplomaticClubCardChatModel.d.ts +0 -7
  35. package/dist/models/DiplomaticClubCardChatModel.js +0 -36
  36. package/dist/models/DiplomaticClubCardMemberModel.d.ts +0 -13
  37. package/dist/models/DiplomaticClubCardMemberModel.js +0 -60
  38. package/dist/models/DiplomaticClubCardRequestModel.d.ts +0 -33
  39. package/dist/models/DiplomaticClubCardRequestModel.js +0 -98
  40. package/dist/models/DiplomaticClubCardWorkFlowModel.d.ts +0 -12
  41. package/dist/models/DiplomaticClubCardWorkFlowModel.js +0 -42
  42. package/dist/models/DiplomaticServiceDetailsModel.d.ts +0 -20
  43. package/dist/models/DiplomaticServiceDetailsModel.js +0 -65
  44. package/dist/models/DiplomaticSettingsModel.d.ts +0 -11
  45. package/dist/models/DiplomaticSettingsModel.js +0 -59
  46. package/dist/models/DiplomaticTitleModel.d.ts +0 -12
  47. package/dist/models/DiplomaticTitleModel.js +0 -45
  48. package/dist/models/PassportRequestApprovalModel.d.ts +0 -22
  49. package/dist/models/PassportRequestApprovalModel.js +0 -91
  50. package/dist/models/PassportRequestAttachmentModel.d.ts +0 -10
  51. package/dist/models/PassportRequestAttachmentModel.js +0 -54
  52. package/dist/models/PassportRequestChatModel.d.ts +0 -8
  53. package/dist/models/PassportRequestChatModel.js +0 -44
  54. package/dist/models/PassportRequestDependentModel.d.ts +0 -20
  55. package/dist/models/PassportRequestDependentModel.js +0 -85
  56. package/dist/models/PassportRequestModel.d.ts +0 -40
  57. package/dist/models/PassportRequestModel.js +0 -128
  58. package/dist/models/PassportRequestWorkFlowModel.d.ts +0 -15
  59. package/dist/models/PassportRequestWorkFlowModel.js +0 -60
  60. package/dist/models/SubscriptionAmountModel.d.ts +0 -67
  61. package/dist/models/SubscriptionAmountModel.js +0 -114
@@ -1,154 +1,154 @@
1
- import { Column, Entity, OneToOne, OneToMany, ManyToOne, JoinColumn } from "typeorm";
2
- import { BaseModel } from './BaseModel';
3
-
4
- // Import types only (not for runtime)
5
- import type { DiplomaticApprovals } from './DiplomaticApprovalsModel';
6
- import type { DiplomaticWorkFlow } from './DiplomaticWorkFlowModel';
7
- import type { DiplomaticAttachments } from './DiplomaticAttachmentsModel';
8
- import type { DiplomaticChats } from './DiplomaticChatsModel';
9
- import type { DiplomaticClubCardMembers } from './DiplomaticClubCardMembersModel';
10
-
11
- export enum DiplomaticRequestStatus {
12
- DRAFT = "Draft",
13
- SUBMITTED = "Submitted",
14
- PENDING = "Pending",
15
- IN_PROGRESS = "In Progress",
16
- APPROVED = "Approved",
17
- REJECTED = "Rejected",
18
- COMPLETED = "Completed",
19
- CANCELLED = "Cancelled"
20
- }
21
-
22
- @Entity({ name: 'diplomatic_requests' })
23
- export class DiplomaticRequests extends BaseModel {
24
- @Column({ type: 'int' })
25
- user_id: number;
26
-
27
- @Column({ type: 'varchar', length: 100 })
28
- employee_id: string;
29
-
30
- @Column({ type: 'varchar', length: 255 })
31
- employee_name: string;
32
-
33
- @Column({ type: 'varchar', length: 100, nullable: true })
34
- grade: string | null;
35
-
36
- @Column({ type: 'int', nullable: true })
37
- designation_id: number | null;
38
-
39
- @Column({ type: 'int', nullable: true })
40
- department_id: number | null;
41
-
42
- @Column({ type: 'varchar', length: 255 })
43
- email_address: string;
44
-
45
- @Column({ type: 'varchar', length: 20 })
46
- contact_number: string;
47
-
48
- @Column({ type: 'timestamp', default: () => 'CURRENT_TIMESTAMP' })
49
- request_date: Date;
50
-
51
- @Column({ type: 'enum', enum: DiplomaticRequestStatus, default: DiplomaticRequestStatus.PENDING })
52
- request_status: DiplomaticRequestStatus;
53
-
54
- @Column({ type: 'timestamp', nullable: true })
55
- request_close_date: Date | null;
56
-
57
- @Column({ type: 'date', nullable: true })
58
- end_date: Date | null;
59
-
60
- @Column({ type: 'text', nullable: true })
61
- remarks: string | null;
62
-
63
- @Column({ type: 'int', nullable: true })
64
- current_approval_level: number | null;
65
-
66
- @Column({ type: 'int', nullable: true })
67
- current_approver_id: number | null;
68
-
69
- @Column({ type: 'int', nullable: true })
70
- service_id: number | null;
71
-
72
- @Column({ type: 'int', nullable: true })
73
- sub_service_id: number | null;
74
-
75
- @Column({ type: 'varchar', length: 255, nullable: true })
76
- member_name: string | null;
77
-
78
- @Column({ type: 'varchar', length: 100, nullable: true })
79
- membership_type: string | null;
80
-
81
- @Column({ type: 'int', nullable: true })
82
- diplomatic_title_id: number | null;
83
-
84
- @Column({ type: 'varchar', length: 255, nullable: true })
85
- location: string | null;
86
-
87
- @Column({ type: 'varchar', length: 100, nullable: true })
88
- request_type: string | null;
89
-
90
- @Column({ type: 'date', nullable: true })
91
- expiry_date: Date | null;
92
-
93
- @Column({ type: 'varchar', length: 500, nullable: true })
94
- photo_url: string | null;
95
-
96
- @Column({ type: 'varchar', length: 100, nullable: true })
97
- membership_id: string | null;
98
-
99
- @Column({ type: 'varchar', length: 255, nullable: true })
100
- organization: string | null;
101
-
102
- @Column({ type: 'decimal', precision: 10, scale: 2, nullable: true })
103
- subscription_amount: number | null;
104
-
105
- @Column({ type: 'int', nullable: true })
106
- section_id: number | null;
107
-
108
- @Column({ type: 'int', nullable: true })
109
- reporting_manager: number | null;
110
-
111
- @Column({ type: 'varchar', length: 255, nullable: true })
112
- workflow_execution_id: string | null;
113
-
114
- @OneToMany('DiplomaticClubCardMembers', 'diplomaticRequest', { nullable: true })
115
- diplomaticClubCardMembers?: DiplomaticClubCardMembers[];
116
-
117
- @OneToMany('DiplomaticApprovals', 'diplomaticRequest')
118
- approvals?: DiplomaticApprovals[];
119
-
120
- @OneToMany('DiplomaticWorkFlow', 'diplomaticRequest')
121
- workflows?: DiplomaticWorkFlow[];
122
-
123
- @OneToMany('DiplomaticAttachments', 'diplomaticRequest')
124
- attachments?: DiplomaticAttachments[];
125
-
126
- @OneToMany('DiplomaticChats', 'diplomaticRequest')
127
- chats?: DiplomaticChats[];
128
-
129
- constructor(
130
- user_id: number,
131
- employee_id: string,
132
- employee_name: string,
133
- email_address: string,
134
- contact_number: string,
135
- service_id: number | null,
136
- sub_service_id: number | null,
137
- section_id: number | null,
138
- reporting_manager: number | null
139
- ) {
140
- super();
141
- this.user_id = user_id;
142
- this.employee_id = employee_id;
143
- this.employee_name = employee_name;
144
- this.email_address = email_address;
145
- this.contact_number = contact_number;
146
- this.request_date = new Date();
147
- this.request_status = DiplomaticRequestStatus.PENDING;
148
- this.service_id = service_id;
149
- this.sub_service_id = sub_service_id;
150
- this.section_id = section_id;
151
- this.reporting_manager = reporting_manager;
152
- }
153
- }
154
-
1
+ import { Column, Entity, OneToOne, OneToMany, ManyToOne, JoinColumn } from "typeorm";
2
+ import { BaseModel } from './BaseModel';
3
+
4
+ // Import types only (not for runtime)
5
+ import type { DiplomaticApprovals } from './DiplomaticApprovalsModel';
6
+ import type { DiplomaticWorkFlow } from './DiplomaticWorkFlowModel';
7
+ import type { DiplomaticAttachments } from './DiplomaticAttachmentsModel';
8
+ import type { DiplomaticChats } from './DiplomaticChatsModel';
9
+ import type { DiplomaticClubCardMembers } from './DiplomaticClubCardMembersModel';
10
+
11
+ export enum DiplomaticRequestStatus {
12
+ DRAFT = "Draft",
13
+ SUBMITTED = "Submitted",
14
+ PENDING = "Pending",
15
+ IN_PROGRESS = "In Progress",
16
+ APPROVED = "Approved",
17
+ REJECTED = "Rejected",
18
+ COMPLETED = "Completed",
19
+ CANCELLED = "Cancelled"
20
+ }
21
+
22
+ @Entity({ name: 'diplomatic_requests' })
23
+ export class DiplomaticRequests extends BaseModel {
24
+ @Column({ type: 'int' })
25
+ user_id: number;
26
+
27
+ @Column({ type: 'varchar', length: 100 })
28
+ employee_id: string;
29
+
30
+ @Column({ type: 'varchar', length: 255 })
31
+ employee_name: string;
32
+
33
+ @Column({ type: 'varchar', length: 100, nullable: true })
34
+ grade: string | null;
35
+
36
+ @Column({ type: 'int', nullable: true })
37
+ designation_id: number | null;
38
+
39
+ @Column({ type: 'int', nullable: true })
40
+ department_id: number | null;
41
+
42
+ @Column({ type: 'varchar', length: 255 })
43
+ email_address: string;
44
+
45
+ @Column({ type: 'varchar', length: 20 })
46
+ contact_number: string;
47
+
48
+ @Column({ type: 'timestamp', default: () => 'CURRENT_TIMESTAMP' })
49
+ request_date: Date;
50
+
51
+ @Column({ type: 'enum', enum: DiplomaticRequestStatus, default: DiplomaticRequestStatus.PENDING })
52
+ request_status: DiplomaticRequestStatus;
53
+
54
+ @Column({ type: 'timestamp', nullable: true })
55
+ request_close_date: Date | null;
56
+
57
+ @Column({ type: 'date', nullable: true })
58
+ end_date: Date | null;
59
+
60
+ @Column({ type: 'text', nullable: true })
61
+ remarks: string | null;
62
+
63
+ @Column({ type: 'int', nullable: true })
64
+ current_approval_level: number | null;
65
+
66
+ @Column({ type: 'int', nullable: true })
67
+ current_approver_id: number | null;
68
+
69
+ @Column({ type: 'int', nullable: true })
70
+ service_id: number | null;
71
+
72
+ @Column({ type: 'int', nullable: true })
73
+ sub_service_id: number | null;
74
+
75
+ @Column({ type: 'varchar', length: 255, nullable: true })
76
+ member_name: string | null;
77
+
78
+ @Column({ type: 'varchar', length: 100, nullable: true })
79
+ membership_type: string | null;
80
+
81
+ @Column({ type: 'int', nullable: true })
82
+ diplomatic_title_id: number | null;
83
+
84
+ @Column({ type: 'varchar', length: 255, nullable: true })
85
+ location: string | null;
86
+
87
+ @Column({ type: 'varchar', length: 100, nullable: true })
88
+ request_type: string | null;
89
+
90
+ @Column({ type: 'date', nullable: true })
91
+ expiry_date: Date | null;
92
+
93
+ @Column({ type: 'varchar', length: 500, nullable: true })
94
+ photo_url: string | null;
95
+
96
+ @Column({ type: 'varchar', length: 100, nullable: true })
97
+ membership_id: string | null;
98
+
99
+ @Column({ type: 'varchar', length: 255, nullable: true })
100
+ organization: string | null;
101
+
102
+ @Column({ type: 'decimal', precision: 10, scale: 2, nullable: true })
103
+ subscription_amount: number | null;
104
+
105
+ @Column({ type: 'int', nullable: true })
106
+ section_id: number | null;
107
+
108
+ @Column({ type: 'int', nullable: true })
109
+ reporting_manager: number | null;
110
+
111
+ @Column({ type: 'varchar', length: 255, nullable: true })
112
+ workflow_execution_id: string | null;
113
+
114
+ @OneToMany('DiplomaticClubCardMembers', 'diplomaticRequest', { nullable: true })
115
+ diplomaticClubCardMembers?: DiplomaticClubCardMembers[];
116
+
117
+ @OneToMany('DiplomaticApprovals', 'diplomaticRequest')
118
+ approvals?: DiplomaticApprovals[];
119
+
120
+ @OneToMany('DiplomaticWorkFlow', 'diplomaticRequest')
121
+ workflows?: DiplomaticWorkFlow[];
122
+
123
+ @OneToMany('DiplomaticAttachments', 'diplomaticRequest')
124
+ attachments?: DiplomaticAttachments[];
125
+
126
+ @OneToMany('DiplomaticChats', 'diplomaticRequest')
127
+ chats?: DiplomaticChats[];
128
+
129
+ constructor(
130
+ user_id: number,
131
+ employee_id: string,
132
+ employee_name: string,
133
+ email_address: string,
134
+ contact_number: string,
135
+ service_id: number | null,
136
+ sub_service_id: number | null,
137
+ section_id: number | null,
138
+ reporting_manager: number | null
139
+ ) {
140
+ super();
141
+ this.user_id = user_id;
142
+ this.employee_id = employee_id;
143
+ this.employee_name = employee_name;
144
+ this.email_address = email_address;
145
+ this.contact_number = contact_number;
146
+ this.request_date = new Date();
147
+ this.request_status = DiplomaticRequestStatus.PENDING;
148
+ this.service_id = service_id;
149
+ this.sub_service_id = sub_service_id;
150
+ this.section_id = section_id;
151
+ this.reporting_manager = reporting_manager;
152
+ }
153
+ }
154
+
@@ -1,72 +1,72 @@
1
- import { Column, Entity } from "typeorm";
2
- import { BaseModel } from './BaseModel';
3
-
4
- export enum enumFrequency {
5
- Monthly = 'Monthly',
6
- Yearly = 'Yearly',
7
- }
8
-
9
- //This model is used to store the Financial Grade declaration on the Admin Side
10
- @Entity({ name: 'leave_configuration' })
11
- export class LeaveConfiguration extends BaseModel {
12
-
13
- @Column({ type: 'varchar', nullable: true })
14
- category: string;
15
-
16
- @Column({ type: 'int', nullable: true })
17
- MandC_id: number;
18
-
19
- @Column({ type: 'int', nullable: true })
20
- leave_type_id: number;
21
-
22
- @Column({ type: 'varchar', nullable: true })
23
- frequency: enumFrequency;
24
-
25
- @Column({ type: 'varchar', nullable: true })
26
- region: string;
27
-
28
- @Column({ type: 'varchar', nullable: true })
29
- country: string;
30
-
31
- @Column({ type: 'varchar', nullable: true })
32
- location: string;
33
-
34
- @Column({ nullable: true, default: false })
35
- is_carryforward: boolean;
36
-
37
- @Column({ type: 'int', nullable: true, default: 0 })
38
- carryforward_limit: number;
39
-
40
- @Column({ type: 'date', nullable: true })
41
- from_date: Date;
42
-
43
- @Column({ type: 'date', nullable: true })
44
- to_date: Date;
45
-
46
- @Column({ type: 'varchar', nullable: true })
47
- reason: string;
48
-
49
- @Column({ type: 'int', nullable: true })
50
- emergency_balance_days: number | null;
51
-
52
- @Column({ type: 'date', nullable: true })
53
- last_credited: Date | null;
54
-
55
- constructor(category: string, MandC_id: number, leave_type_id: number, frequency: enumFrequency, region: string, country: string, location: string, is_carryforward: boolean, carryforward_limit: number, from_date: Date, to_date: Date, reason: string, emergency_balance_days?: number|null, last_credited?: Date|null) {
56
- super();
57
- this.category = category;
58
- this.MandC_id = MandC_id;
59
- this.leave_type_id = leave_type_id;
60
- this.frequency = frequency;
61
- this.region = region;
62
- this.country = country;
63
- this.location = location;
64
- this.is_carryforward = is_carryforward;
65
- this.carryforward_limit = carryforward_limit;
66
- this.from_date = from_date;
67
- this.to_date = to_date;
68
- this.reason = reason;
69
- this.emergency_balance_days = emergency_balance_days ?? null;
70
- this.last_credited = last_credited ?? null;
71
- }
1
+ import { Column, Entity } from "typeorm";
2
+ import { BaseModel } from './BaseModel';
3
+
4
+ export enum enumFrequency {
5
+ Monthly = 'Monthly',
6
+ Yearly = 'Yearly',
7
+ }
8
+
9
+ //This model is used to store the Financial Grade declaration on the Admin Side
10
+ @Entity({ name: 'leave_configuration' })
11
+ export class LeaveConfiguration extends BaseModel {
12
+
13
+ @Column({ type: 'varchar', nullable: true })
14
+ category: string;
15
+
16
+ @Column({ type: 'int', nullable: true })
17
+ MandC_id: number;
18
+
19
+ @Column({ type: 'int', nullable: true })
20
+ leave_type_id: number;
21
+
22
+ @Column({ type: 'varchar', nullable: true })
23
+ frequency: enumFrequency;
24
+
25
+ @Column({ type: 'varchar', nullable: true })
26
+ region: string;
27
+
28
+ @Column({ type: 'varchar', nullable: true })
29
+ country: string;
30
+
31
+ @Column({ type: 'varchar', nullable: true })
32
+ location: string;
33
+
34
+ @Column({ nullable: true, default: false })
35
+ is_carryforward: boolean;
36
+
37
+ @Column({ type: 'int', nullable: true, default: 0 })
38
+ carryforward_limit: number;
39
+
40
+ @Column({ type: 'date', nullable: true })
41
+ from_date: Date;
42
+
43
+ @Column({ type: 'date', nullable: true })
44
+ to_date: Date;
45
+
46
+ @Column({ type: 'varchar', nullable: true })
47
+ reason: string;
48
+
49
+ @Column({ type: 'int', nullable: true })
50
+ emergency_balance_days: number | null;
51
+
52
+ @Column({ type: 'date', nullable: true })
53
+ last_credited: Date | null;
54
+
55
+ constructor(category: string, MandC_id: number, leave_type_id: number, frequency: enumFrequency, region: string, country: string, location: string, is_carryforward: boolean, carryforward_limit: number, from_date: Date, to_date: Date, reason: string, emergency_balance_days?: number|null, last_credited?: Date|null) {
56
+ super();
57
+ this.category = category;
58
+ this.MandC_id = MandC_id;
59
+ this.leave_type_id = leave_type_id;
60
+ this.frequency = frequency;
61
+ this.region = region;
62
+ this.country = country;
63
+ this.location = location;
64
+ this.is_carryforward = is_carryforward;
65
+ this.carryforward_limit = carryforward_limit;
66
+ this.from_date = from_date;
67
+ this.to_date = to_date;
68
+ this.reason = reason;
69
+ this.emergency_balance_days = emergency_balance_days ?? null;
70
+ this.last_credited = last_credited ?? null;
71
+ }
72
72
  }
@@ -0,0 +1,94 @@
1
+ import { Column, Entity } from "typeorm";
2
+ import { BaseModel } from './BaseModel';
3
+
4
+ export enum MissionTravelApprovalStatus {
5
+ PENDING = "Pending",
6
+ APPROVED = "Approved",
7
+ REJECTED = "Rejected",
8
+ RFC = "RFC" // Request for Change
9
+ }
10
+
11
+ @Entity({ name: 'mission_travel_approvals' })
12
+ export class MissionTravelApprovalDetails extends BaseModel {
13
+ @Column({ type: 'integer', nullable: false })
14
+ request_id: number;
15
+
16
+ @Column({ type: 'integer', nullable: true })
17
+ service_id: number | null;
18
+
19
+ @Column({ type: 'integer', nullable: true })
20
+ sub_service_id: number | null;
21
+
22
+ @Column({ type: 'integer', nullable: false })
23
+ level: number;
24
+
25
+ @Column({ type: 'integer', nullable: true })
26
+ approver_role_id: number;
27
+
28
+ @Column({ type: 'integer', nullable: true })
29
+ department_id: number | null;
30
+
31
+ @Column({ type: 'integer', nullable: true })
32
+ section_id: number | null;
33
+
34
+ @Column({ type: 'integer', nullable: true })
35
+ approver_user_id: number | null;
36
+
37
+ @Column({ type: 'integer', nullable: true })
38
+ delegate_user_id: number | null;
39
+
40
+ @Column({ type: 'integer', nullable: true })
41
+ approved_by: number | null;
42
+
43
+ @Column({ type: 'varchar', length: 500, nullable: true, default: '' })
44
+ comment: string;
45
+
46
+ @Column({ type: 'enum', enum: MissionTravelApprovalStatus, default: MissionTravelApprovalStatus.PENDING, nullable: false })
47
+ approval_status: MissionTravelApprovalStatus;
48
+
49
+ @Column({ type: 'boolean', default: true, nullable: false })
50
+ is_allowed: boolean;
51
+
52
+ @Column({ type: 'boolean', default: false, nullable: false })
53
+ is_reassign: boolean;
54
+
55
+ @Column({ type: 'boolean', default: true, nullable: false })
56
+ is_approval: boolean;
57
+
58
+ constructor(
59
+ request_id: number,
60
+ service_id: number | null,
61
+ sub_service_id: number | null,
62
+ level: number,
63
+ approver_role_id: number,
64
+ department_id: number | null,
65
+ section_id: number | null,
66
+ approver_user_id: number | null,
67
+ delegate_user_id: number | null,
68
+ approved_by: number | null,
69
+ comment: string,
70
+ approval_status: MissionTravelApprovalStatus,
71
+ is_allowed: boolean,
72
+ is_reassign: boolean,
73
+ is_approval: boolean
74
+ ) {
75
+ super();
76
+ this.request_id = request_id;
77
+ this.service_id = service_id;
78
+ this.sub_service_id = sub_service_id;
79
+ this.level = level;
80
+ this.approver_role_id = approver_role_id;
81
+ this.department_id = department_id;
82
+ this.section_id = section_id;
83
+ this.approver_user_id = approver_user_id;
84
+ this.delegate_user_id = delegate_user_id;
85
+ this.approved_by = approved_by;
86
+ this.comment = comment;
87
+ this.approval_status = approval_status;
88
+ this.is_allowed = is_allowed;
89
+ this.is_reassign = is_reassign;
90
+ this.is_approval = is_approval;
91
+ }
92
+ }
93
+
94
+
@@ -0,0 +1,56 @@
1
+ import { Column, Entity } from "typeorm";
2
+ import { BaseModel } from './BaseModel';
3
+
4
+ @Entity({ name: 'mission_travel_attachments' })
5
+ export class MissionTravelRequestAttachment extends BaseModel {
6
+ @Column({ type: 'integer', nullable: false })
7
+ request_id: number;
8
+
9
+ @Column({ type: 'integer', nullable: true })
10
+ service_id: number | null;
11
+
12
+ @Column({ type: 'integer', nullable: true })
13
+ sub_service_id: number | null;
14
+
15
+ @Column({ type: 'integer', nullable: false })
16
+ uploaded_by: number;
17
+
18
+ @Column({ type: 'varchar', length: 500, nullable: false })
19
+ file_url: string;
20
+
21
+ @Column({ type: 'varchar', length: 255, nullable: true })
22
+ file_name: string;
23
+
24
+ @Column({ type: 'varchar', length: 100, nullable: true })
25
+ file_type: string;
26
+
27
+ @Column({ type: 'bigint', nullable: true })
28
+ file_size: number | null;
29
+
30
+ @Column({ type: 'text', nullable: true })
31
+ description: string;
32
+
33
+ constructor(
34
+ request_id: number,
35
+ uploaded_by: number,
36
+ file_url: string,
37
+ file_name?: string,
38
+ file_type?: string,
39
+ file_size?: number,
40
+ description?: string,
41
+ service_id?: number | null,
42
+ sub_service_id?: number | null
43
+ ) {
44
+ super();
45
+ this.request_id = request_id;
46
+ this.uploaded_by = uploaded_by;
47
+ this.file_url = file_url;
48
+ this.file_name = file_name || '';
49
+ this.file_type = file_type || '';
50
+ this.file_size = file_size || null;
51
+ this.description = description || '';
52
+ this.service_id = service_id ?? null;
53
+ this.sub_service_id = sub_service_id ?? null;
54
+ }
55
+ }
56
+
@@ -0,0 +1,52 @@
1
+ import { Column, Entity } from "typeorm";
2
+ import { BaseModel } from './BaseModel';
3
+
4
+ @Entity({ name: 'mission_travel_chats' })
5
+ export class MissionTravelRequestChat extends BaseModel {
6
+
7
+ @Column({ type: 'integer', nullable: false })
8
+ request_id: number;
9
+
10
+ @Column({ type: 'integer', nullable: true })
11
+ service_id: number | null;
12
+
13
+ @Column({ type: 'integer', nullable: true })
14
+ sub_service_id: number | null;
15
+
16
+ @Column({ type: 'integer', nullable: false })
17
+ user_id: number;
18
+
19
+ @Column({ type: 'integer', nullable: true })
20
+ role_id: number | null;
21
+
22
+ @Column({ type: 'text', nullable: false })
23
+ message: string;
24
+
25
+ @Column({ type: 'text', nullable: true })
26
+ status: string | null;
27
+
28
+ @Column({ type: 'boolean', default: false })
29
+ is_internal: boolean;
30
+
31
+ constructor(
32
+ request_id: number,
33
+ user_id: number,
34
+ message: string,
35
+ is_internal?: boolean,
36
+ service_id?: number | null,
37
+ sub_service_id?: number | null,
38
+ role_id?: number | null,
39
+ status?: string | null
40
+ ) {
41
+ super();
42
+ this.request_id = request_id;
43
+ this.service_id = service_id || null;
44
+ this.sub_service_id = sub_service_id || null;
45
+ this.user_id = user_id;
46
+ this.role_id = role_id || null;
47
+ this.message = message;
48
+ this.status = status || null;
49
+ this.is_internal = is_internal || false;
50
+ }
51
+ }
52
+