@platform-modules/foreign-ministry 1.2.100 → 1.2.101

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 (86) hide show
  1. package/.env +1 -1
  2. package/dist/data-source.js +5 -1
  3. package/dist/index.d.ts +11 -0
  4. package/dist/index.js +18 -1
  5. package/dist/models/DiplomaticClubCardApprovalModel.d.ts +16 -0
  6. package/dist/models/DiplomaticClubCardApprovalModel.js +58 -0
  7. package/dist/models/DiplomaticClubCardAttachmentModel.d.ts +9 -0
  8. package/dist/models/DiplomaticClubCardAttachmentModel.js +44 -0
  9. package/dist/models/DiplomaticClubCardChatModel.d.ts +7 -0
  10. package/dist/models/DiplomaticClubCardChatModel.js +36 -0
  11. package/dist/models/DiplomaticClubCardMemberModel.d.ts +13 -0
  12. package/dist/models/DiplomaticClubCardMemberModel.js +60 -0
  13. package/dist/models/DiplomaticClubCardRequestModel.d.ts +33 -0
  14. package/dist/models/DiplomaticClubCardRequestModel.js +98 -0
  15. package/dist/models/DiplomaticClubCardWorkFlowModel.d.ts +12 -0
  16. package/dist/models/DiplomaticClubCardWorkFlowModel.js +42 -0
  17. package/dist/models/DiplomaticRequestsModel.d.ts +1 -0
  18. package/dist/models/DiplomaticRequestsModel.js +4 -0
  19. package/dist/models/DiplomaticServiceDetailsModel.d.ts +20 -0
  20. package/dist/models/DiplomaticServiceDetailsModel.js +65 -0
  21. package/dist/models/DiplomaticSettingsModel.d.ts +11 -0
  22. package/dist/models/DiplomaticSettingsModel.js +59 -0
  23. package/dist/models/DiplomaticTitleModel.d.ts +12 -0
  24. package/dist/models/DiplomaticTitleModel.js +45 -0
  25. package/dist/models/GeneralServiceChatsModel.d.ts +3 -1
  26. package/dist/models/GeneralServiceChatsModel.js +12 -2
  27. package/dist/models/HelpdeskAutoClosureConfig.d.ts +12 -0
  28. package/dist/models/HelpdeskAutoClosureConfig.js +59 -0
  29. package/dist/models/HelpdeskKnowledgeBase.d.ts +13 -0
  30. package/dist/models/HelpdeskKnowledgeBase.js +61 -0
  31. package/dist/models/MissionTravelApprovalModel.d.ts +1 -2
  32. package/dist/models/MissionTravelApprovalModel.js +1 -2
  33. package/dist/models/PassportRequestApprovalModel.d.ts +22 -0
  34. package/dist/models/PassportRequestApprovalModel.js +91 -0
  35. package/dist/models/PassportRequestAttachmentModel.d.ts +10 -0
  36. package/dist/models/PassportRequestAttachmentModel.js +54 -0
  37. package/dist/models/PassportRequestChatModel.d.ts +8 -0
  38. package/dist/models/PassportRequestChatModel.js +44 -0
  39. package/dist/models/PassportRequestDependentModel.d.ts +20 -0
  40. package/dist/models/PassportRequestDependentModel.js +85 -0
  41. package/dist/models/PassportRequestModel.d.ts +40 -0
  42. package/dist/models/PassportRequestModel.js +128 -0
  43. package/dist/models/PassportRequestWorkFlowModel.d.ts +15 -0
  44. package/dist/models/PassportRequestWorkFlowModel.js +60 -0
  45. package/dist/models/RequestPassportRequestModel.d.ts +0 -11
  46. package/dist/models/RequestPassportRequestModel.js +0 -44
  47. package/dist/models/RetiredCardApprovalsModel.d.ts +33 -0
  48. package/dist/models/RetiredCardApprovalsModel.js +110 -0
  49. package/dist/models/RetiredCardAttachmentsModel.d.ts +16 -0
  50. package/dist/models/RetiredCardAttachmentsModel.js +60 -0
  51. package/dist/models/RetiredCardChatsModel.d.ts +26 -0
  52. package/dist/models/RetiredCardChatsModel.js +84 -0
  53. package/dist/models/RetiredCardRequestsModel.d.ts +39 -0
  54. package/dist/models/RetiredCardRequestsModel.js +117 -0
  55. package/dist/models/RetiredCardWorkFlowModel.d.ts +33 -0
  56. package/dist/models/RetiredCardWorkFlowModel.js +93 -0
  57. package/dist/models/SectionModel.d.ts +2 -1
  58. package/dist/models/SectionModel.js +7 -2
  59. package/dist/models/SubscriptionAmountModel.d.ts +67 -0
  60. package/dist/models/SubscriptionAmountModel.js +114 -0
  61. package/package.json +1 -1
  62. package/src/data-source.ts +273 -268
  63. package/src/index.ts +12 -0
  64. package/src/models/DiplomaticClubSubscriptionMasterModel.ts +26 -26
  65. package/src/models/DiplomaticRequestsModel.ts +157 -154
  66. package/src/models/GeneralServiceChatsModel.ts +11 -1
  67. package/src/models/HelpdeskAutoClosureConfig.ts +41 -0
  68. package/src/models/HelpdeskKnowledgeBase.ts +46 -0
  69. package/src/models/LeaveConfigModel.ts +71 -71
  70. package/src/models/MissionTravelApprovalModel.ts +94 -95
  71. package/src/models/MissionTravelAttachmentModel.ts +56 -56
  72. package/src/models/MissionTravelChatModel.ts +52 -52
  73. package/src/models/MissionTravelPersonModel.ts +105 -105
  74. package/src/models/MissionTravelRequestModel.ts +0 -1
  75. package/src/models/MissionTravelWorkflowModel.ts +54 -54
  76. package/src/models/RequestPassportRequestModel.ts +22 -22
  77. package/src/models/RetiredCardApprovalsModel.ts +98 -0
  78. package/src/models/RetiredCardAttachmentsModel.ts +38 -0
  79. package/src/models/RetiredCardChatsModel.ts +72 -0
  80. package/src/models/RetiredCardRequestsModel.ts +109 -0
  81. package/src/models/RetiredCardWorkFlowModel.ts +66 -0
  82. package/src/models/SectionModel.ts +6 -1
  83. package/dist/models/MissionTravelClassConfigModel.d.ts +0 -10
  84. package/dist/models/MissionTravelClassConfigModel.js +0 -50
  85. package/dist/models/MissionTravelPerdiemModel.d.ts +0 -10
  86. package/dist/models/MissionTravelPerdiemModel.js +0 -54
