Profylax_dos*månad
Användaren ville kunna multiplicera samt addera resultat. Dock kan en beräkning bara ha ett svar så här får man skapa 4 beräkningar.
I demo-miljön finns en mall med 4 decimaltal (profylax_dos, manad1, manad2 och manad3). Mallen innehåller 4 beräkningar, se skärmbilder.
Här är koden om någon vill använda copy-paste.
when
questions: Questions()
eval(questions.get("profylax_dos") != null)
eval(questions.get("manad1") != null)
then
outcome.set(questions.get("profylax_dos") * questions.get("manad1"));
end
when
questions: Questions()
eval(questions.get("profylax_dos") != null)
eval(questions.get("manad2") != null)
then
outcome.set(questions.get("profylax_dos") * questions.get("manad2"));
end
when
questions: Questions()
eval(questions.get("profylax_dos") != null)
eval(questions.get("manad3") != null)
then
outcome.set(questions.get("profylax_dos") * questions.get("manad3"));
end