blob: f2b3e6818c136aa270bd0561ddbb20e53acb03a3 (
plain)
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
|
<?xml version='1.0' encoding='UTF-8'?>
<macro name="B.0" version="1.0">
<resume store_in_journal="false"/>
<queries>
<query service="pentominos" class="cpr" ttl="1000000"/>
<query service="pentominos" class="referral" ttl="1000000"/>
</queries>
<maps>
</maps>
<scripts>
</scripts>
<window caption="Patient informationer (B.0)"
layout="hbox">
<!-- Patient info -->
<frame layout="vbox">
<frame layout="hbox">
<label caption="Navn:" width="50"/>
<lineedit name="name" map="cpr.name" value="Patienten kunne ikke findes" readonly="true"/>
</frame>
<frame layout="hbox">
<label caption="Cpr-nr:" width="50"/>
<lineedit name="cpr" map="cpr.cpr" value="-" readonly="true"/>
</frame>
</frame>
<!-- Henvisnings info -->
<frame layout="vbox">
<frame layout="hbox">
<label width="100" caption="Henvisende læge:"/>
<lineedit name="referral.doctor" map="henvisning.doctor" value="Henvisnings informationer kunne ikke findes" readonly="true"/>
</frame>
<frame layout="hbox">
<label width="100" caption="Henvisningskode:"/>
<lineedit name="referral.diagnosecode" map="henvisning.code" value="-" readonly="true"/>
<label width="60" caption="Diagnose:"/>
<lineedit width="200" name="referral.diagnose" map="henvisning.diagnose" value="-" readonly="true"/>
</frame>
</frame>
</window>
</macro>
|