Is there a way I can use the CPT code with modifier from the order entry (charge set) to trigger visibility regions within a form? I would like for the physician to be able to enter the charges from a procedure, then the form for that procedure display the options for that procedure based on a visibility region that looks at the CPT code. It wold be nice if I could fill out other options in the form like number of units, Diagnosis, description.
You can use ORDERS_NEW() or ORDERS_ALL() to generate a list of orders.
Write a function to scan the orders list and return true or false if the specified CPT code is in the list.
In the Visibility Condition for the specified visibility field, use your function to trigger the appearance of the form components you need.