I have a couple of text components with headers that are bold. When the encounter is started the headers populate in the text in bold and stay that way when the document is put on hold. However when the document is signed they do not appear in bold. What is causing this?
Current Medications:(this header is bold and 2 sizes bigger)
{'{gPrettyMedList}'} {if MEDS_AFTER() == "" then "No known medications." else "" endif}
function is built into a form within the encounter as such:
{!fn fnPrettyMeds(strList){
local m4SummDashList = ""
local m4SummDashList2 = ""
local m4SummDashASort = ""
local m4SummDashArray = getfield(strList,"|","")
local i = ""
local z = ""
for i = 1, i <= size(m4SummDashArray), i = i + 1
do
m4SummDashArray[i] = getfield(m4SummDashArray[i],"^","")
m4SummDashList = m4SummDashList + (if m4SummDashList == "" then "" else "|" endif) + m4SummDashArray[i][1] + " ("+ m4SummDashArray[i][2] + ") " + tolower(m4SummDashArray[i][7])
endfor
m4SummDashASort = getfield(m4SummDashList,"|","")
m4SummDashASort = sort(m4SummDashASort,TRUE)
for z = 1, z <= size(m4SummDashASort), z = z + 1
do
m4SummDashList2 = m4SummDashList2 + if m4SummDashASort[z] == "" then "" else str(z) + ") " + m4SummDashASort[z] + HRET endif
endfor
return m4SummDashList2
}}
{gPrettyMedList = fnPrettyMeds(MEDS_AFTER("delimited"))}
{!gPrettyMedList}