diff options
Diffstat (limited to 'server/xml/macros/oct_konklusion-1.0.xml')
| -rw-r--r-- | server/xml/macros/oct_konklusion-1.0.xml | 185 | 
1 files changed, 0 insertions, 185 deletions
| diff --git a/server/xml/macros/oct_konklusion-1.0.xml b/server/xml/macros/oct_konklusion-1.0.xml deleted file mode 100644 index 532b677..0000000 --- a/server/xml/macros/oct_konklusion-1.0.xml +++ /dev/null @@ -1,185 +0,0 @@ -<?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. - -    20090427: Bent Bisballe Nyeng -    'andet' mulighed tilfoejet til combo (altcombo). -  --> -<macro name="oct_konklusion" version="1.0"> -  <resume language="lua"> -    out = '' -    if ( getValue('oct.mangler.odxt') == '' or getValue('oct.mangler.osin') == '' ) -    then -      out = out .. 'Central nethinde konklusion:\n' - -      if ( getValue('oct.mangler.odxt') == '' ) -      then -        out = out .. 'OCT o.dxt ' .. getValue('oct.beskrivelse.odxt') .. '.\n' -      end - -      if ( getValue('oct.mangler.osin') == '' ) -      then -        out = out .. 'OCT o.sin ' .. getValue('oct.beskrivelse.osin') .. '.\n' -      end -    end - -    if ( getValue('oct.kommentarer') ~= '' ) -    then -      out = out .. getValue('oct.kommentarer') .. '\n' -    end - -    return out -  </resume> -  <queries> -    <query service="pracro" class="missing_eye_odxt" ttl="1000000"/> -    <query service="pracro" class="missing_eye_osin" ttl="1000000"/> -  </queries> -  <maps> -    <map name="missing_eye_odxt_map"> -      value = 0 -      timestamp = 0 -      source = '' - -      if( missing_eye_odxt ) -      then -        if( missing_eye_odxt.value and missing_eye_odxt.value == '' ) -        then -          value = '' -          timestamp = missing_eye_odxt.timestamp -          source = missing_eye_odxt.source -        else -          value = 'mangler' -          timestamp = missing_eye_odxt.timestamp -          source = missing_eye_odxt.source -        end -      end -      return value, timestamp, source -    </map> -    <map name="missing_eye_osin_map"> -      value = 0 -      timestamp = 0 -      source = '' -       -      if( missing_eye_osin ) -      then -        if( missing_eye_osin.value and missing_eye_osin.value == '' ) -        then -          value = '' -          timestamp = missing_eye_osin.timestamp -          source = missing_eye_osin.source -        else -          value = 'mangler' -          timestamp = missing_eye_osin.timestamp -          source = missing_eye_osin.source -        end -      end -      return value, timestamp, source -    </map> -  </maps> -  <scripts> -    <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> -  <widgets caption="OCT konklusion (B.2.2.4.2)" -          layout="vbox"> - -    <frame layout="hbox"> -       -      <!-- o.dxt --> -      <frame layout="vbox"> -	<checkbox caption="Der er ikke målt på o.dxt" -		  name="oct.mangler.odxt" script="right_eye" -		  map="missing_eye_odxt_map" -		  truevalue="mangler" falsevalue="" value=""/> - -	<frame name="right_eye_frame" caption="o.dxt" layout="hbox"> -	  <frame layout="vbox"> -	    <frame layout="hbox"> -	      <label caption="Tykkelse:"/> -	      <lineedit name="oct.tykkelse.odxt" value="" readonly="true"/> -	      <label caption="µm"/> -	    </frame> -	    <label caption=""/> -	  </frame> -	  <altcombobox name="oct.beskrivelse.odxt" type="select" value="normal" layout="vbox"> -	    <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"/>  -	    <altitem caption="Andet" innerwidget="octandetr" value="andet" layout="hbox">  -	      <label caption="Andet:"/> -	      <lineedit name="octandetr" value="" regexp=".+"/> -	    </altitem> -	  </altcombobox> -	</frame> -      </frame> - -      <!-- o.sin --> -      <frame layout="vbox"> -	<checkbox caption="Der er ikke målt på o.sin" -		  name="oct.mangler.osin" script="left_eye" -		  map="missing_eye_osin_map" -		  truevalue="mangler" falsevalue="" value=""/> -	<frame name="left_eye_frame" caption="o.sin" layout="hbox"> -	  <frame layout="vbox"> -	    <frame layout="hbox"> -	      <label caption="Tykkelse:"/> -	      <lineedit name="oct.tykkelse.osin" value="" readonly="true"/> -	      <label caption="µm"/> -	    </frame> -	    <label caption=""/> -	  </frame> -	  <altcombobox name="oct.beskrivelse.osin" type="select" value="normal" layout="vbox"> -	    <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"/>  -	    <altitem caption="Andet" innerwidget="octandetl" value="andet" layout="hbox">  -	      <label caption="Andet:"/> -	      <lineedit name="octandetl" value="" regexp=".+"/> -	    </altitem> -	  </altcombobox> -	</frame> -	 -      </frame> -    </frame> - -    <frame layout="vbox"> -      <label caption="Kommentarer:"/> -      <lineedit name="oct.kommentarer" value=""/> -    </frame> - -    <!-- Knapper --> -    <frame layout="hbox"> -      <spacer /> -      <button caption="Gem" action="commit"/> -    </frame> -  </widgets> -</macro> | 
