We are currently using the CCC Test Management form in our office visit template. It adds all new orders to the visit note including office visit charges. My providers do not want this information to appear on the office note but I cannot figure out how to limit the orders to Lab and Referral orders only. The form has a checkbox for all orders to be eliminated from the note but we would like the lab/referral orders to appear.
This is the function to add orders: fn ccc_Renal_TM_Add_New_Orders_to_Text_default() {"yes"}
However I cannot locate where this function is defined to try to edit it.
Thanks for any insight!
Cheryl
The chart note translation for your new orders does not come from the Test Management CCC form. It should be coming from another form within your document
It is definitely coming from Test Management- There is a check box at the top of the form that says "Add new orders to text"- I want to limit this to lab and referral orders only.
my mistake you're right. not sure where that function is defined.
Should be in the CCCQE-User-Edit-Test-Mgmt-Renal-TFE.txt file in your CCC directory.
So yes the function: fn ccc_Renal_TM_Add_New_Orders_to_Text_default() {"yes"}
is in that file but where does the function definition live? I need to try to edit the definition to limit to lab/referral orders only and exclude the service orders.
That is the function - it's only job is to return yes. You need to find out what is calling that function and edit it. In the XLW file of the clinical kit, the global variable _cc_TM_Add_New_Orders_to_Text_default is being set to the value of that function, which in this case is yes. You will need to follow that global variable through the code and adjust as needed from there.