@@ -1,154 +1,157 @@
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
+ @Column({ type: 'json', nullable: true })
115
+ titles: any[] | null;
116
+
117
+ @OneToMany('DiplomaticClubCardMembers', 'diplomaticRequest', { nullable: true })
118
+ diplomaticClubCardMembers?: DiplomaticClubCardMembers[];
119
+
120
+ @OneToMany('DiplomaticApprovals', 'diplomaticRequest')
121
+ approvals?: DiplomaticApprovals[];
122
+
123
+ @OneToMany('DiplomaticWorkFlow', 'diplomaticRequest')
124
+ workflows?: DiplomaticWorkFlow[];
125
+
126
+ @OneToMany('DiplomaticAttachments', 'diplomaticRequest')
127
+ attachments?: DiplomaticAttachments[];
128
+
129
+ @OneToMany('DiplomaticChats', 'diplomaticRequest')
130
+ chats?: DiplomaticChats[];
131
+
132
+ constructor(
133
+ user_id: number,
134
+ employee_id: string,
135
+ employee_name: string,
136
+ email_address: string,
137
+ contact_number: string,
138
+ service_id: number | null,
139
+ sub_service_id: number | null,
140
+ section_id: number | null,
141
+ reporting_manager: number | null
142
+ ) {
143
+ super();
144
+ this.user_id = user_id;
145
+ this.employee_id = employee_id;
146
+ this.employee_name = employee_name;
147
+ this.email_address = email_address;
148
+ this.contact_number = contact_number;
149
+ this.request_date = new Date();
150
+ this.request_status = DiplomaticRequestStatus.PENDING;
151
+ this.service_id = service_id;
152
+ this.sub_service_id = sub_service_id;
153
+ this.section_id = section_id;
154
+ this.reporting_manager = reporting_manager;
155
+ }
156
+ }
157
+
@@ -12,6 +12,12 @@ export class GeneralServiceChats extends BaseModel {
12
12
  @Column({ type: 'int' })
13
13
  sender_user_id: number;
14
14
 
15
+ @Column({ type: 'int', nullable: true })
16
+ sender_role_id: number | null;
17
+
18
+ @Column({ type: 'varchar', length: 100, nullable: true })
19
+ status: string | null;
20
+
15
21
  @Column({ type: 'int', nullable: true })
16
22
  service_id: number | null; // For filtering and multi-service support
17
23
 
@@ -26,7 +32,9 @@ export class GeneralServiceChats extends BaseModel {
26
32
  content: string,
27
33
  sender_user_id: number,
28
34
  service_id?: number | null,
29
- sub_service_id?: number | null
35
+ sub_service_id?: number | null,
36
+ sender_role_id?: number | null,
37
+ status?: string | null
30
38
  ) {
31
39
  super();
32
40
  this.request_id = request_id;
@@ -34,6 +42,8 @@ export class GeneralServiceChats extends BaseModel {
34
42
  this.sender_user_id = sender_user_id;
35
43
  this.service_id = service_id || null;
36
44
  this.sub_service_id = sub_service_id || null;
45
+ this.sender_role_id = sender_role_id || null;
46
+ this.status = status || null;
37
47
  }
38
48
  }
39
49
 
@@ -0,0 +1,41 @@
1
+ import {
2
+ Entity,
3
+ PrimaryGeneratedColumn,
4
+ Column,
5
+ CreateDateColumn,
6
+ UpdateDateColumn
7
+ } from 'typeorm';
8
+
9
+ @Entity('helpdesk_auto_closure_config')
10
+ export class HelpdeskAutoClosureConfig {
11
+ @PrimaryGeneratedColumn()
12
+ id: number;
13
+
14
+ @Column({ type: 'varchar', length: 255, nullable: false })
15
+ config_name: string;
16
+
17
+ @Column({ type: 'integer', nullable: false })
18
+ days_to_auto_close: number;
19
+
20
+ @Column({ type: 'text', nullable: true })
21
+ description: string;
22
+
23
+ @Column({ type: 'boolean', default: false })
24
+ is_active: boolean;
25
+
26
+ @Column({ type: 'boolean', default: false })
27
+ is_deleted: boolean;
28
+
29
+ @Column({ type: 'varchar', nullable: true })
30
+ created_by: string;
31
+
32
+ @Column({ type: 'varchar', nullable: true })
33
+ updated_by: string;
34
+
35
+ @CreateDateColumn({ type: 'timestamp', default: () => 'CURRENT_TIMESTAMP' })
36
+ created_at: Date;
37
+
38
+ @UpdateDateColumn({ type: 'timestamp', default: () => 'CURRENT_TIMESTAMP' })
39
+ updated_at: Date;
40
+ }
41
+
@@ -0,0 +1,46 @@
1
+ import {
2
+ Entity,
3
+ PrimaryGeneratedColumn,
4
+ Column,
5
+ CreateDateColumn,
6
+ UpdateDateColumn,
7
+ ManyToOne,
8
+ JoinColumn
9
+ } from 'typeorm';
10
+ import { IssueTypes } from './IssueTypesModel';
11
+
12
+ @Entity('helpdesk_knowledge_base')
13
+ export class HelpdeskKnowledgeBase {
14
+ @PrimaryGeneratedColumn()
15
+ id: number;
16
+
17
+ @Column({ type: 'integer', nullable: false })
18
+ issue_type_id: number;
19
+
20
+ @Column({ type: 'text', nullable: false })
21
+ content: string;
22
+
23
+ @Column({ type: 'boolean', default: true })
24
+ is_active: boolean;
25
+
26
+ @Column({ type: 'boolean', default: false })
27
+ is_deleted: boolean;
28
+
29
+ @Column({ type: 'varchar', nullable: true })
30
+ created_by: string;
31
+
32
+ @Column({ type: 'varchar', nullable: true })
33
+ updated_by: string;
34
+
35
+ @CreateDateColumn({ type: 'timestamp', default: () => 'CURRENT_TIMESTAMP' })
36
+ created_at: Date;
37
+
38
+ @UpdateDateColumn({ type: 'timestamp', default: () => 'CURRENT_TIMESTAMP' })
39
+ updated_at: Date;
40
+
41
+ // Relations
42
+ @ManyToOne(() => IssueTypes, { eager: false })
43
+ @JoinColumn({ name: 'issue_type_id' })
44
+ issue_type?: IssueTypes;
45
+ }
46
+
@@ -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
  }