blob: 4118b785e8a97e695549c768f4900330e0f4b122 (
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
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
|
<?xml version='1.0' encoding='UTF-8'?>
<!--
20081204: Bent Bisballe Nyeng
Feltnavnene ændret så de giver mening.
-->
<!--
20090108: Bent Bisballe Nyeng
Højre/venstre byttet om.
-->
<!--
20090402: Bent Bisballe Nyeng
'missing eye' tilføjet.
-->
<macro name="B.2.2.4.2" version="1.0">
<resume language="lua">
out = ''
if ( getValue('oct.right.missing') == '' or getValue('oct.left.missing') == '' )
then
out = out .. 'Central nethindetykkelse:\n'
if ( getValue('oct.right.missing') == '' )
then
out = out .. 'OCT o.dxt ' .. getValue('oct.right.thickness') .. ' µm '
.. getValue('oct.right.description') .. '.\n'
end
if ( getValue('oct.left.missing') == '' )
then
out = out .. 'OCT o.sin ' .. getValue('oct.left.thickness') .. ' µm '
.. getValue('oct.left.description') .. '.\n'
end
end
if ( getValue('oct.comments') ~= '' )
then
out = out .. getValue('oct.comments') .. '\n'
end
return out
</resume>
<queries>
<query service="pracro" class="missing_eye_right" ttl="1000000"/>
<query service="pracro" class="missing_eye_left" ttl="1000000"/>
</queries>
<maps>
<map name="missing_eye_right_map">
value = 0
timestamp = 0
source = 'pracro'
if( missing_eye_right )
then
if( missing_eye_right.value and missing_eye_right.value == '' )
then
value = ''
timestamp = missing_eye_right.timestamp
else
value = 'mangler'
timestamp = missing_eye_right.timestamp
end
end
return value, timestamp, source
</map>
<map name="missing_eye_left_map">
value = 0
timestamp = 0
source = 'pracro'
if( missing_eye_left )
then
if( missing_eye_left.value and missing_eye_left.value == '' )
then
value = ''
timestamp = missing_eye_left.timestamp
else
value = 'mangler'
timestamp = missing_eye_left.timestamp
end
end
return value, timestamp, source
</map>
</maps>
<scripts>
<script language="lua" name="lt10000gt0">
value = string.gsub(value, ',', '.')
if(tonumber(value) >= 0 and tonumber(value) <= 10000)
then
return true
else
return false
end
</script>
<script language="lua" name="right_eye">
if ( value == 'mangler' )
then
disable('right_eye_frame')
else
enable('right_eye_frame')
end
return true
</script>
<script language="lua" name="left_eye">
if ( value == 'mangler' )
then
disable('left_eye_frame')
else
enable('left_eye_frame')
end
return true
</script>
</scripts>
<window caption="OCT, m. konklusion (B.2.2.4.2)"
layout="vbox">
<frame layout="hbox">
<!-- Højre øje -->
<frame layout="vbox">
<checkbox caption="Der er ikke målt på højre øje"
name="oct.right.missing" script="right_eye"
map="missing_eye_right_map"
truevalue="mangler" falsevalue="" value=""/>
<frame name="right_eye_frame" caption="Højre øje" layout="hbox">
<label caption="Tykkelse:"/>
<lineedit name="oct.right.thickness" regexp="\d{1,5}" script="lt10000gt0" value=""/>
<label caption="µm"/>
<combobox name="oct.right.description" type="select" value="">
<item caption="Pigmentepitelløsning" value="pigmentepitelløsning"/>
<item caption="Serøs amotio" value="serøs amotio"/>
<item caption="Cystoidt makulært ødem" value="cystoidt makulært ødem"/>
<item caption="Subretinal udfyldning" value="subretinal udfyldning"/>
<item caption="Retinal traktion" value="retinal traktion"/>
<item caption="Normal" value="normal"/>
</combobox>
</frame>
</frame>
<!-- Venstre øje -->
<frame layout="vbox">
<checkbox caption="Der er ikke målt på venstre øje"
name="oct.left.missing" script="left_eye"
map="missing_eye_left_map"
truevalue="mangler" falsevalue="" value=""/>
<frame name="left_eye_frame" caption="Venstre øje" layout="hbox">
<label caption="Tykkelse:"/>
<lineedit name="oct.left.thickness" regexp="\d{1,5}" script="lt10000gt0" value=""/>
<label caption="µm"/>
<combobox name="oct.left.description" type="select" value="">
<item caption="Pigmentepitelløsning" value="pigmentepitelløsning"/>
<item caption="Serøs amotio" value="serøs amotio"/>
<item caption="Cystoidt makulært ødem" value="cystoidt makulært ødem"/>
<item caption="Subretinal udfyldning" value="subretinal udfyldning"/>
<item caption="Retinal traktion" value="retinal traktion"/>
<item caption="Normal" value="normal"/>
</combobox>
</frame>
</frame>
</frame>
<frame layout="vbox">
<label caption="Kommentarer:"/>
<lineedit name="oct.comments" value=""/>
</frame>
<!-- Knapper -->
<frame layout="hbox">
<spacer />
<button caption="Gem" action="commit"/>
</frame>
</window>
</macro>
|