Subversion Repository Public Repository

Aurocare_27_07_2018

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
<?xml version="1.0" encoding="UTF-8"?>
<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="OpEncounterReport" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" isIgnorePagination="true" uuid="97d3348b-4682-4702-91d0-30f09ce91f12">
	<property name="ireport.zoom" value="1.0000000000000004"/>
	<property name="ireport.x" value="0"/>
	<property name="ireport.y" value="0"/>
	<parameter name="encounterId" class="java.lang.Long"/>
	<queryString>
		<![CDATA[SELECT
     CONCAT(t_patient.`patient_f_name`," ",t_patient.`patient_m_name`," ",t_patient.`patient_l_name`) AS patient_name,
     DATE_FORMAT(FROM_DAYS(TO_DAYS(NOW())-TO_DAYS(birth_date)),'%m%y') AS age,
     TIMESTAMPDIFF(YEAR,birth_date,CURDATE()) AS ageyr,
     TIMESTAMPDIFF(MONTH,birth_date,CURDATE())%12 AS agemn,
     t_pat_enc.`enc_id` AS t_pat_enc_enc_id,
     t_pat_enc.`mrn_id` AS t_pat_enc_mrn_id,
     t_pat_enc.`enc_date` AS t_pat_enc_enc_date,
     t_pat_enc.`schedule_id` AS t_pat_enc_schedule_id,
     t_pat_enc.`enc_status` AS t_pat_enc_enc_status,
     t_patient.`patient_id` AS t_patient_patient_id,
     t_patient.`patient_gender` AS t_patient_patient_gender,
     t_patient.`patient_ht_number` AS t_patient_patient_ht_number,
     t_doctor_appointment.`appointment_date` AS t_doctor_appointment_appointment_date,
     t_doctor_information.`doctor_name` AS t_doctor_information_doctor_name,
     t_doctor_information.`doctor_designation` AS t_doctor_information_doctor_designation,
     t_doctor_information.`doctor_address` AS t_doctor_information_doctor_address,
     t_doctor_information.`doctor_contact_number` AS t_doctor_information_doctor_contact_number,
     t_pat_enc_visithistory.`why_visiting` AS t_pat_enc_visithistory_why_visiting,
     t_pat_enc_vitalsign.`blood_pressure` AS t_pat_enc_vitalsign_blood_pressure,
     t_pat_enc_vitalsign.`weight` AS t_pat_enc_vitalsign_weight,
     t_pat_enc_vitalsign.`height` AS t_pat_enc_vitalsign_height,
     t_pat_enc_vitalsign.`pulse` AS t_pat_enc_vitalsign_pulse,
     t_pat_enc_vitalsign.`resp` AS t_pat_enc_vitalsign_resp,
     t_pat_enc_vitalsign.`temperature` AS t_pat_enc_vitalsign_temperature,
     t_pat_enc_vitalsign.`source` AS t_pat_enc_vitalsign_source,
     t_pat_enc_medication.`medication_id` AS t_pat_enc_medication_medication_id,
     t_pat_enc_medication.`dose` AS t_pat_enc_medication_dose,
     t_pat_enc_medication.`frequency` AS t_pat_enc_medication_frequency,
     t_pat_enc_medication.`route` AS t_pat_enc_medication_route,
     t_pat_enc_medication.`comments` AS t_pat_enc_medication_comments,
     t_pat_enc_diagnosis.`comments` AS t_pat_enc_diagnosis_comments,
     t_pat_enc_procedure.`order_date` AS t_pat_enc_procedure_order_date,
     t_pat_enc_procedure.`comments` AS t_pat_enc_procedure_comments,
     t_doctor_information.`doctor_email` AS t_doctor_information_doctor_email,
     t_pat_enc_visithistory.`follow_up` AS t_pat_enc_visithistory_follow_up,
     t_diagnosis_master.`diagnosis_name` AS t_diagnosis_master_diagnosis_name,
     t_pat_enc_diagnosis.`diagnosis_id` AS t_pat_enc_diagnosis_diagnosis_id,
     t_medication_master.`medication_name` AS t_medication_master_medication_name
FROM
     `t_patient` t_patient INNER JOIN `t_pat_enc` t_pat_enc ON t_patient.`id` = t_pat_enc.`mrn_id`
     INNER JOIN `t_doctor_appointment` t_doctor_appointment ON t_patient.`id` = t_doctor_appointment.`patient_name_id`
     AND t_doctor_appointment.`id` = t_pat_enc.`schedule_id`
     INNER JOIN `t_doctor_information` t_doctor_information ON t_doctor_appointment.`doctor_name_id` = t_doctor_information.`id`
     INNER JOIN `t_pat_enc_visithistory` t_pat_enc_visithistory ON t_pat_enc.`enc_id` = t_pat_enc_visithistory.`enc_id`
     INNER JOIN `t_pat_enc_vitalsign` t_pat_enc_vitalsign ON t_pat_enc.`enc_id` = t_pat_enc_vitalsign.`enc_id`
     INNER JOIN `t_pat_enc_medication` t_pat_enc_medication ON t_pat_enc.`enc_id` = t_pat_enc_medication.`enc_id`
     INNER JOIN `t_pat_enc_diagnosis` t_pat_enc_diagnosis ON t_pat_enc.`enc_id` = t_pat_enc_diagnosis.`enc_id`
     INNER JOIN `t_pat_enc_procedure` t_pat_enc_procedure ON t_pat_enc.`enc_id` = t_pat_enc_procedure.`enc_id`
     INNER JOIN `t_diagnosis_master` t_diagnosis_master ON t_pat_enc_diagnosis.`diagnosis_id` = t_diagnosis_master.`id`
     INNER JOIN `t_medication_master` t_medication_master ON t_pat_enc_medication.`medication_id` = t_medication_master.`id`
WHERE
     t_pat_enc.`enc_id` = $P{encounterId}]]>
	</queryString>
	<field name="patient_name" class="java.lang.String"/>
	<field name="age" class="java.lang.String"/>
	<field name="ageyr" class="java.lang.Long"/>
	<field name="agemn" class="java.lang.Long"/>
	<field name="t_pat_enc_enc_id" class="java.lang.Long"/>
	<field name="t_pat_enc_mrn_id" class="java.lang.Long"/>
	<field name="t_pat_enc_enc_date" class="java.sql.Timestamp"/>
	<field name="t_pat_enc_schedule_id" class="java.lang.Long"/>
	<field name="t_pat_enc_enc_status" class="java.lang.String"/>
	<field name="t_patient_patient_id" class="java.lang.String"/>
	<field name="t_patient_patient_gender" class="java.lang.String"/>
	<field name="t_patient_patient_ht_number" class="java.lang.Long"/>
	<field name="t_doctor_appointment_appointment_date" class="java.sql.Timestamp"/>
	<field name="t_doctor_information_doctor_name" class="java.lang.String"/>
	<field name="t_doctor_information_doctor_designation" class="java.lang.String"/>
	<field name="t_doctor_information_doctor_address" class="java.lang.String"/>
	<field name="t_doctor_information_doctor_contact_number" class="java.lang.Long"/>
	<field name="t_pat_enc_visithistory_why_visiting" class="java.lang.String"/>
	<field name="t_pat_enc_vitalsign_blood_pressure" class="java.lang.String"/>
	<field name="t_pat_enc_vitalsign_weight" class="java.lang.String"/>
	<field name="t_pat_enc_vitalsign_height" class="java.lang.String"/>
	<field name="t_pat_enc_vitalsign_pulse" class="java.lang.String"/>
	<field name="t_pat_enc_vitalsign_resp" class="java.lang.String"/>
	<field name="t_pat_enc_vitalsign_temperature" class="java.lang.String"/>
	<field name="t_pat_enc_vitalsign_source" class="java.lang.String"/>
	<field name="t_pat_enc_medication_medication_id" class="java.lang.Long"/>
	<field name="t_pat_enc_medication_dose" class="java.lang.String"/>
	<field name="t_pat_enc_medication_frequency" class="java.lang.String"/>
	<field name="t_pat_enc_medication_route" class="java.lang.String"/>
	<field name="t_pat_enc_medication_comments" class="java.lang.String"/>
	<field name="t_pat_enc_diagnosis_comments" class="java.lang.String"/>
	<field name="t_pat_enc_procedure_order_date" class="java.sql.Timestamp"/>
	<field name="t_pat_enc_procedure_comments" class="java.lang.String"/>
	<field name="t_doctor_information_doctor_email" class="java.lang.String"/>
	<field name="t_pat_enc_visithistory_follow_up" class="java.lang.String"/>
	<field name="t_diagnosis_master_diagnosis_name" class="java.lang.String"/>
	<field name="t_pat_enc_diagnosis_diagnosis_id" class="java.lang.Integer"/>
	<field name="t_medication_master_medication_name" class="java.lang.String"/>
	<background>
		<band splitType="Stretch"/>
	</background>
	<title>
		<band height="22" splitType="Stretch">
			<staticText>
				<reportElement uuid="4a07bb2b-ffb8-4fe7-8a62-11905b0966b3" x="207" y="0" width="182" height="22"/>
				<textElement textAlignment="Center" verticalAlignment="Middle">
					<font fontName="Bookman Old Style" size="12"/>
				</textElement>
				<text><![CDATA[OutPatient Encounter Report ]]></text>
			</staticText>
		</band>
	</title>
	<pageHeader>
		<band height="19" splitType="Stretch"/>
	</pageHeader>
	<columnHeader>
		<band height="16" splitType="Stretch"/>
	</columnHeader>
	<detail>
		<band height="518" splitType="Stretch">
			<rectangle>
				<reportElement uuid="0ecf5f2b-a68b-4665-8efc-d62314f036bd" x="292" y="99" width="259" height="20"/>
			</rectangle>
			<rectangle>
				<reportElement uuid="35d9b77e-1843-448f-9c20-f3ca42200529" x="3" y="99" width="259" height="20"/>
			</rectangle>
			<staticText>
				<reportElement uuid="daf82f22-5308-4f28-a070-40f25b12328d" x="3" y="347" width="100" height="23"/>
				<textElement textAlignment="Left" verticalAlignment="Middle">
					<font fontName="Bookman Old Style" size="11" isBold="true"/>
				</textElement>
				<text><![CDATA[Medication :]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="6c064c94-ad6a-4907-a58c-bf2ecec7090d" x="3" y="370" width="100" height="20"/>
				<box>
					<pen lineWidth="0.5"/>
					<topPen lineWidth="0.5"/>
					<leftPen lineWidth="0.5"/>
					<bottomPen lineWidth="0.5"/>
					<rightPen lineWidth="0.5"/>
				</box>
				<textElement textAlignment="Center" verticalAlignment="Middle">
					<font fontName="Bookman Old Style" size="11" isBold="false"/>
				</textElement>
				<text><![CDATA[Medication Name]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="1b1ee8dc-0d6e-4b21-b86d-2809125d4ec7" x="103" y="370" width="100" height="20"/>
				<box>
					<pen lineWidth="0.5"/>
					<topPen lineWidth="0.5"/>
					<leftPen lineWidth="0.5"/>
					<bottomPen lineWidth="0.5"/>
					<rightPen lineWidth="0.5"/>
				</box>
				<textElement textAlignment="Center" verticalAlignment="Middle">
					<font fontName="Bookman Old Style" size="11" isBold="false"/>
				</textElement>
				<text><![CDATA[Dose]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="b44758ab-ae40-4c18-a0c7-dcf9e969effd" x="203" y="370" width="100" height="20"/>
				<box>
					<pen lineWidth="0.5"/>
					<topPen lineWidth="0.5"/>
					<leftPen lineWidth="0.5"/>
					<bottomPen lineWidth="0.5"/>
					<rightPen lineWidth="0.5"/>
				</box>
				<textElement textAlignment="Center" verticalAlignment="Middle">
					<font fontName="Bookman Old Style" size="11" isBold="false"/>
				</textElement>
				<text><![CDATA[Frequency]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="bfaa0e62-cbf2-4fdf-aba6-296524865309" x="303" y="370" width="100" height="20"/>
				<box>
					<pen lineWidth="0.5"/>
					<topPen lineWidth="0.5"/>
					<leftPen lineWidth="0.5"/>
					<bottomPen lineWidth="0.5"/>
					<rightPen lineWidth="0.5"/>
				</box>
				<textElement textAlignment="Center" verticalAlignment="Middle">
					<font fontName="Bookman Old Style" size="11" isBold="false"/>
				</textElement>
				<text><![CDATA[Comments]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="5db38deb-15f9-41a8-8136-28ea12ed24ca" stretchType="RelativeToBandHeight" x="3" y="417" width="100" height="20" isPrintWhenDetailOverflows="true"/>
				<textElement>
					<font fontName="Bookman Old Style" size="11" isBold="true"/>
				</textElement>
				<text><![CDATA[Diagnosis :]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="b1264b32-a08b-4b49-b5a2-5a44adf6f52f" stretchType="RelativeToBandHeight" x="3" y="437" width="200" height="20" isPrintWhenDetailOverflows="true"/>
				<box>
					<pen lineWidth="0.5"/>
					<topPen lineWidth="0.5"/>
					<leftPen lineWidth="0.5"/>
					<bottomPen lineWidth="0.5"/>
					<rightPen lineWidth="0.5"/>
				</box>
				<textElement textAlignment="Center" verticalAlignment="Middle">
					<font fontName="Bookman Old Style" size="11"/>
				</textElement>
				<text><![CDATA[Diagnosis Name]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="5ca9f004-e503-4ea4-a0c4-3dad8ca185a9" stretchType="RelativeToBandHeight" x="203" y="437" width="200" height="20" isPrintWhenDetailOverflows="true"/>
				<box>
					<pen lineWidth="0.5"/>
					<topPen lineWidth="0.5"/>
					<leftPen lineWidth="0.5"/>
					<bottomPen lineWidth="0.5"/>
					<rightPen lineWidth="0.5"/>
				</box>
				<textElement textAlignment="Center" verticalAlignment="Middle">
					<font fontName="Bookman Old Style" size="11"/>
				</textElement>
				<text><![CDATA[Comments]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="7c4f136d-e3a4-4184-bbf5-3fa7882e5548" x="3" y="478" width="100" height="20"/>
				<textElement verticalAlignment="Top">
					<font size="11" isBold="true"/>
				</textElement>
				<text><![CDATA[Lab & Procedure :]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="ce0b6662-3032-4616-956f-3caebbc1c781" x="3" y="498" width="198" height="20"/>
				<box>
					<pen lineWidth="0.5"/>
					<topPen lineWidth="0.5"/>
					<leftPen lineWidth="0.5"/>
					<bottomPen lineWidth="0.5"/>
					<rightPen lineWidth="0.5"/>
				</box>
				<textElement textAlignment="Center" verticalAlignment="Middle">
					<font fontName="Bookman Old Style" size="11"/>
				</textElement>
				<text><![CDATA[Lab & Procedure]]></text>
			</staticText>
			<textField isBlankWhenNull="true">
				<reportElement uuid="50b2c4b9-10b3-4655-8046-5fc603b18d62" x="103" y="390" width="100" height="20"/>
				<box>
					<pen lineWidth="0.25"/>
					<topPen lineWidth="0.25"/>
					<leftPen lineWidth="0.25"/>
					<bottomPen lineWidth="0.25"/>
					<rightPen lineWidth="0.25"/>
				</box>
				<textElement textAlignment="Center" verticalAlignment="Middle"/>
				<textFieldExpression><![CDATA[$F{t_pat_enc_medication_dose}]]></textFieldExpression>
			</textField>
			<textField isBlankWhenNull="true">
				<reportElement uuid="513810d7-da63-4856-97fe-3fa2e86e6ee7" x="203" y="390" width="100" height="20"/>
				<box>
					<pen lineWidth="0.25"/>
					<topPen lineWidth="0.25"/>
					<leftPen lineWidth="0.25"/>
					<bottomPen lineWidth="0.25"/>
					<rightPen lineWidth="0.25"/>
				</box>
				<textElement textAlignment="Center" verticalAlignment="Middle"/>
				<textFieldExpression><![CDATA[$F{t_pat_enc_medication_frequency}]]></textFieldExpression>
			</textField>
			<textField isBlankWhenNull="true">
				<reportElement uuid="90618481-72d1-45f8-8204-b3bfa8a52c7d" x="303" y="390" width="100" height="20"/>
				<box>
					<pen lineWidth="0.25"/>
					<topPen lineWidth="0.25"/>
					<leftPen lineWidth="0.25"/>
					<bottomPen lineWidth="0.25"/>
					<rightPen lineWidth="0.25"/>
				</box>
				<textElement textAlignment="Left" verticalAlignment="Middle"/>
				<textFieldExpression><![CDATA[$F{t_pat_enc_medication_comments}]]></textFieldExpression>
			</textField>
			<textField isBlankWhenNull="true">
				<reportElement uuid="9a103701-3f82-46fd-a5a8-33ab5aae0fa6" stretchType="RelativeToBandHeight" x="203" y="457" width="200" height="20" isPrintWhenDetailOverflows="true"/>
				<box>
					<pen lineWidth="0.25"/>
					<topPen lineWidth="0.25"/>
					<leftPen lineWidth="0.25"/>
					<bottomPen lineWidth="0.25"/>
					<rightPen lineWidth="0.25"/>
				</box>
				<textElement verticalAlignment="Middle"/>
				<textFieldExpression><![CDATA[$F{t_pat_enc_diagnosis_comments}]]></textFieldExpression>
			</textField>
			<textField isStretchWithOverflow="true" isBlankWhenNull="true">
				<reportElement uuid="da1085b5-4e0a-44c2-b4e3-4f7ad650fe2e" stretchType="RelativeToBandHeight" x="3" y="457" width="200" height="20" isPrintWhenDetailOverflows="true"/>
				<box>
					<pen lineWidth="0.25"/>
					<topPen lineWidth="0.25"/>
					<leftPen lineWidth="0.25"/>
					<bottomPen lineWidth="0.25"/>
					<rightPen lineWidth="0.25"/>
				</box>
				<textElement verticalAlignment="Middle"/>
				<textFieldExpression><![CDATA[$F{t_diagnosis_master_diagnosis_name}]]></textFieldExpression>
			</textField>
			<textField isStretchWithOverflow="true" isBlankWhenNull="true">
				<reportElement uuid="52ed152c-9de8-4199-a4e3-cfcc65b9e22e" stretchType="RelativeToBandHeight" x="3" y="390" width="100" height="20"/>
				<box>
					<pen lineWidth="0.25"/>
					<topPen lineWidth="0.25"/>
					<leftPen lineWidth="0.25"/>
					<bottomPen lineWidth="0.25"/>
					<rightPen lineWidth="0.25"/>
				</box>
				<textElement verticalAlignment="Middle"/>
				<textFieldExpression><![CDATA[$F{t_medication_master_medication_name}]]></textFieldExpression>
			</textField>
			<staticText>
				<reportElement uuid="f2a98e20-1208-4370-acc5-5dcdbb352b13" x="-4" y="247" width="74" height="20"/>
				<textElement verticalAlignment="Middle">
					<font fontName="Bookman Old Style" size="11" isBold="true"/>
				</textElement>
				<text><![CDATA[Follow Up :]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="15b24eb5-4908-47ae-ba8e-381e9dc9b1da" x="-4" y="287" width="72" height="20"/>
				<textElement verticalAlignment="Middle">
					<font fontName="Bookman Old Style" size="11" isBold="true"/>
				</textElement>
				<text><![CDATA[Vitals :]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="00a4e622-18cc-4529-aebe-8a9c8d6c2ec4" x="16" y="327" width="40" height="20"/>
				<textElement verticalAlignment="Middle">
					<font fontName="Bookman Old Style"/>
				</textElement>
				<text><![CDATA[Resp :]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="08ec842a-17cd-447f-9e49-883067a58f1b" x="324" y="307" width="41" height="20"/>
				<textElement verticalAlignment="Middle">
					<font fontName="Bookman Old Style"/>
				</textElement>
				<text><![CDATA[BP :]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="122c2dfe-4120-437a-8c86-7bd51e0a3b14" x="16" y="307" width="40" height="20"/>
				<textElement verticalAlignment="Middle">
					<font fontName="Bookman Old Style"/>
				</textElement>
				<text><![CDATA[Height :]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="b8d8298c-f837-489b-81d3-c86b5cdf4773" x="161" y="307" width="42" height="20"/>
				<textElement verticalAlignment="Middle">
					<font fontName="Bookman Old Style"/>
				</textElement>
				<text><![CDATA[Weight :]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="089ba71a-2369-4a78-ab34-dc5800d16682" x="438" y="307" width="36" height="20"/>
				<textElement verticalAlignment="Middle">
					<font fontName="Bookman Old Style"/>
				</textElement>
				<text><![CDATA[Pulse :]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="ed6f841f-4c1c-4841-aead-07cb68979221" x="161" y="327" width="42" height="20"/>
				<textElement verticalAlignment="Middle">
					<font fontName="Bookman Old Style"/>
				</textElement>
				<text><![CDATA[Temp :]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="ba6837b6-beaa-4335-ba38-82309179a8d7" x="324" y="327" width="41" height="20"/>
				<textElement verticalAlignment="Middle">
					<font fontName="Bookman Old Style"/>
				</textElement>
				<text><![CDATA[Source :]]></text>
			</staticText>
			<textField isBlankWhenNull="true">
				<reportElement uuid="1587b13f-0b53-4693-b291-843bef61a037" x="-4" y="267" width="18" height="20"/>
				<textElement/>
				<textFieldExpression><![CDATA[$F{t_pat_enc_visithistory_follow_up}]]></textFieldExpression>
			</textField>
			<textField isBlankWhenNull="true">
				<reportElement uuid="5b3cd435-4857-46e7-88b5-4435fdbe83f6" x="56" y="307" width="105" height="20"/>
				<textElement verticalAlignment="Middle"/>
				<textFieldExpression><![CDATA[$F{t_pat_enc_vitalsign_height}]]></textFieldExpression>
			</textField>
			<textField isBlankWhenNull="true">
				<reportElement uuid="63073953-404f-4b4d-b1ad-ccb2b16675b4" x="203" y="307" width="121" height="20"/>
				<textElement verticalAlignment="Middle"/>
				<textFieldExpression><![CDATA[$F{t_pat_enc_vitalsign_weight}]]></textFieldExpression>
			</textField>
			<textField isBlankWhenNull="true">
				<reportElement uuid="cf179bd3-1226-4e85-94e0-407fbd95c0cd" x="365" y="307" width="73" height="20"/>
				<textElement verticalAlignment="Middle"/>
				<textFieldExpression><![CDATA[$F{t_pat_enc_vitalsign_blood_pressure}]]></textFieldExpression>
			</textField>
			<textField isBlankWhenNull="true">
				<reportElement uuid="36d60782-81ad-42f7-bdd3-37c354427824" x="474" y="307" width="77" height="20"/>
				<textElement verticalAlignment="Middle"/>
				<textFieldExpression><![CDATA[$F{t_pat_enc_vitalsign_pulse}]]></textFieldExpression>
			</textField>
			<textField isBlankWhenNull="true">
				<reportElement uuid="0cc2bfde-fa84-4d3c-b88f-e4188d029737" x="365" y="327" width="186" height="20"/>
				<textElement verticalAlignment="Middle"/>
				<textFieldExpression><![CDATA[$F{t_pat_enc_vitalsign_source}]]></textFieldExpression>
			</textField>
			<textField isBlankWhenNull="true">
				<reportElement uuid="59bfc7f0-a10e-49fb-89aa-b18f746478d1" x="203" y="327" width="121" height="20"/>
				<textElement verticalAlignment="Middle"/>
				<textFieldExpression><![CDATA[$F{t_pat_enc_vitalsign_resp}]]></textFieldExpression>
			</textField>
			<textField isBlankWhenNull="true">
				<reportElement uuid="c205b2ca-28ad-48ab-be83-3106d7500ba2" x="56" y="327" width="105" height="20"/>
				<textElement verticalAlignment="Middle"/>
				<textFieldExpression><![CDATA[$F{t_pat_enc_vitalsign_resp}]]></textFieldExpression>
			</textField>
			<staticText>
				<reportElement uuid="3649e24f-c106-4d71-a27b-9d2c27f188d3" x="14" y="267" width="54" height="20"/>
				<textElement/>
				<text><![CDATA[Days]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="9bdd21ff-db24-4a56-9dda-dc68c33d5246" x="0" y="206" width="100" height="20"/>
				<textElement verticalAlignment="Middle">
					<font fontName="Bookman Old Style" size="11" isBold="true"/>
				</textElement>
				<text><![CDATA[Why Visiting ?]]></text>
			</staticText>
			<textField isBlankWhenNull="true">
				<reportElement uuid="6409a61e-57e5-4500-96e9-81cf477dca50" x="0" y="226" width="555" height="20"/>
				<textElement/>
				<textFieldExpression><![CDATA[$F{t_pat_enc_visithistory_why_visiting}]]></textFieldExpression>
			</textField>
			<staticText>
				<reportElement uuid="6b26a928-291d-40a7-b04e-3d1e66eb6eaf" x="293" y="99" width="259" height="20"/>
				<textElement textAlignment="Left" verticalAlignment="Middle">
					<font fontName="Bookman Old Style" size="11" isBold="true"/>
				</textElement>
				<text><![CDATA[Doctor Details]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="dbf51702-da20-4145-b9b4-8e413d3f1e5c" x="0" y="119" width="36" height="20"/>
				<textElement verticalAlignment="Middle">
					<font fontName="Bookman Old Style" size="10"/>
				</textElement>
				<text><![CDATA[MRN :]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="38a9abe0-926f-40da-bfe6-4eced2f6da51" x="0" y="139" width="36" height="20"/>
				<textElement verticalAlignment="Middle">
					<font size="10"/>
				</textElement>
				<text><![CDATA[Name :]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="d1526f8f-2a12-4fb6-879b-49afddc29fef" x="0" y="159" width="36" height="20"/>
				<textElement verticalAlignment="Middle">
					<font fontName="Bookman Old Style" size="10"/>
				</textElement>
				<text><![CDATA[Sex :]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="8d30e8ae-3dd9-4202-a4eb-828461345047" x="0" y="179" width="36" height="20"/>
				<textElement verticalAlignment="Middle">
					<font fontName="Bookman Old Style" size="10"/>
				</textElement>
				<text><![CDATA[Age :]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="ed11997d-8fd3-4c1f-b004-f15cc8abfd21" x="293" y="119" width="93" height="20"/>
				<textElement verticalAlignment="Middle">
					<font fontName="Bookman Old Style" size="10"/>
				</textElement>
				<text><![CDATA[Attendant Doctor :]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="9a235bde-50eb-4b83-abfd-e0ea464b20d1" x="293" y="139" width="93" height="20"/>
				<textElement verticalAlignment="Middle">
					<font fontName="Bookman Old Style" size="10"/>
				</textElement>
				<text><![CDATA[Email :]]></text>
			</staticText>
			<textField isBlankWhenNull="true">
				<reportElement uuid="ee5e44dd-0788-4fe3-8521-ee7cade857d6" x="36" y="119" width="223" height="20"/>
				<textElement verticalAlignment="Middle"/>
				<textFieldExpression><![CDATA[$F{t_patient_patient_id}]]></textFieldExpression>
			</textField>
			<textField isBlankWhenNull="true">
				<reportElement uuid="d1b36050-2c6a-4af3-ba68-364fb83e6b79" x="36" y="139" width="223" height="20"/>
				<textElement verticalAlignment="Middle"/>
				<textFieldExpression><![CDATA[$F{patient_name}]]></textFieldExpression>
			</textField>
			<textField isBlankWhenNull="true">
				<reportElement uuid="8fb7f35b-6e1b-4c68-b449-4a897bbe1f9e" x="36" y="159" width="223" height="20"/>
				<textElement verticalAlignment="Middle"/>
				<textFieldExpression><![CDATA[$F{t_patient_patient_gender}]]></textFieldExpression>
			</textField>
			<textField isBlankWhenNull="true">
				<reportElement uuid="886e47d2-00b8-43c1-ba72-9f11c6bab7c7" x="36" y="179" width="14" height="20"/>
				<textElement verticalAlignment="Middle"/>
				<textFieldExpression><![CDATA[$F{ageyr}]]></textFieldExpression>
			</textField>
			<staticText>
				<reportElement uuid="f631acf3-1eb4-4376-adc7-433a65d7d259" x="50" y="179" width="17" height="20"/>
				<textElement verticalAlignment="Middle"/>
				<text><![CDATA[Yrs]]></text>
			</staticText>
			<staticText>
				<reportElement uuid="e76f08a2-a6a3-4248-b051-8e24a97356a0" x="81" y="179" width="100" height="20"/>
				<textElement verticalAlignment="Middle"/>
				<text><![CDATA[Months]]></text>
			</staticText>
			<textField isBlankWhenNull="true">
				<reportElement uuid="63c223fb-bc9c-440f-844b-b096f9a2e2b8" x="386" y="119" width="166" height="20"/>
				<textElement verticalAlignment="Middle"/>
				<textFieldExpression><![CDATA[$F{t_doctor_information_doctor_name}]]></textFieldExpression>
			</textField>
			<textField isBlankWhenNull="true">
				<reportElement uuid="11d378f3-1e6b-426a-9753-416c9b152c35" x="386" y="139" width="166" height="20"/>
				<textElement verticalAlignment="Middle"/>
				<textFieldExpression><![CDATA[$F{t_doctor_information_doctor_email}]]></textFieldExpression>
			</textField>
			<textField isBlankWhenNull="true">
				<reportElement uuid="4eeb18ff-746b-4d3e-9af2-e97faf97ff5b" x="67" y="179" width="14" height="20"/>
				<textElement verticalAlignment="Middle"/>
				<textFieldExpression><![CDATA[$F{agemn}]]></textFieldExpression>
			</textField>
			<staticText>
				<reportElement uuid="84101985-8b6e-403b-a3e2-91ced2c2e732" x="3" y="99" width="259" height="20"/>
				<textElement textAlignment="Left" verticalAlignment="Middle">
					<font fontName="Bookman Old Style" size="11" isBold="true"/>
				</textElement>
				<text><![CDATA[Patient Details]]></text>
			</staticText>
		</band>
	</detail>
	<columnFooter>
		<band height="45" splitType="Stretch"/>
	</columnFooter>
	<pageFooter>
		<band height="54" splitType="Stretch"/>
	</pageFooter>
	<summary>
		<band height="42" splitType="Stretch"/>
	</summary>
</jasperReport>

Commits for Aurocare_27_07_2018/AuroCareEMR/src/main/resources/reports/OpEncounterReport_1.jrxml

Diff revisions: vs.
Revision Author Commited Message
1 girijabapi picture girijabapi Fri 27 Jul, 2018 07:21:55 +0000