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

ABSPOS6E.m

Go to the documentation of this file.
  1. ABSPOS6E ; IHS/FCS/DRS - more overflow from ^ABSPOS1 ;
  1. ;;1.0;PHARMACY POINT OF SALE;**11**;JUN 21, 2001;Build 38
  1. ;-------------------------------------------------
  1. ;IHS/SD/lwj 06/10/04 patch 11 terminal emulation problems
  1. ; OnNetHost interrupts "#" to mean for the cursor to advance
  1. ; to the top of the next page. "Other" emulations (including
  1. ; CRT and Tera Term) interrupt "#" to mean go to the top of
  1. ; the current screen and clear everything on this screen off.
  1. ; This was keeping the users at GIMC from being able to see
  1. ; the entire receipt. Logic adjusted to work at GIMC.
  1. ;-------------------------------------------------
  1. Q
  1. NAME(X) ;EP - from ABSPOS6D
  1. N % S %="DUR info" ; ="receipt"
  1. I '$G(X) Q %
  1. I X=3 ; S %=%_"s" ; plural
  1. I X=1 ; capitalize first letter
  1. I X=2 ; capitalize all
  1. Q %
  1. RECEIPTS(RXIIEN,IO) ;EP - from ABSPOS6D
  1. ; Given RXIIEN(*) array of RXIs for which to print receipts
  1. ; and IO = IO device, caller does open & close
  1. ; $P is current device when this finishes, but IO still open
  1. N PAT
  1. U $P W "Printing ",$$NAME(3),"...",!
  1. ; Group by patient ; RXI(pat,rxi)=""
  1. N RXI S RXI="" F S RXI=$O(RXIIEN(RXI)) Q:RXI="" D
  1. . S PAT=$P(^ABSPT(RXI,0),U,6)
  1. . S RXI(PAT,RXI)=""
  1. ; Now print them
  1. S PAT="" F S PAT=$O(RXI(PAT)) Q:PAT="" D
  1. . U $P W "... for ",$P(^DPT(PAT,0),U),"...",!
  1. . S RXI="" F S RXI=$O(RXI(PAT,RXI)) Q:RXI="" D
  1. . . N REVERSAL S REVERSAL=$$REVERSAL(RXI)
  1. . . I REVERSAL U IO D RECEIPT(REVERSAL,1) U $P
  1. . . N CLAIM S CLAIM=$$CLAIM(RXI)
  1. . . I 'CLAIM W ?5,"Nothing to print for prescription `",RXI,! H 1 Q
  1. . . N POSITION S POSITION=$P(^ABSPT(RXI,0),"^",9)
  1. . . I 'POSITION W ?5,"This might not be the right ",$$NAME,".",! H 1
  1. . . U IO D RECEIPT(CLAIM,POSITION) U $P
  1. ;
  1. ;IHS/SD/lwj 6/10/04 patch 11 - nxt line rmkd out, following added
  1. ;U IO I $Y'=0 W #
  1. I IO'=$P U IO I $Y'=0 W # ;IHS/SD/lwj 6/10/04 patch 11
  1. ;
  1. U $P W "Done",! H 1
  1. Q
  1. CLAIM(RXI) ; $$ return claim #
  1. N CLAIM
  1. ;S CLAIM=$G(^ABSPT(RXI,4))
  1. I 0 ;I CLAIM S CLAIM=$P(CLAIM,U) ; do the reversal if applicable
  1. E S CLAIM=$P(^ABSPT(RXI,0),U,4) ; else plain old claim
  1. Q CLAIM
  1. REVERSAL(RXI) Q $P($G(^ABSPT(RXI,4)),U)
  1. RECEIPT(CLAIM,POSITION) ; print a receipt for the given claim packet & pos
  1. N TMP D FILEMAN^ABSPECP1("TMP",CLAIM,,POSITION) ; sets TMP(*)
  1. N TAG S TAG=$P($G(^ABSP(9002313.99,1,"RECEIPT")),U) ; "ANMC" at ANMC
  1. I TAG="" S TAG="RECEIPT"
  1. D @(TAG_U_"ABSPECP3")
  1. Q