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

IBTRKR1.m

Go to the documentation of this file.
  1. IBTRKR1 ;ALB/AAS - CLAIMS TRACKER - AUTO-ENROLLER ; 4-AUG-93
  1. ;;Version 2.0 ; INTEGRATED BILLING ;; 21-MAR-94
  1. ;;Per VHA Directive 10-93-142, this routine should not be modified.
  1. ;
  1. RANDOM(IBSPEC) ; -- see if random sample
  1. ; -- input = treating specialty from 45.7 (piece 9 of dgpma)
  1. ; output = 1 if random sample
  1. ; 0 if not random sample
  1. ;
  1. N X,Y,RANDOM,IBTRKR,SVC
  1. S RANDOM=0
  1. I '$G(IBSPEC) G RQ
  1. S IBTRKR=$G(^IBE(350.9,1,6))
  1. I $$FMDIFF^XLFDT(DT,$P(IBTRKR,"^",7))>7 D UP1
  1. S SVC=$P($G(^DIC(42.4,+$P($G(^DIC(45.7,+IBSPEC,0)),"^",2),0)),"^",3)
  1. I SVC="" G RQ
  1. S X=$S(SVC="M":8,SVC="S":13,SVC="P":18,1:0)
  1. S NAME=$P($G(^DIC(42.4,+$P($G(^DIC(45.7,+IBSPEC,0)),"^",2),0)),"^")
  1. ;
  1. ; -- don't count drug and alcohol, substance abuse or intermediate specialties
  1. I NAME["ALCOHOL"!(NAME["DRUG")!(NAME["SUBSTANCE")!(NAME["ABUSE")!(NAME["INTERMEDIATE") G RQ
  1. ;
  1. I X S RANDOM=$$PROC(X)
  1. ;
  1. RQ Q RANDOM
  1. ;
  1. PROC(X) ; -- process random sample, x= Service="M":8,Service="S":13,Serv="P":18
  1. N SAMPLE,SAMPDT,COUNT,RANDNUM,RANDOM
  1. S RANDOM=0
  1. G:'$G(X) PQ
  1. G:$S(X=8:0,X=13:0,X=18:0,1:1) PQ
  1. S SAMPLE=$P(IBTRKR,"^",X) ; sample size
  1. ;I SAMPLE<1 S SAMPLE=1 ; default sample size = 1
  1. S SAMPTD=+$P(IBTRKR,"^",X+3) ; samples to date
  1. S COUNT=$P(IBTRKR,"^",X+4)+1 ; increment service counter
  1. S $P(^IBE(350.9,1,6),"^",X+4)=COUNT
  1. I SAMPLE'>SAMPTD G PQ ; sample size already met
  1. S RANDNUM=$P(IBTRKR,"^",X+2) ; get random number
  1. I RANDNUM<1 S RANDNUM=3 ; default randon number
  1. I COUNT#RANDNUM=0 S RANDOM=1 ; if count mod random number = 0 then is random sample
  1. I RANDOM S $P(^IBE(350.9,1,6),"^",X+3)=SAMPTD+1
  1. PQ Q RANDOM
  1. ;
  1. UPDATE ; -- weekly update of random sampler called from nightly job
  1. ;
  1. I $$DOW^XLFDT(DT,1)'=0 Q ; run on sunday night only
  1. ;
  1. UP1 ; -- enter here to force update, nightly job didn't update in over 7 days
  1. N IBX,IBTRKR,SAMPLE,COUNT,RANDNUM
  1. S $P(^IBE(350.9,1,6),"^",7)=DT
  1. S IBTRKR=$G(^IBE(350.9,1,6))
  1. F IBX=8,13,18 D
  1. .S SAMPLE=$P(IBTRKR,"^",IBX) ; get sample size
  1. .I SAMPLE<1 S SAMPLE=1 ; default = 1
  1. .S ADMNUM=$P(IBTRKR,"^",IBX+1) ; get ave. number of admissions
  1. .I ADMNUM<5 S ADMNUM=5 ; default = 5
  1. .F S RANDOM=$R(ADMNUM/SAMPLE)+1 I RANDOM>0,RANDOM'>ADMNUM Q
  1. .S $P(^IBE(350.9,1,6),"^",IBX,IBX+4)=SAMPLE_"^"_ADMNUM_"^"_RANDOM_"^0^0"
  1. Q
  1. ;
  1. CLEAR ; -- Clear random sampler
  1. ;
  1. N IBX
  1. S $P(^IBE(350.9,1,6),"^",7)=DT
  1. F IBX=8,13,18 S $P(^IBE(350.9,1,6),"^",IBX,IBX+4)="2^5^1^0^0"