@platform-modules/foreign-ministry 1.2.34 → 1.2.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +13 -0
- package/dist/index.js +22 -1
- package/dist/models/GeneralServiceChatsModel.d.ts +3 -1
- package/dist/models/GeneralServiceChatsModel.js +12 -2
- package/dist/models/MissionTravelApprovalModel.d.ts +25 -0
- package/dist/models/MissionTravelApprovalModel.js +106 -0
- package/dist/models/MissionTravelAttachmentModel.d.ts +13 -0
- package/dist/models/MissionTravelAttachmentModel.js +69 -0
- package/dist/models/MissionTravelChatModel.d.ts +12 -0
- package/dist/models/MissionTravelChatModel.js +64 -0
- package/dist/models/MissionTravelCostModel.d.ts +14 -0
- package/dist/models/MissionTravelCostModel.js +74 -0
- package/dist/models/MissionTravelPersonModel.d.ts +26 -0
- package/dist/models/MissionTravelPersonModel.js +115 -0
- package/dist/models/MissionTravelRequestModel.d.ts +36 -0
- package/dist/models/MissionTravelRequestModel.js +118 -0
- package/dist/models/MissionTravelWorkflowModel.d.ts +19 -0
- package/dist/models/MissionTravelWorkflowModel.js +80 -0
- package/dist/models/TravelClassEnum.d.ts +5 -0
- package/dist/models/TravelClassEnum.js +9 -0
- package/package.json +1 -1
- package/src/index.ts +14 -0
- package/src/models/GeneralServiceChatsModel.ts +11 -1
- package/src/models/MissionTravelApprovalModel.ts +94 -0
- package/src/models/MissionTravelAttachmentModel.ts +56 -0
- package/src/models/MissionTravelChatModel.ts +52 -0
- package/src/models/MissionTravelCostModel.ts +62 -0
- package/src/models/MissionTravelPersonModel.ts +105 -0
- package/src/models/MissionTravelRequestModel.ts +108 -0
- package/src/models/MissionTravelWorkflowModel.ts +55 -0
- package/src/models/TravelClassEnum.ts +7 -0
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { Column, Entity } from "typeorm";
|
|
2
|
+
import { BaseModel } from './BaseModel';
|
|
3
|
+
|
|
4
|
+
export enum AllowanceRatio {
|
|
5
|
+
RATIO_100 = "100",
|
|
6
|
+
RATIO_75 = "75",
|
|
7
|
+
RATIO_50 = "50"
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
@Entity({ name: 'mission_travel_persons' })
|
|
11
|
+
export class MissionTravelPersons extends BaseModel {
|
|
12
|
+
|
|
13
|
+
@Column({ type: 'int', nullable: false })
|
|
14
|
+
request_id: number;
|
|
15
|
+
|
|
16
|
+
@Column({ type: 'int', nullable: true })
|
|
17
|
+
service_id: number | null;
|
|
18
|
+
|
|
19
|
+
@Column({ type: 'int', nullable: true })
|
|
20
|
+
sub_service_id: number | null;
|
|
21
|
+
|
|
22
|
+
@Column({ type: 'varchar', length: 255, nullable: false })
|
|
23
|
+
travel_person_name: string;
|
|
24
|
+
|
|
25
|
+
@Column({ type: 'int', nullable: true })
|
|
26
|
+
user_id: number | null; // If employee, link to user table
|
|
27
|
+
|
|
28
|
+
@Column({ type: 'int', nullable: true })
|
|
29
|
+
country_id: number | null;
|
|
30
|
+
|
|
31
|
+
@Column({ type: 'varchar', length: 10, nullable: true })
|
|
32
|
+
allowance_ratio: AllowanceRatio | null; // 100, 75, or 50
|
|
33
|
+
|
|
34
|
+
@Column({ type: 'date', nullable: true })
|
|
35
|
+
travel_from_date: Date | null;
|
|
36
|
+
|
|
37
|
+
@Column({ type: 'date', nullable: true })
|
|
38
|
+
travel_to_date: Date | null;
|
|
39
|
+
|
|
40
|
+
@Column({ type: 'varchar', nullable: true })
|
|
41
|
+
travel_class: string | null;
|
|
42
|
+
|
|
43
|
+
@Column({ type: 'int', nullable: true })
|
|
44
|
+
number_of_days: number | null;
|
|
45
|
+
|
|
46
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
47
|
+
hotel_name: string | null;
|
|
48
|
+
|
|
49
|
+
@Column({ type: 'int', nullable: true })
|
|
50
|
+
hotel_rating: number | null;
|
|
51
|
+
|
|
52
|
+
@Column({ type: 'decimal', precision: 10, scale: 2, nullable: true })
|
|
53
|
+
hotel_price: number | null;
|
|
54
|
+
|
|
55
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
56
|
+
travel_agent_name: string | null;
|
|
57
|
+
|
|
58
|
+
@Column({ type: 'decimal', precision: 10, scale: 2, nullable: true })
|
|
59
|
+
allowance_amount: number | null; // Auto-calculated based on ratio & perdiem
|
|
60
|
+
|
|
61
|
+
@Column({ type: 'int', nullable: true })
|
|
62
|
+
grade: number | null; // Employee grade for perdiem calculation
|
|
63
|
+
|
|
64
|
+
constructor(
|
|
65
|
+
request_id: number,
|
|
66
|
+
service_id: number | null,
|
|
67
|
+
sub_service_id: number | null,
|
|
68
|
+
travel_person_name: string,
|
|
69
|
+
user_id: number | null,
|
|
70
|
+
country_id: number | null,
|
|
71
|
+
allowance_ratio: AllowanceRatio | null,
|
|
72
|
+
travel_from_date: Date | null,
|
|
73
|
+
travel_to_date: Date | null,
|
|
74
|
+
travel_class: string | null,
|
|
75
|
+
number_of_days: number | null,
|
|
76
|
+
hotel_name: string | null,
|
|
77
|
+
hotel_rating: number | null,
|
|
78
|
+
hotel_price: number | null,
|
|
79
|
+
travel_agent_name: string | null,
|
|
80
|
+
allowance_amount: number | null,
|
|
81
|
+
grade: number | null
|
|
82
|
+
) {
|
|
83
|
+
super();
|
|
84
|
+
this.request_id = request_id;
|
|
85
|
+
this.service_id = service_id;
|
|
86
|
+
this.sub_service_id = sub_service_id;
|
|
87
|
+
this.travel_person_name = travel_person_name;
|
|
88
|
+
this.user_id = user_id;
|
|
89
|
+
this.country_id = country_id;
|
|
90
|
+
this.allowance_ratio = allowance_ratio;
|
|
91
|
+
this.travel_from_date = travel_from_date;
|
|
92
|
+
this.travel_to_date = travel_to_date;
|
|
93
|
+
this.travel_class = travel_class;
|
|
94
|
+
this.number_of_days = number_of_days;
|
|
95
|
+
this.hotel_name = hotel_name;
|
|
96
|
+
this.hotel_rating = hotel_rating;
|
|
97
|
+
this.hotel_price = hotel_price;
|
|
98
|
+
this.travel_agent_name = travel_agent_name;
|
|
99
|
+
this.allowance_amount = allowance_amount;
|
|
100
|
+
this.grade = grade;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import { Column, Entity } from "typeorm";
|
|
2
|
+
import { BaseModel } from './BaseModel';
|
|
3
|
+
|
|
4
|
+
export enum MissionTravelStatus {
|
|
5
|
+
PENDING = "Pending",
|
|
6
|
+
APPROVED = "Approved",
|
|
7
|
+
REJECTED = "Rejected",
|
|
8
|
+
COMPLETED = "Completed",
|
|
9
|
+
CANCELLED = "Cancelled"
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export enum MissionType {
|
|
13
|
+
INTERNAL = "Internal",
|
|
14
|
+
EXTERNAL = "External"
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export enum DecisionType {
|
|
18
|
+
OFFICIAL_MISSION = "Official Mission",
|
|
19
|
+
TRAINING_COURSE = "Training Course",
|
|
20
|
+
SUMMON = "Summon",
|
|
21
|
+
ATTACHMENT = "Attachment"
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
@Entity({ name: 'mission_travel_requests' })
|
|
25
|
+
export class MissionTravelRequests extends BaseModel {
|
|
26
|
+
|
|
27
|
+
@Column({ type: 'int', nullable: false })
|
|
28
|
+
user_id: number;
|
|
29
|
+
|
|
30
|
+
@Column({ type: 'int', nullable: true })
|
|
31
|
+
service_id: number | null;
|
|
32
|
+
|
|
33
|
+
@Column({ type: 'int', nullable: true })
|
|
34
|
+
sub_service_id: number | null;
|
|
35
|
+
|
|
36
|
+
@Column({ type: 'boolean', nullable: true, default: false })
|
|
37
|
+
department_participation: boolean;
|
|
38
|
+
|
|
39
|
+
@Column({ type: 'enum', enum: MissionType, nullable: true })
|
|
40
|
+
mission_type: MissionType | null;
|
|
41
|
+
|
|
42
|
+
@Column({ type: 'enum', enum: DecisionType, nullable: true })
|
|
43
|
+
decision_type: DecisionType | null;
|
|
44
|
+
|
|
45
|
+
@Column({ type: 'date', nullable: true })
|
|
46
|
+
from_date: Date | null;
|
|
47
|
+
|
|
48
|
+
@Column({ type: 'date', nullable: true })
|
|
49
|
+
to_date: Date | null;
|
|
50
|
+
|
|
51
|
+
@Column({ type: 'text', nullable: true })
|
|
52
|
+
purpose_of_mission: string | null;
|
|
53
|
+
|
|
54
|
+
@Column({ type: 'varchar', length: 50, nullable: true })
|
|
55
|
+
exchange_ratio: string | null;
|
|
56
|
+
|
|
57
|
+
@Column({ type: 'int', nullable: true })
|
|
58
|
+
number_of_days: number | null;
|
|
59
|
+
|
|
60
|
+
@Column({ type: 'decimal', precision: 10, scale: 2, nullable: true })
|
|
61
|
+
mission_allowance_cost: number | null;
|
|
62
|
+
|
|
63
|
+
@Column({ type: 'enum', enum: MissionTravelStatus, default: MissionTravelStatus.PENDING, nullable: false })
|
|
64
|
+
status: MissionTravelStatus;
|
|
65
|
+
|
|
66
|
+
@Column({ type: 'varchar', nullable: true })
|
|
67
|
+
workflow_execution_id: string | null;
|
|
68
|
+
|
|
69
|
+
@Column({ type: 'varchar', nullable: true })
|
|
70
|
+
request_type: string | null;
|
|
71
|
+
|
|
72
|
+
constructor(
|
|
73
|
+
user_id: number,
|
|
74
|
+
service_id: number | null,
|
|
75
|
+
sub_service_id: number | null,
|
|
76
|
+
department_participation: boolean,
|
|
77
|
+
mission_type: MissionType | null,
|
|
78
|
+
decision_type: DecisionType | null,
|
|
79
|
+
from_date: Date | null,
|
|
80
|
+
to_date: Date | null,
|
|
81
|
+
purpose_of_mission: string | null,
|
|
82
|
+
exchange_ratio: string | null,
|
|
83
|
+
number_of_days: number | null,
|
|
84
|
+
mission_allowance_cost: number | null,
|
|
85
|
+
request_type: string | null
|
|
86
|
+
) {
|
|
87
|
+
super();
|
|
88
|
+
this.user_id = user_id;
|
|
89
|
+
this.service_id = service_id;
|
|
90
|
+
this.sub_service_id = sub_service_id;
|
|
91
|
+
this.department_participation = department_participation;
|
|
92
|
+
this.mission_type = mission_type;
|
|
93
|
+
this.decision_type = decision_type;
|
|
94
|
+
this.from_date = from_date;
|
|
95
|
+
this.to_date = to_date;
|
|
96
|
+
this.purpose_of_mission = purpose_of_mission;
|
|
97
|
+
this.exchange_ratio = exchange_ratio;
|
|
98
|
+
this.number_of_days = number_of_days;
|
|
99
|
+
this.mission_allowance_cost = mission_allowance_cost;
|
|
100
|
+
this.status = MissionTravelStatus.PENDING;
|
|
101
|
+
this.request_type = request_type;
|
|
102
|
+
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { Column, Entity } from "typeorm";
|
|
2
|
+
import { BaseModel } from './BaseModel';
|
|
3
|
+
|
|
4
|
+
export enum MissionTravelWorkFlowStatus {
|
|
5
|
+
COMPLETED = "Completed",
|
|
6
|
+
NOT_YET_STARTED = "Not Yet Started",
|
|
7
|
+
PENDING = "Pending"
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
@Entity({ name: 'mission_travel_workflows' })
|
|
11
|
+
export class MissionTravelWorkFlow extends BaseModel {
|
|
12
|
+
@Column({ type: 'int', nullable: false })
|
|
13
|
+
request_id: number;
|
|
14
|
+
|
|
15
|
+
@Column({ type: 'int', nullable: true })
|
|
16
|
+
service_id: number | null;
|
|
17
|
+
|
|
18
|
+
@Column({ type: 'int', nullable: true })
|
|
19
|
+
sub_service_id: number | null;
|
|
20
|
+
|
|
21
|
+
@Column({ type: 'int', nullable: true })
|
|
22
|
+
order: number | null;
|
|
23
|
+
|
|
24
|
+
@Column({ type: 'varchar', length: 255, nullable: false })
|
|
25
|
+
content: string;
|
|
26
|
+
|
|
27
|
+
@Column({ type: 'enum', enum: MissionTravelWorkFlowStatus, default: MissionTravelWorkFlowStatus.NOT_YET_STARTED, nullable: false })
|
|
28
|
+
status: MissionTravelWorkFlowStatus;
|
|
29
|
+
|
|
30
|
+
@Column({ type: 'integer', nullable: true })
|
|
31
|
+
user_id: number | null;
|
|
32
|
+
|
|
33
|
+
@Column({ type: 'integer', nullable: true })
|
|
34
|
+
role_id: number | null;
|
|
35
|
+
|
|
36
|
+
@Column({ type: 'integer', nullable: true })
|
|
37
|
+
department_id: number | null;
|
|
38
|
+
|
|
39
|
+
@Column({ type: 'integer', nullable: true })
|
|
40
|
+
section_id: number | null;
|
|
41
|
+
|
|
42
|
+
constructor(request_id: number, content: string, status: MissionTravelWorkFlowStatus, order?: number, service_id?: number | null, sub_service_id?: number | null, user_id?: number | null, role_id?: number | null, department_id?: number | null, section_id?: number | null) {
|
|
43
|
+
super();
|
|
44
|
+
this.request_id = request_id;
|
|
45
|
+
this.content = content;
|
|
46
|
+
this.status = status;
|
|
47
|
+
this.order = order || null;
|
|
48
|
+
this.service_id = service_id ?? null;
|
|
49
|
+
this.sub_service_id = sub_service_id ?? null;
|
|
50
|
+
this.user_id = user_id || null;
|
|
51
|
+
this.role_id = role_id || null;
|
|
52
|
+
this.department_id = department_id || null;
|
|
53
|
+
this.section_id = section_id || null;
|
|
54
|
+
}
|
|
55
|
+
}
|