| DESCRIPTION OF ENHANCEMENTS |
This patch will resolve the following issue:
Problem:
--------
The West Haven VA Medical Center reported that whenever they tried to finish
an Intravenous (IV) clinic order for an patient not admitted (outpatient)
using the Inpatient Order Entry [PSJ OE] option it did not warn the user that
the clinic for the order is not setup for BCMA (shown below). For a Unit Dose
(UD) clinic order the option properly displayed the warning below:
Clinic CHY AQUATIC EXERCISE is not defined in the CLINIC DEFINITION
(#53.46) file.
This order will NOT display in BCMA, unless the clinic is defined in the
CLINIC DEFINITION (#53.46) file, and the SEND TO BCMA (#3) field is set
to YES.
Please contact your Pharmacy ADPAC.
Note: This issue is also being considered a Patient Safety Issue (PSI) and
the number assigned by the Patient Safety team is HITPS-8005.
1) INC18070852 - Clinic Not Setup for BCMA Issue not firing for IV orders
Resolution:
----------
It was confirmed that the warning only displayed for UD clinic orders and not
for IV clinic orders. The code was changed to also perform the check for IV
clinic orders during finish and it will now display the message above when
necessary.
Technical Resolution:
--------------------
HITPS-8005
The ENTRY ACTION field for the protocol PSJI LM FINISH did not contain a call
to the API CWARN^PSJBCMA6 responsible for performing the check mentioned
above. The ENTRY ACTION field was modified the following way:
Before:
-------
S PSJINFIN=1 K ^TMP("PSJINTER",$J) D OVRDISF^PSGSICH2($G(DFN),$G(PSJORD),2)
D FINISH^PSJLIFN D SETIVINT^PSGSICH1
After:
------
S PSJINFIN=1 K ^TMP("PSJINTER",$J) D CWARN^PSJBCMA6($G(DFN),$G(PSJORD)),
OVRDISF^PSGSICH2($G(DFN),$G(PSJORD),2) D FINISH^PSJLIFN D SETIVINT^PSGSICH1
Patient Safety Issues (PSIs):
-----------------------------
HITPS-8005
Defect Tracking System Ticket(s) & Overview:
--------------------------------------------
1) INC18070852 - Clinic Not Setup for BCMA Issue not firing for IV orders
HITPS-8005
|