Home   Package List   Routine Alphabetical List   Global Alphabetical List   FileMan Files List   FileMan Sub-Files List   Package Component Lists   Package-Namespace Mapping  
Routine: BEXRUTL

BEXRUTL.m

Go to the documentation of this file.
  1. BEXRUTL ;IHS/CMI/DAY - Print reports [ 03/02/2010 11:14 AM ] ; 12 Mar 2012 4:21 PM
  1. ;;1.0;BEX TELEPHONE REFILL SYSTEM;**4,5**;MAR 12, 2012;Build 1
  1. ;
  1. ;Report Utilities
  1. ;
  1. ;IHS/CMI/DAY - 07/26/2011 - Patch 5 - Add Mail/Window field for CMOP
  1. Q
  1. ;
  1. PARSE ;EP - Parse BEX Transaction and lookup variables
  1. ;
  1. ;Set Patient IEN
  1. S BEXPTIEN=""
  1. S BEXPTIEN=$P(BEX(0),U)
  1. ;
  1. ;Set Transaction Date/Time
  1. S BEXTXDAT=""
  1. S BEXTXDAT=$P(BEX(0),U,2)
  1. ;
  1. ;Calculate Transaction Date
  1. S BEXDAT=$P(BEXTXDAT,".")
  1. ;
  1. ;Calculate Transaction Time
  1. S BEXTIM=$P(BEXTXDAT,".",2)
  1. ;
  1. ;Set RX Number
  1. S BEXRXNUM=""
  1. S BEXRXNUM=$P(BEX(0),U,3)
  1. ;
  1. ;Calculate RX IEN
  1. S BEXRXIEN=""
  1. I BEXRXNUM]"" S BEXRXIEN=$O(^PSRX("B",BEXRXNUM,0))
  1. ;
  1. ;Calculate Mail/Window
  1. S BEXMLWIN=""
  1. I +BEXRXIEN S BEXMLWIN=$P(^PSRX(BEXRXIEN,0),U,11)
  1. ;
  1. ;Set Type
  1. S BEXTYPE=""
  1. S BEXTYPE=$P(BEX(0),U,4)
  1. ;
  1. ;Set Result
  1. S BEXRESLT=""
  1. S BEXRESLT=$P(BEX(0),U,5)
  1. ;Check for invalid result, like ",0"
  1. I BEXRESLT?1P.E S BEXRESLT=""
  1. ;
  1. ;Set Renewal
  1. S BEXRENWL=""
  1. S BEXRENWL=$P(BEX(0),U,6)
  1. ;
  1. ;Set Division IEN
  1. S BEXDVIEN=""
  1. S BEXDVIEN=$P(BEX(0),U,10)
  1. ;
  1. ;Set Drug IEN
  1. S BEXDRIEN=""
  1. S BEXDRIEN=$P(BEX(0),U,11)
  1. ;
  1. ;Calculate Drug IEN if not in Piece 10
  1. I BEXDRIEN="",+BEXRXIEN S BEXDRIEN=$P(^PSRX(BEXRXIEN,0),U,6)
  1. ;
  1. ;Calculate Drug Name
  1. S BEXDRNAM=""
  1. I +BEXDRIEN S BEXDRNAM=$P(^PSDRUG(BEXDRIEN,0),U)
  1. ;
  1. ;Calculate Refill Date
  1. ;We want the first date AFTER the transaction date
  1. S BEXRFDAT=""
  1. I BEXRXIEN D
  1. .;
  1. .S Y=0
  1. .F S Y=$O(^PSRX(BEXRXIEN,1,Y)) Q:'Y D Q:BEXRFDAT]""
  1. ..;
  1. ..;Set Refill Date
  1. ..S X=$P(^PSRX(BEXRXIEN,1,Y,0),U)
  1. ..I X<$P(BEXTXDAT,".") Q
  1. ..I X=$P(BEXTXDAT,".") S BEXRFDAT=X
  1. ..I X>$P(BEXTXDAT,".") S BEXRFDAT=X
  1. ..;
  1. ..;Set Pharmacist
  1. ..S BEXRPH=""
  1. ..S BEXRPH=$P(^PSRX(BEXRXIEN,1,Y,0),U,5)
  1. ..;
  1. ..;IHS/CMI/DAY - Patch 5 - Add Mail/Window field for CMOP
  1. ..;Get Mail or Window for CMOP
  1. S BEXMAIL=$P(BEX(0),U,12)
  1. ;
  1. Q
  1. ;