Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


Custom HTML template for printing

The list view in "OT Scheduling" has a print button for users to print the appointments listed. The print html is configurable to allow to custom print the columns or information needed.


Code Block
languagejs
titleConfig
"printListViewTemplateUrl" : "/bahmni_config/openmrs/apps/ot/printListView.html"


Autofill Planned procedures and estimated time

While creating a new appointment, the procedure and estimated times can be auto filled from information filled in the forms. Currently these are pulled from surgeon Pre-Op Assessment and Treatment Plan and Surgeon Follow-up form. The values to be selected in the SQL are ‘all_procedures’, ‘esthrs’, ‘estmins’. Users can write custom SQLs to return select these values and add the custom sql in this configuration. The sample is as below:


Code Block
languagejs
titleConfig
"procedureSQLGlobalProperty" : "bahmni sql query handler name"


example: 

"procedureSQLGlobalProperty": "emrapi.sqlSearch.plannedProcedureForPatient"

...