out = ''
if ( getValue('spaltelampe.right.missing') == '' )
then
out = out .. 'Spaltelampe, højre øje:\n'
if ( getValue('spaltelampe.right.konjuktiva') ~= '' )
then
out = out .. 'Konjuktiva: ' .. getValue('spaltelampe.right.konjuktiva') .. '\n'
end
out = out .. 'Cornea:\n'
if ( getValue('spaltelampe.right.epithel') ~= '' )
then
out = out .. ' Epithel: ' .. getValue('spaltelampe.right.epithel') .. '\n'
end
if ( getValue('spaltelampe.right.stroma') ~= '' )
then
out = out .. ' Stroma: ' .. getValue('spaltelampe.right.stroma') .. '\n'
end
if ( getValue('spaltelampe.right.flap') ~= '' )
then
out = out .. ' Flap: ' .. getValue('spaltelampe.right.flap') .. '\n'
end
if ( getValue('spaltelampe.right.folder') ~= '' )
then
out = out .. ' Folder: ' .. getValue('spaltelampe.right.folder') .. '\n'
end
if ( getValue('spaltelampe.right.interface.partikler') ~= '' or getValue('spaltelampe.right.interface.epithelindvaekst') ~= '' )
then
out = out .. ' Interface: '
if ( getValue('spaltelampe.right.interface.partikler') ~= '' )
then
out = out .. getValue('spaltelampe.right.interface.partikler')
if ( getValue('spaltelampe.right.interface.epithelindvaekst') ~= '' )
then
out = out .. ', '
end
end
if ( getValue('spaltelampe.right.interface.epithelindvaekst') ~= '' )
then
out = out .. getValue('spaltelampe.right.interface.epithelindvaekst') .. '\n'
else
out = out .. '\n'
end
end
if ( getValue('spaltelampe.right.endothel') ~= '' )
then
out = out .. ' Endothel: ' .. getValue('spaltelampe.right.endothel') .. '\n'
end
if ( getValue('spaltelampe.right.lens') ~= '' )
then
out = out .. 'Lens: ' .. getValue('spaltelampe.right.lens') .. '\n'
end
if ( getValue('spaltelampe.right.supplerende') ~= '' )
then
out = out .. getValue('spaltelampe.right.supplerende') .. '\n'
end
end
if ( getValue('spaltelampe.left.missing') == '' )
then
if ( getValue('spaltelampe.right.missing') == '' )
then
out = out .. '\n'
end
out = out .. 'Spaltelampe, venstre øje:\n'
if ( getValue('spaltelampe.left.konjuktiva') ~= '' )
then
out = out .. 'Konjuktiva: ' .. getValue('spaltelampe.left.konjuktiva') .. '\n'
end
out = out .. 'Cornea:\n'
if ( getValue('spaltelampe.left.epithel') ~= '' )
then
out = out .. ' Epithel: ' .. getValue('spaltelampe.left.epithel') .. '\n'
end
if ( getValue('spaltelampe.left.stroma') ~= '' )
then
out = out .. ' Stroma: ' .. getValue('spaltelampe.left.stroma') .. '\n'
end
if ( getValue('spaltelampe.left.flap') ~= '' )
then
out = out .. ' Flap: ' .. getValue('spaltelampe.left.flap') .. '\n'
end
if ( getValue('spaltelampe.left.folder') ~= '' )
then
out = out .. ' Folder: ' .. getValue('spaltelampe.left.folder') .. '\n'
end
if ( getValue('spaltelampe.left.interface.partikler') ~= '' or getValue('spaltelampe.left.interface.epithelindvaekst') ~= '' )
then
out = out .. ' Interface: '
if ( getValue('spaltelampe.left.interface.partikler') ~= '' )
then
out = out .. getValue('spaltelampe.left.interface.partikler')
if ( getValue('spaltelampe.left.interface.epithelindvaekst') ~= '' )
then
out = out .. ', '
end
end
if ( getValue('spaltelampe.left.interface.epithelindvaekst') ~= '' )
then
out = out .. getValue('spaltelampe.left.interface.epithelindvaekst') .. '\n'
else
out = out .. '\n'
end
end
if ( getValue('spaltelampe.left.endothel') ~= '' )
then
out = out .. ' Endothel: ' .. getValue('spaltelampe.left.endothel') .. '\n'
end
if ( getValue('spaltelampe.left.lens') ~= '' )
then
out = out .. 'Lens: ' .. getValue('spaltelampe.left.lens') .. '\n'
end
if ( getValue('spaltelampe.left.supplerende') ~= '' )
then
out = out .. getValue('spaltelampe.left.supplerende') .. '\n'
end
end
return out