Rathapoom commited on
Commit
a0a57c5
·
verified ·
1 Parent(s): df69a6f

Create data_structures.py

Browse files
Files changed (1) hide show
  1. data_structures.py +630 -0
data_structures.py ADDED
@@ -0,0 +1,630 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # data_structures.py
2
+ from typing import Dict, List
3
+ from dataclasses import dataclass
4
+
5
+ # Common Templates
6
+ COMMON_TEMPLATES = {
7
+ "patient_base_fields": {
8
+ "HN": "เลขประจำตัวคนไข้ของโรงพยาบาล",
9
+ "Patient_Name": "ชื่อคนไข้",
10
+ "Age": "อายุ",
11
+ "Sex": "เพศ",
12
+ "RightName": "สิทธิการรักษาพยาบาล",
13
+ "Patient_Type": "ประเภทคนไข้(สิทธิ์)"
14
+ },
15
+ "opd_base_fields": {
16
+ "VisitDate": "วันที่มาโรงพยาบาล",
17
+ "VN": "เลขประจำตัวผู้ป่วยนอก",
18
+ "PrescriptionNo": "เลขที่ใบยา",
19
+ "Clinic": "รหัสคลินิก",
20
+ "Clinic_Name": "ชื่อคลินิก",
21
+ "Doctor": "รหัสแพทย์",
22
+ "Doctor_Name": "ชื่อแพทย์"
23
+ }
24
+ }
25
+
26
+ def build_report_fields(*templates: str, additional_fields: dict = None) -> dict:
27
+ """Build report fields from templates and additional fields"""
28
+ fields = {}
29
+ for template in templates:
30
+ fields.update(COMMON_TEMPLATES.get(template, {}))
31
+ if additional_fields:
32
+ fields.update(additional_fields)
33
+ return fields
34
+
35
+ # Import all your report structures here
36
+ # OPD_REPORTS, IPD_REPORTS, PCT_REPORTS, etc.
37
+
38
+ OPD_REPORTS = {
39
+ "appointment": {
40
+ "name": "Appointment report",
41
+ "description": "รายงานการนัดหมาย",
42
+ "filters": ["Clinic", "Doctor", "HN", "Date"],
43
+ "fields": build_report_fields("patient_base_fields", additional_fields={
44
+ "AppointDateTime": "วันที่นัดหมายมาโรงพยาบาล",
45
+ "AppointmentNo": "เลขที่นัดหมายในระบบ",
46
+ "PrePatientNo": "เลขประจำตัวคนไข้ของโรงพยาบาล(กรณียังไม่เปิดHN)",
47
+ "เหตุผลนัดหมาย_1": "เหตุผลการนัดหมายลำดับที่ 1",
48
+ "เหตุผลนัดหมาย_2": "เหตุผลการนัดหมายลำดับที่ 2",
49
+ "เหตุผลนัดหมาย_3": "เหตุผลการนัดหมายลำดับที่ 3",
50
+ "เหตุผลนัดหมาย_4": "เหตุผลการนัดหมายลำดับที่ 4",
51
+ "เหตุผลนัดหมาย_5": "เหตุผลการนัดหมายลำดับที่ 5",
52
+ "NurseNote": "บันทึกรายละเอียดพยาบาล",
53
+ "Telephone": "เบอร์ติดต่อคนไข้",
54
+ "EntryDateTime": "วัดที่สร้างนัดหมาย",
55
+ "EntryDate_to_AppointDate": "ระยะเวลารอนัด จากวันที่สร้างนัดถึงวันที่นัดหมายพบแพทย์",
56
+ "Last_AppointmentLog": "สถานะบัตรนัดหมายล่าสุด"
57
+ })
58
+ },
59
+
60
+ "diagnosis": {
61
+ "name": "Diagnosis(ICD) Details report",
62
+ "description": "รายงานการวินิจฉัยโรคผู้ป่วยนอก(ICD)",
63
+ "filters": ["Clinic", "Doctor", "Diagnosis type", "รหัสโรค", "Date"],
64
+ "fields": build_report_fields("patient_base_fields", "opd_base_fields", additional_fields={
65
+ "Diagnosis_Type": "ประเภทลำดับโรค",
66
+ "ICD_Code": "รหัสโรค (มาตรฐาน ICD10)",
67
+ "ICD_Name": "ชื่อโรค (มาตรฐาน ICD10)"
68
+ })
69
+ },
70
+
71
+ "diagnosis_top100": {
72
+ "name": "Diagnosis Top 100 report",
73
+ "description": "รายงาน100อันดับการวินิจฉัยโรคผู้ป่วยนอก(ICD)",
74
+ "filters": ["Clinic", "Doctor", "Date"],
75
+ "fields": {
76
+ "ICD_Code": "รหัสโรค (มาตรฐาน ICD10)",
77
+ "ICD_Name": "ชื่อโรค (มาตรฐาน ICD10)",
78
+ "VN_Count": "จำนวน VN รวม"
79
+ }
80
+ },
81
+
82
+ "visit_today": {
83
+ "name": "Visit today report",
84
+ "description": "รายงานการเข้ารับบริการผู้ป่วยนอก",
85
+ "filters": ["HN", "Date"],
86
+ "fields": build_report_fields("patient_base_fields", additional_fields={
87
+ "VisitDate": "วันที่มาโรงพยาบาล",
88
+ "VN": "เลขประจำตัวผู้ป่วยนอก",
89
+ "Visit_Name": "ประเภทการมาโร���พยาบาล",
90
+ "InDateTime": "วันเวลาเริ่มต้นการเข้ารับบริการ",
91
+ "OutDateTime": "วันเวลาสิ้นสุดการเข้ารับบริการ",
92
+ "New_Patient": "ผู้ป่วยใหม่-เก่า",
93
+ "ClaimCode": "รหัสการขอ Authentication สปสช"
94
+ })
95
+ },
96
+
97
+ "prescription_today": {
98
+ "name": "Prescription today report",
99
+ "description": "รายงานการเข้ารับบริการผู้ป่วยนอกตามใบยา",
100
+ "filters": ["HN", "clinic", "doctor", "Date"],
101
+ "fields": build_report_fields("patient_base_fields", "opd_base_fields", additional_fields={
102
+ "Visit_Name": "ประเภทการมาโรงพยาบาลตามคลินิก",
103
+ "InDateTime": "วันเวลาเริ่มต้นการเข้ารับบริการ",
104
+ "OutDateTime": "วันเวลาสิ้นสุดการเข้ารับบริการ",
105
+ "New_Patient": "ผู้ป่วยใหม่-เก่า",
106
+ "ClaimCode": "รหัสการขอ Authentication สปสช",
107
+ "CloseVisit": "ประเภทการปิดใบยา"
108
+ })
109
+ },
110
+
111
+ "telemedicine": {
112
+ "name": "Tele Medicine report",
113
+ "description": "รายงานการเข้ารับบริการผู้ป่วย Tele Medicine",
114
+ "filters": ["HN", "Clinic", "Doctor", "Date"],
115
+ "fields": build_report_fields("patient_base_fields", "opd_base_fields", additional_fields={
116
+ "Visit_Name": "ประเภทการมาโรงพยาบาลตามคลินิก",
117
+ "InDateTime": "วันเวลาเริ่มต้นการเข้ารับบริการ",
118
+ "OutDateTime": "วันเวลาสิ้นสุดการเข้ารับบริการ",
119
+ "New_Patient": "ผู้ป่วยใหม่-เก่า",
120
+ "ClaimCode": "รหัสการขอ Authentication สปสช"
121
+ })
122
+ },
123
+
124
+ "disease_details": {
125
+ "name": "Disease Details report",
126
+ "description": "รายงานการลงโรคผู้ป่วยนอก(โดยแพทย์)",
127
+ "filters": ["HN", "Clinic", "Doctor", "Date"],
128
+ "fields": build_report_fields("patient_base_fields", "opd_base_fields", additional_fields={
129
+ "Diagnosis_Type": "ประเภทการวินิจฉัยโรค",
130
+ "Disease_Code": "รหัสการวินิจฉัย",
131
+ "Disease_Name": "ชื่อการวินิจฉัย"
132
+ })
133
+ },
134
+
135
+ "waiting_times": {
136
+ "name": "Waiting Times report",
137
+ "description": "รายงานระยะเวลารอคอยผู้ป่วยนอก",
138
+ "filters": ["HN", "Clinic", "Doctor", "Date"],
139
+ "fields": build_report_fields("patient_base_fields", "opd_base_fields", additional_fields={
140
+ "Location": "อาคารให้บริการ",
141
+ "AppointDateTime": "เวลานัดหมาย",
142
+ "Register": "เวลาเปิดเลขประจำตัวผู้ป่วยนอก",
143
+ "Prescription_Print": "เวลาปิด VN Slip",
144
+ "NurseCounter_Acknowledge": "เวลาพยาบาลรับผู้ป่วย",
145
+ "Diag_Rms_Check_In": "เวลารับผู้ป่วยเข้าห้องตรวจ",
146
+ "Doctor_Approve_Prescription": "เวลาแพทย์ยืนยันการตรวจและสั่งยา",
147
+ "Diag_Rms_Check_Out": "เวลาผู้ป่วยออกจากห้องตรวจ",
148
+ "NurseCounter_Release": "เวลาปิดใบยาหรือส่งผู้ป่วยออกจากคลินิก",
149
+ "Drug_Acknowledge": "เวลาห้องยารับทราบใบสั่งยา",
150
+ "Drug_Ready": "เวลาห้องยาจัดยาเสร็จสิ้น",
151
+ "Drug_Check_Out": "เวลาผู้ป่วยรับยา",
152
+ "Cashier_Receive": "เวลาออกใบเสร็จ",
153
+ "Register_to_Prescription_Print": "ระยะเวลาเปิด VN ถึง ปริ้นใบยา(นาที)",
154
+ "Status1": "ตรวจสอบสถานะคนไข้นัดหมายหรือwalkin",
155
+ "Wait_Time_Statistics": {
156
+ "NurseCounter_to_Diag": "ระยะเวลาพยาบาลรับผู้ป่วยถึงเวลาเข้าห้องตรวจ(น��ที)",
157
+ "Doctor_Service_Time": "ระยะเวลาที่แพทย์ใช้ในการตรวจ",
158
+ "Prescription_to_Release": "ระยะเวลาแพทย์ยืนยันใบสั่งยาถึงผู้ป่วยออกจากคลินิก(นาที)",
159
+ "Drug_Service_Time": "ระยะเวลาห้องยารับทราบใบสั่งยาถึงผู้ป่วยรับยา(นาที)"
160
+ }
161
+ })
162
+ }
163
+ }
164
+
165
+ IPD_REPORTS = {
166
+ "diagnosis": {
167
+ "name": "IPD Diagnosis Details report",
168
+ "description": "รายงานการวินิจฉัยโรคผู้ป่วยใน(ICD)",
169
+ "filters": ["Ward", "Doctor", "Diagnosis Type", "Icd", "Date"],
170
+ "fields": build_report_fields("patient_base_fields", additional_fields={
171
+ "AN": "เลขประจำตัวผู้ป่วยใน",
172
+ "AdmDateTime": "วันเวลาเข้ารับการรักษาเป็นผู้ป่วยใน",
173
+ "DischargeDateTime": "วันเวลาการจำหน่ายผู้ป่วยกลับบ้าน",
174
+ "DiagnosisType": "ประเภทการวินิจฉัยโรค",
175
+ "ICDCode": "รหัสโรค",
176
+ "ICDName": "ชื่อโรค",
177
+ "ActiveWardName": "หอผู้ป่วยสุดท้ายก่อนจำหน่าย",
178
+ "DoctorName": "แพทย์เจ้าของไข้"
179
+ })
180
+ },
181
+
182
+ "admission": {
183
+ "name": "IPD Admission report",
184
+ "description": "รายงานการเข้ารับบริการผู้ป่วยใน",
185
+ "filters": ["Clinic From OPD", "Date"],
186
+ "fields": build_report_fields("patient_base_fields", additional_fields={
187
+ "AN": "เลขประจำตัวผู้ป่วยใน",
188
+ "AdmDateTime": "วันเวลาเข้ารับการรักษาเป็นผู้ป่วยใน",
189
+ "FromOPDDoctorName": "แพทย์ผู้ตรวจจากผู้ป่วยนอก",
190
+ "FromClinicName": "ตรวจจากคลินิก",
191
+ "AdmCodeName": "ประเภทการรับเข้ารับการรักษาเป็นผู้ป่วยใน",
192
+ "AdmWard": "หอผู้ป่วยแรกรับ",
193
+ "AdmHNBedNo": "เลขเตียงผู้ป่วยแรกรับ",
194
+ "ActiveWard": "หอผู้ป่วยปัจจุบัน",
195
+ "ActiveHNBedNo": "เลขเตียงผู้ป่วยปัจจุบัน",
196
+ "AdmDoctor": "แพทย์รับผู้ป่วยเข้าเป็นผู้ป่วยใน"
197
+ })
198
+ },
199
+
200
+ "discharge": {
201
+ "name": "IPD Discharge report",
202
+ "description": "รายงานการจำหน่ายผู้ป่วยในกลับบ้าน",
203
+ "filters": ["Ward", "Date"],
204
+ "fields": build_report_fields("patient_base_fields", additional_fields={
205
+ "AN": "เลขประจำตัวผู้ป่วยใน",
206
+ "AdmDateTime": "วันเวลาเข้ารับการรักษาเป็นผู้ป่วยใน",
207
+ "DischargeDateTime": "วันเวลาการจำหน่ายผู้ป่วยกลับบ้าน",
208
+ "AdmCode": "ประเภทการรับเข้ารับการรักษาเป็นผู้ป่วยใน",
209
+ "DischargeCode": "ประเภทการจำหน่ายผู้ป่วยกลับบ้าน",
210
+ "AdmWard": "หอผู้ป่วยแรกรับ",
211
+ "AdmHNBedNo": "เลขเตียงผู้ป่วยแรกรับ",
212
+ "ActiveWard": "หอผู้ป่วยปัจจุบัน",
213
+ "ActiveHNBedNo": "เลขเตียงผู้ป่วยปัจจุบัน",
214
+ "AdmDoctor": "แพทย์รับผู้ป่วยเข้าเป็นผู้ป่วยใน",
215
+ "DischargeDoctor": "แพทย์จำหน่ายผู้ป่วย",
216
+ "Diag": "โรค"
217
+ })
218
+ },
219
+
220
+ "drg": {
221
+ "name": "DRG report",
222
+ "description": "รายงานผู้ป่วยในรูปแบบตามมาตรฐานข้อมูล DRG",
223
+ "filters": ["Date"],
224
+ "fields": build_report_fields("patient_base_fields", additional_fields={
225
+ "AN": "เลขประจำตัวผู้ป่วยใน",
226
+ "DOB": "วันเดือนปีเกิดผู้ป่วย",
227
+ "DateAdm": "วันที่รับเป็นผู้ป่วยใน",
228
+ "TimeAdm": "เวลารับเป็นผู้ป่วยใน",
229
+ "DateDsc": "วันที่จำหน่ายผู้ป่วยกลับบ้าน",
230
+ "TimeDsc": "เวลาจำหน่ายผู้ป่วยกลับบ้าน",
231
+ "Discht": "ประเภทการจำหน่าย",
232
+ "Admwt": "น้ำหนักผู้ป่วยแรกรับ",
233
+ "PDX": "รหัสการวินิจฉัยโรคหลัก",
234
+ "Secondary_Diagnoses": {
235
+ **{f"SDX{i}": f"รหัสการวินิจฉัยโรคร่วมลำดับที่ {i}" for i in range(1, 21)}
236
+ },
237
+ "Procedures": {
238
+ **{f"Proc{i}": f"รหัสการทำหัตถการลำดับที่ {i}" for i in range(1, 21)}
239
+ },
240
+ "DRG_Details": {
241
+ "DRG": "DRG Code",
242
+ "MDC": "Major Diagnostic Category",
243
+ "RW": "Relative Weight",
244
+ "AdjRW": "Adjusted Relative Weight",
245
+ "LOS": "จำนวนวันนอน",
246
+ "ActLOS": "Actual Length of Stay",
247
+ "WtLOS": "Weighted Length of Stay",
248
+ },
249
+ "Additional_Info": {
250
+ "Mcode1": "รหัส Morphology 1",
251
+ "Mcode2": "รหัส Morphology 2",
252
+ "Mcode3": "รหัส Morphology 3",
253
+ "ID": "เลขบัตรประจำตัวประชาชน",
254
+ "Nation": "สัญชาติ",
255
+ "Right_Main": "สิทธิ์หลักประจำผู้ป่วย",
256
+ "Right_Adm": "สิทธิ์ที่ใช้ในการรักษาครั้งนี้",
257
+ "Province": "รหัสจังหวัด",
258
+ "Ward": "รหัสหอผู้ป่วย",
259
+ "Department": "รหัสแผนก",
260
+ "DischargeStatus": "สถานะการจำหน่าย",
261
+ "DoctorMaster": "แพทย์เจ้าของไข้"
262
+ }
263
+ })
264
+ }
265
+ }
266
+
267
+ PCT_TEMPLATES = {
268
+ "pct_base_fields": {
269
+ "HN": "เลขประจำตัวคนไข้ของโรงพยาบาล",
270
+ "AN": "เลขประจำตัวผู้ป่วยใน",
271
+ "DateAdm": "วันที่รับเป็นผู้ป่วยใน",
272
+ "TimeAdm": "เวลารับเป็นผู้ป่วยใน",
273
+ "DateDsc": "วันที่จำหน่ายผู้ป่วยกลับบ้าน",
274
+ "TimeDsc": "เวลาจำหน่ายผู้ป่วยกลับบ้าน",
275
+ "AdmCode": "ประเภทการรับเข้ารับการรักษาเป็นผู้ป่วยใน",
276
+ "RightAdm": "สิทธิ์ที่ใช้ในการรักษาครั้งนี้",
277
+ "PDX": "รหัสการวินิจฉัยโรคหลัก",
278
+ "SDX1": "รหัสการวินิจฉัยโรคร่วมลำดับที่ 1",
279
+ "SDX2": "รหัสการวินิจฉัยโรคร่วมลำดับที่ 2",
280
+ "SDX3": "รหัสการวินิจฉัยโรคร่วมลำดับที่ 3",
281
+ "SDX4": "รหัสการวินิจฉัยโรคร่วมลำดับที่ 4",
282
+ "SDX5": "รหัสการวินิจฉัยโรคร่วมลำดับที่ 5",
283
+ "SDX6": "รหัสการวินิจฉัยโรคร่วมลำดับที่ 6",
284
+ "ICDCm1": "รหัสการทำหัตถการลำดับที่ 1",
285
+ "ICDCm2": "รหัสการทำหัตถการลำดับที่ 2",
286
+ "ICDCm3": "รหัสการทำหัตถการลำดับที่ 3",
287
+ "AdmDoctor": "แพทย์รับผู้ป่วยเข้าเป็นผู้ป่วยใน",
288
+ "DischargeDoctor": "แพทย์จำหน่ายผู้ป่วย",
289
+ "DoctorMaster": "แพทย์เจ้าของไข้",
290
+ "ActiveWard": "หอผู้ป่วยปัจจุบัน",
291
+ "LOS": "จำนวนวันนอน",
292
+ "DischargeCode": "สถานะการจำหน่าย",
293
+ "DischargeType": "ประเภทการจำหน่าย",
294
+ "Age": "อายุ",
295
+ "ORDateTime": "วันที่เข้ารับการผ่าตัด"
296
+ }
297
+ }
298
+
299
+ # Initialize PCT_REPORTS
300
+ PCT_REPORTS = {
301
+ "med_sepsis": {
302
+ "name": "PCT Med_Sepsis report",
303
+ "description": "รายงานระยะเวลาวันนอนรหัสโรคหลัก A40 - A41",
304
+ "filters": ["Date"],
305
+ "fields": build_report_fields("pct_base_fields")
306
+ },
307
+
308
+ "med_fn": {
309
+ "name": "PCT Med_FN",
310
+ "description": "รายงานระยะเวลาวันนอนรหัสโรคหลัก D70 และ R509",
311
+ "filters": ["Date"],
312
+ "fields": build_report_fields("pct_base_fields")
313
+ },
314
+
315
+ "med_upper_gi_bleeding": {
316
+ "name": "PCT Med_Upper GI bleeding",
317
+ "description": "รายงานระยะเวลาวันนอนรหัสโรคหลัก K922",
318
+ "filters": ["Date"],
319
+ "fields": build_report_fields("pct_base_fields")
320
+ },
321
+
322
+ "med_vte": {
323
+ "name": "PCT Med_VTE",
324
+ "description": "รายงานระยะเวลาวันนอนรหัส K645,K550,I676,I81,I80*,I82*",
325
+ "filters": ["Date"],
326
+ "fields": build_report_fields("pct_base_fields")
327
+ }
328
+
329
+ "med_stroke": {
330
+ "name": "PCT Med_Stroke Fast track",
331
+ "description": "รายงานระยะเวลาวันนอนรหัสโรค I63-I66",
332
+ "filters": ["Date"],
333
+ "fields": build_report_fields("pct_base_fields")
334
+ },
335
+
336
+ "surg_lc": {
337
+ "name": "PCT Surg_LC",
338
+ "description": "รายงานระยะเวลาวันนอนผู้ป่วยทำหัตถการรหัส 5123",
339
+ "filters": ["Date"],
340
+ "fields": build_report_fields("pct_base_fields")
341
+ },
342
+
343
+ "surg_hernia": {
344
+ "name": "PCT Surg_Inguinal Hernia",
345
+ "description": "รายงานระยะเวลาวันนอนรหัสโรค K40 ทั้งหมด",
346
+ "filters": ["Date"],
347
+ "fields": build_report_fields("pct_base_fields")
348
+ },
349
+
350
+ "surg_gastostomy": {
351
+ "name": "PCT Surg_Gastostomy",
352
+ "description": "รายงานระยะเวลาวันนอนผู้ป่วยทำหัตถการรหัส 4311 และ 4319",
353
+ "filters": ["Date"],
354
+ "fields": build_report_fields("pct_base_fields")
355
+ },
356
+
357
+ "surg_colostomy": {
358
+ "name": "PCT Surg_Colostomy",
359
+ "description": "รายงานระยะเวลาวันนอนผู้ป่วยทำหัตถการรหัส 4610-4614, 4603",
360
+ "filters": ["Date"],
361
+ "fields": build_report_fields("pct_base_fields")
362
+ },
363
+
364
+ "surg_hemorrhoidectomy": {
365
+ "name": "PCT Surg_Hemorrhoidectomy",
366
+ "description": "รายงานระยะเวลาวันนอนผู้ป่วยทำหัตถการรหัส 4941-4949",
367
+ "filters": ["Date"],
368
+ "fields": build_report_fields("pct_base_fields")
369
+ },
370
+
371
+ "surg_fistula": {
372
+ "name": "PCT Surg_Ligation of Internal Fistula Tract",
373
+ "description": "รายงานระยะเวลาวันนอนผู้ป่วยทำหัตถการรหัส 4973",
374
+ "filters": ["Date"],
375
+ "fields": build_report_fields("pct_base_fields")
376
+ },
377
+
378
+ "surg_fistulotomy": {
379
+ "name": "PCT Surg_Fistulotomy",
380
+ "description": "รายงานระยะเวลาวันนอนผู้ป่วยทำหัตถการรหัส 4911",
381
+ "filters": ["Date"],
382
+ "fields": build_report_fields("pct_base_fields")
383
+ },
384
+
385
+ "surg_sphincterotomy": {
386
+ "name": "PCT Surg_Lateral Internal Sphincterotomy",
387
+ "description": "Phase 2",
388
+ "filters": ["Date"],
389
+ "fields": build_report_fields("pct_base_fields")
390
+ },
391
+
392
+ "gyne_hysterectomy": {
393
+ "name": "PCT Gyne_Radical Hysterectomy",
394
+ "description": "Phase 2",
395
+ "filters": ["Date"],
396
+ "fields": build_report_fields("pct_base_fields")
397
+ },
398
+
399
+ "gyne_laparoscopic": {
400
+ "name": "PCT Gyne_Total Laparoscopic Hysterectomy",
401
+ "description": "Phase 2",
402
+ "filters": ["Date"],
403
+ "fields": build_report_fields("pct_base_fields")
404
+ }
405
+ }
406
+
407
+ # Define OR base fields from PDF
408
+ OR_TEMPLATES = {
409
+ "or_base_fields": {
410
+ "FacilityRmsNo": "", # ห้องผ่าตัด
411
+ "AN/VN": "เลขที่ประจำตัวคนไข้",
412
+ "RequestNo": "รหัสเคสการผ่าตัด",
413
+ "OperationDateTime": "วันที่ทำการผ่าตัด",
414
+ "OpertivePlan": "แพลนการทำหัตถการในห้องผ่าตัด"
415
+ }
416
+ }
417
+
418
+ # Define OR Reports structure
419
+ OR_REPORTS = {
420
+ "transaction": {
421
+ "name": "OR Transaction Amount report",
422
+ "description": "รายงานการผ่าตัดและค่าใช้จ่ายประจำวัน",
423
+ "filters": ["FacilityRms", "Date"],
424
+ "fields": {
425
+ **OR_TEMPLATES["or_base_fields"],
426
+ "HNActivityCode": "หมวดหมู่ค่าใช้จ่าย",
427
+ "ChargeDateTime": "วันที่คิดค่าใช้จ่าย",
428
+ "HNChargeType": "ประเภทการคิดเงิน",
429
+ "ChargeAmt": "จำนวนเงิน"
430
+ }
431
+ },
432
+
433
+ "emergency": {
434
+ "name": "OR Emergency type report",
435
+ "description": "รายงานการผ่าตัดประเภทเร่งด่วนฉุกเฉิน",
436
+ "filters": ["FacilityRms", "Date"],
437
+ "fields": {
438
+ "RequestNo": "รหัสเคสการผ่าตัด",
439
+ "HN": "เลขที่ประจำตัวคนไข้โรงพยาบาล",
440
+ "FacilityRmsNo": "รหัสประเภทห้องผ่าตัด",
441
+ "AppointmentNo": "วันที่นัดหมาย",
442
+ "ORConfirmDateTime": "วันที่ยืนยันทำการผ่าตัด",
443
+ "AttendDateTime": "หมวดหมู่ค่าใช้จ่าย",
444
+ "Surgeon": "แพทย์ผ่าตัด",
445
+ "ORCaseType": "ประเภทการผ่าตัด Emergency and Urgency",
446
+ "ORClassifiedType": "ประเภทการผ่าตัด Major, Minor",
447
+ "TranferTo": "ประเภทจำหน่ายผู้ป่วยออกจากห้องผ่าตัด",
448
+ "OperationProcedure": "แพลนการทำหัตถการในห้องผ่าตัด",
449
+ "ChargeAN": "เลขประจำตัวผู้ป่วยใน",
450
+ "ChargeVN": "เลขประจำตัวผู้ป่วยนอก",
451
+ "ChargeVisitDate": "วันที่มาโรงพยาบาล"
452
+ }
453
+ }
454
+ }
455
+
456
+ STAT_REPORTS = {
457
+ "hn_stat_ward": {
458
+ "name": "HN stat ward",
459
+ "description": "รายงานสถิติคนไข้ในหอผู้ป่วยทั้งหมด",
460
+ "filters": ["Ward", "Date"],
461
+ "fields": {
462
+ "StatDate": "วันที่สถิติ",
463
+ "WardName": "หอผู้ป่วย",
464
+ "NoBedInventory": "จำนวนเตียงรวม",
465
+ "NoBedOccBFW": "จำนวนการครองเตียง",
466
+ "NoPatientBFW": "จำนวนคนไข้",
467
+ "WellBabyBFW": "",
468
+ "NoBedUnAcknowledge": "เตียงที่ยังไม่กดรับเข้า",
469
+ "NoPatientAdm": "จำนวนคนไข้รับใหม่",
470
+ "NoPatientTransferIN": "จำนวนคนไข้รับเข้าจากหอผู้ป่วยอื่น",
471
+ "NoPatientTransferINFromICU": "จำนวนคนไข้รับเข้าจากหอผู้ป่วยวิกฤต",
472
+ "NoBedOccNew": "จำนวนเตียงรับใหม่",
473
+ "NoBedReserveUseCount": "",
474
+ "NoPatientDischarge": "จำนวนคนไข้จำหน่ายออก",
475
+ "NoPatientCxlAdm": "จำนวนคนไข้ยกเลิกรับเข้า",
476
+ "LengthOfStay": "จำนวนวันนอน",
477
+ "NoPatientDead": "จำนวนคนไข้เสียชีวิต",
478
+ "NoPatientTransferOUT": "จำนวนคนไข้ส่งต่อไปหอผู้ป่วยอื่น",
479
+ "NoPatientTransferOUTToICU": "จำนวนคนไข้ส่งต่อไปหอผู้ป่วยวิกฤต",
480
+ "NoBedReturn": "จำนวนการคืนเตียง",
481
+ "NoBedOccCF": "",
482
+ "NoPatientAdmER": "จำนวนคนไข้รับเข้าจากแผนกฉุกเฉิน",
483
+ "NoPatientAdmOPD": "จำนวนคนไข้รับเข้าจากแผนกผู้ป่วยนอก",
484
+ "NoPatientTransferINFromCCU": "จำนวนคนไข้รับเข้าจากหอผู้ป่วยวิกฤตหัวใจ"
485
+ }
486
+ },
487
+
488
+ "hn_stat_xray": {
489
+ "name": "HN stat x-ray",
490
+ "description": "รายงานสถิติจำนวนการส่งตรวจทางรังสีวินิจฉัย",
491
+ "filters": ["HNStat type", "Date"],
492
+ "fields": {
493
+ "StatDate": "วันที่สถิติ",
494
+ "FacilityRmsName": "รหัสประเภทกลุ่ม",
495
+ "XrayName": "ชื่อการตรวจทางรังสี",
496
+ "HNStatXrayCountTypName": "ประเภทข้อมูลสถิติ",
497
+ "HNStatName1": "คำอธิบายประเภทข้อมูลส��ิติ",
498
+ "Counter": "จำนวนการตรวจ",
499
+ "ExposureQty": "",
500
+ "TotalUsageQty": "",
501
+ "WasteQty": "",
502
+ "Amt": "จำนวนเงินรวม",
503
+ "CounterFemale": "จำนวนการตรวจเพศหญิง",
504
+ "CounterMale": "จำนวนการตรวจเพศชาย"
505
+ }
506
+ }
507
+ }
508
+
509
+ SUMMARY_REPORTS = {
510
+ "appointment_summary": {
511
+ "name": "Appointment summary by clinic",
512
+ "description": "รายงานจำนวนการนัดหมายแต่ละคลินิกรายเดือน",
513
+ "filters": ["Clinic", "Date"],
514
+ "fields": {
515
+ "AppointCount": "จำนวนการนัดหมายในแต่ละคลินิก"
516
+ }
517
+ },
518
+
519
+ "diagnosis_summary": {
520
+ "name": "Diagnosis(ICD) Summary",
521
+ "description": "รายงานอันดับการวินิจฉัยโรค(ICD10)",
522
+ "filters": ["Date"],
523
+ "fields": {
524
+ "DiagnosisCount": "จำนวนการวินิจฉัยโรค"
525
+ }
526
+ },
527
+
528
+ "visit_today_summary": {
529
+ "name": "Visit today Summary",
530
+ "description": "รายงานสถิติการเข้ารับบริการผู้ป่วยนอก",
531
+ "filters": ["Date"],
532
+ "fields": {
533
+ "VisitCount": "จำนวนการเข้ารับบริการ"
534
+ }
535
+ },
536
+
537
+ "visit_by_clinic": {
538
+ "name": "Visit summary by clinic",
539
+ "description": "รายงานสถิติการเข้ารับบริการผู้ป่วยนอกแยกตามคลินิก",
540
+ "filters": ["Clinic", "Date"],
541
+ "fields": {
542
+ "VisitCountByClinic": "จำนวนการเข้ารับบริการแยกตามคลินิก"
543
+ }
544
+ },
545
+
546
+ "telemedicine_by_clinic": {
547
+ "name": "Tele Medicine Summary by clinic",
548
+ "description": "รายงานสถิติการเข้ารับบริการผู้ป่วยTele medicineแยกตามคลินิก",
549
+ "filters": ["Clinic", "Date"],
550
+ "fields": {
551
+ "TeleMedVisitCount": "จำนวนการเข้ารับบริการ Telemedicine"
552
+ }
553
+ },
554
+
555
+ "doctor_performance": {
556
+ "name": "Doctor performance Summary",
557
+ "description": "รายงานสถิติการออกตรวจแพทย์",
558
+ "filters": ["Doctor", "Date"],
559
+ "fields": {
560
+ "DoctorPerformanceCount": "จำนวนการออกตรวจ"
561
+ }
562
+ },
563
+
564
+ "opd_treatment": {
565
+ "name": "OPD by treatment summary",
566
+ "description": "รายงานสถิติการให้บริการการรักษาผู้ป่วยนอก",
567
+ "filters": ["Date"],
568
+ "fields": {
569
+ "TreatmentCount": "จำนวนการให้บริการการรักษา"
570
+ }
571
+ }
572
+ }
573
+
574
+ # Define Other Reports structure
575
+ OTHER_REPORTS = {
576
+ "revenue": {
577
+ "name": "Revenue Report",
578
+ "description": "รายงานข้อมูลรายได้",
579
+ "filters": ["Date"],
580
+ "fields": {
581
+ "RevenueData": "ข้อมูลรายได้"
582
+ }
583
+ },
584
+
585
+ "laboratory": {
586
+ "name": "Laboratory Report",
587
+ "description": "รายงานการส่งตรวจทางห้องปฏิบัติการ",
588
+ "filters": ["Date"],
589
+ "fields": {
590
+ "LabData": "ข้อมูลการส่งตรวจทางห้องปฏิบัติการ"
591
+ }
592
+ },
593
+
594
+ "radiology": {
595
+ "name": "Radiology Report",
596
+ "description": "รายงานการส่งตรวจทางรังสีวินิจฉัย",
597
+ "filters": ["Date"],
598
+ "fields": {
599
+ "RadiologyData": "ข้อมูลการส่งตรวจทางรังสีวินิจฉัย"
600
+ }
601
+ },
602
+
603
+ "medicine": {
604
+ "name": "Medicine Report",
605
+ "description": "รายงานการจ่ายยา",
606
+ "filters": ["Date"],
607
+ "fields": {
608
+ "MedicineData": "ข้อมูลการจ่ายยา"
609
+ }
610
+ },
611
+
612
+ "pt": {
613
+ "name": "PT Report",
614
+ "description": "รายงานการให้บริการทางกายภาพบำบัด",
615
+ "filters": ["Date"],
616
+ "fields": {
617
+ "PTData": "ข้อมูลการให้บริการทางกายภาพบำบัด"
618
+ }
619
+ }
620
+ }
621
+
622
+ WEB_DATA_REPORTS = {
623
+ "OPD": {}, # OPD_REPORTS,
624
+ "IPD": {}, # IPD_REPORTS,
625
+ "PCT": {}, # PCT_REPORTS,
626
+ "OR": {}, # OR_REPORTS,
627
+ "STAT": {}, # STAT_REPORTS,
628
+ "SUMMARY": {}, # SUMMARY_REPORTS,
629
+ "OTHER": {} # OTHER_REPORTS
630
+ }