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

IBCNADD.m

Go to the documentation of this file.
  1. IBCNADD ;ALB/AAS - ADDRESS RETRIEVAL ENGINE FOR FILE 399 ; 29-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. ADD(DA) ; -- Retrive correct billing address for a bill
  1. ; assumes that new policy field points to valid ins. policy
  1. N X,Y,I,J,IB01,IB02,IBTYP,DFN,IBCNS,IBCDFN,IBCNT,IBAGAIN
  1. S IB02=""
  1. S DFN=$P($G(^DGCR(399,DA,0)),"^",2)
  1. S IBCNS=+$G(^DGCR(399,DA,"M")) G:'IBCNS MAINQ
  1. S IBCDFN=$P($G(^DGCR(399,DA,"M")),"^",12) I IBCDFN S IBCNS=+$G(^DPT(+DFN,.312,+IBCDFN,0))
  1. I '$D(^DIC(36,+IBCNS,0)) G MAINQ
  1. ;
  1. ; -- if send bill to employer and state is filled in use this
  1. I +$G(^DPT(DFN,.312,+IBCDFN,2)),+$P(^(2),"^",6) S IB02=$P(^(2),"^",2,99) G MAINQ
  1. ;
  1. MAIN ; -- determine address for company for type bill
  1. ;
  1. ; -- get main address
  1. S IB02=$S($D(^DIC(36,+IBCNS,.11)):^(.11),1:"")
  1. S IBCNT=$G(IBCNT)+1
  1. ;
  1. ; -- if process the same co. more than once you are in an infinate loop
  1. I $D(IBCNT(IBCNS)) G MAINQ ;already processed this company use main add
  1. S IBCNT(IBCNS)=""
  1. ;
  1. ; -- type of bill
  1. ; inpatient<3, outpatient>2
  1. S IBTYP=$P(^DGCR(399,DA,0),"^",5)
  1. S IBTYP=$S(IBTYP<3:"I",1:"O")
  1. D @IBTYP I $D(IBAGAIN) K IBAGAIN G MAIN
  1. ;
  1. ; -- return address
  1. MAINQ Q IB02
  1. ;
  1. I ; -- see if there is an inpatient address
  1. ; -- use if state is there
  1. I $P($G(^DIC(36,+IBCNS,.12)),"^",5) S IB02=$P($G(^(.12)),"^",1,6)
  1. ;
  1. ; -- if other company processes claims start again
  1. I $P($G(^DIC(36,+IBCNS,.12)),"^",7) S IBCNS=$P($G(^DIC(36,+IBCNS,.12)),"^",7) S IBAGAIN=1
  1. Q
  1. ;
  1. O ; -- see if there is an outpatient address
  1. ; -- use if state is there
  1. I $P($G(^DIC(36,+IBCNS,.16)),"^",5) S IB02=$P($G(^(.16)),"^",1,6)
  1. ;
  1. ; -- if other company processes claims start again
  1. I $P($G(^DIC(36,+IBCNS,.16)),"^",7) S IBCNS=$P($G(^DIC(36,+IBCNS,.16)),"^",7) S IBAGAIN=1
  1. Q