forked from IntelliSOFT-Consulting/BKKH-Forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdmission.html
104 lines (97 loc) · 3.59 KB
/
Admission.html
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
<htmlform formUuid="fc803dd8-aa3c-4de9-bd87-64ea7c947ae4" formName="Admissions" formEncounterType="d02513f0-8b7a-4040-9dbf-7a1eb62cc271" formVersion="1.0">
<style>
.background {
background-color: #888;
}
table.hospt {
border-collapse: collapse;
background-color: #000;
}
table.hospt > tbody > tr > td, table.hospt > tbody > tr > th {
border: 0;
vertical-align: baseline;
padding: 2px;
text-align: left;
background-color: #F3F9FF;
}
</style>
<script type="text/javascript">
jq(function () {
jq('input[type="checkbox"]').on('change', function() {
jq(this).siblings('input[type="checkbox"]').prop('checked', false);
});
});
</script>
<h2>Hospitalization Form for BKKH</h2>
<div class="background">
<div>
<table class="hospt">
<tbody>
<tr>
<td>Admission Date<encounterDate id="encounterDate" default="now" disallowMultipleEncountersOnDate="block"/></td>
<td>Discharge Date<obs conceptId="1641" allowTime="false" defaultDatetime="now"/></td>
</tr>
</tbody>
</table>
</div>
<div>
<table class="hospt">
<tbody>
<tr>
<td>
<uimessage code="coreapps.patientDashBoard.provider"/>
<encounterProvider default="currentUser" required="true" />
</td>
<td>
<uimessage code="coreapps.patientDashBoard.location"/>
<encounterLocation default="24"/>
</td>
</tr>
</tbody>
</table>
</div>
<br />
<div>
<repeat>
<template>
<table class="hospt">
<tbody>
<tr>
<td>
Diagnosis: <obs conceptId="6042AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" answerClasses="Diagnosis" style="autocomplete" />
</td>
<td>
<obs conceptId="159946AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" answerConceptId="159943AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" answerLabels="Primary" style="checkbox" />
<obs conceptId="159946AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" answerConceptId="159944AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" answerLabels="Secondary" style="checkbox" />
</td>
</tr>
</tbody>
</table>
</template>
<render n="1" concept="Diagnosis"/>
<render n="2" concept="Diagnosis"/>
<render n="3" concept="Diagnosis"/>
</repeat>
</div>
<div>
<table class="hospt">
<tbody>
<tr>
<td>
<p>
<label><uimessage code="coreapps.consult.freeTextComments"/></label>
<obs conceptId="CIEL:162169" style="textarea" rows="5"/>
</p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<ifMode mode="VIEW" include="false">
<div id="buttons">
<submit submitClass="confirm right" submitCode="general.save"/>
<button type="button" class="cancel"><uimessage code="general.cancel"/></button>
</div>
</ifMode>
</htmlform>