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

IBARXEU.m

Go to the documentation of this file.
  1. IBARXEU ;AAS/ALB - RX EXEMPTION UTILITY ROUTINE ; 2-NOV-92
  1. ;;Version 2.0 ; INTEGRATED BILLING ;; 21-MAR-94
  1. ;;Per VHA Directive 10-93-142, this routine should not be modified.
  1. ;
  1. ;
  1. RXST(DFN,IBDT) ; -- Check rx income exemption status of patient
  1. ;
  1. ; input = : dfn = patient file pointer
  1. ; ibdt = date to check for (optional) default is today
  1. ;
  1. ; returns : -1 if no data ^text^reason code^reason text^date of test
  1. ; 0 if non exempt
  1. ; 1 if exempt
  1. ;
  1. N X,Y,IBX,IBON
  1. ;
  1. S IBON=$$ON^IBARXEU0 I IBON<1 Q IBON
  1. ;
  1. S IBX=""
  1. I '$G(IBDT) S IBDT=DT
  1. I IBDT>DT S IBDT=DT ; no future dates
  1. ;
  1. ; -- date before legislations
  1. I IBDT<$$STDATE S IBX="0^NON-EXEMPT^^Date is Prior to Legislation^" G RXSTQ ; nobody exempt prior to legislation
  1. ;
  1. ; -- if no data on patient quit
  1. S X=$G(^IBA(354,DFN,0)) I X=""!('$D(^IBA(354.1,"AP",DFN))) S IBX="-1^UNKNOWN^^Medication Copayment Exemption status never determined" G RXSTQ ; no data return -1
  1. ;
  1. ; -- use current status if ibdt not less than current test and
  1. ; not greater than current test date +365
  1. I IBDT'<$P(X,"^",3),IBDT'>$$PLUS^IBARXEU0($P(X,U,3)) S IBX=$$IBX^IBARXEU0(DFN,IBDT) G RXSTQ
  1. ;
  1. ; -- if ibdt not less than current date but greater than
  1. ; current test +365 is into future
  1. I IBDT'<$P(X,"^",3),IBDT>$$PLUS^IBARXEU0($P(X,U,3)) D
  1. .S Y=$$LST^IBARXEU0(DFN,IBDT)
  1. .S IBX=+$P(X,"^",4)_"^"_"Previously "_$$TEXT^IBARXEU0($P(X,"^",4))_"^"_$$ACODE^IBARXEU0(Y)_"^"_"Requires new exemption. Previously "_$$REASON^IBARXEU0(Y)_"^"_+Y
  1. ;
  1. ; -- if ibdt less than current date need old exemption data
  1. I IBDT<$P(X,"^",3) D G RXSTQ
  1. .;
  1. .; -- find status of prior test
  1. .S Y=$$LST^IBARXEU0(DFN,IBDT)
  1. .;
  1. .; -- no previous data
  1. .I Y="" D Q
  1. ..S IBX="-1^UNKNOWN^^No data for date requested."
  1. ..Q
  1. .;
  1. .; --if old exemption is current for copay date
  1. .I IBDT'>$$PLUS^IBARXEU0(+Y) D Q
  1. ..S X=$G(^IBE(354.2,+$P(Y,"^",5),0)) ; exemption reason node
  1. ..S IBX=+$P(X,"^",4)_"^"_$$TEXT^IBARXEU0($P(X,"^",4))_"^"_$$ACODE^IBARXEU0(Y)_"^"_$$REASON^IBARXEU0(Y)_"^"_+Y
  1. ..Q
  1. .;
  1. .; -- if ibdt is greater than old exemption + 365
  1. .; report previous
  1. .I IBDT>$$PLUS^IBARXEU0(+Y) D Q
  1. ..S X=$G(^IBE(354.2,+$P(Y,"^",5),0)) ;exemption reason node
  1. ..S IBX=+$P(X,"^",4)_"^"_"Previously "_$$TEXT^IBARXEU0($P(X,"^",4))_"^"_$$ACODE^IBARXEU0(Y)_"^"_"Requires new exemption. Previously "_$$REASON^IBARXEU0(Y)_"^"_+Y
  1. ..Q
  1. .Q
  1. ;
  1. RXSTQ Q IBX
  1. ;
  1. DISP(DFN,IBDT,NO,NULL) ; -- formats text to display
  1. ; -- input = dfn
  1. ; ibdt = date to check for
  1. ; no = number of lines to print (1, 2, or 3)
  1. ; null = if zero print unknown, if non-zero quit
  1. ;
  1. I '$G(IBDT) S IBDT=DT
  1. I '$D(NULL) S NULL=1
  1. I IBDT>DT S IBDT=DT ; no future dates
  1. I '$G(NO) S NO=3
  1. S X=$$RXST(DFN,IBDT)
  1. S IBON=$$ON^IBARXEU0 I IBON<1 S X=IBON
  1. I X<0&(NULL) G DISPQ
  1. W !,"Medication Copayment Exemption Status: ",$P(X,"^",2) G:NO<2 DISPQ
  1. W !,$P(X,"^",4) G:NO<3 DISPQ
  1. I $P(X,"^",5) W !,"Test date: " S Y=$P(X,"^",5) D DT^DIQ
  1. DISPQ Q
  1. ;
  1. STDATE() ; -- legislative start date for income exemption
  1. Q 2921030
  1. ;
  1. ;
  1. ACTIVE(IBZ) ; -- SCREEN for active field of billing exemptions file
  1. ; only one entry per effective date can be active
  1. ;
  1. N IBX,IBY,T
  1. S T=0
  1. S IBZ=$S(IBZ=1:IBZ,$E(IBZ)="A":1,1:0)
  1. I 'IBZ S T=1 G ACTIVEQ
  1. S IBX=$G(^IBA(354.1,DA,0))
  1. S IBY=$O(^IBA(354.1,"AIVDT",+$P(IBX,"^",3),+$P(IBX,"^",2),-$P(IBX,"^"),0))
  1. I 'IBY!(IBY=DA) S T=1
  1. W:$D(IBTALK) !!,"Another entry is already Active, You must inactivate it first",!!
  1. ACTIVEQ Q T