source: FOIAVistA/tag/r/INTEGRATED_BILLING-IB-PRQ--IBD--IBQ--PRQS/IBCRBG1.m@ 628

Last change on this file since 628 was 628, checked in by George Lilly, 14 years ago

initial load of FOIAVistA 6/30/08 version

File size: 1.0 KB
Line 
1IBCRBG1 ;ALB/ARH - RATES: BILL SOURCE EVENTS (OPT,CPT) ; 5/21/96
2 ;;2.0;INTEGRATED BILLING;**52,106,148,245**;21-MAR-94
3 ;;Per VHA Directive 10-93-142, this routine should not be modified.
4 ;
5OPTVD(IBIFN,ARR) ; outpatient visit dates on a bill
6 ; returns ARR = cnt of visit dates found
7 ; ARR(DA of visit) = date
8 ;
9 N IBI,IBX K ARR S ARR=0,IBIFN=+$G(IBIFN)
10 S IBI=0 F S IBI=$O(^DGCR(399,IBIFN,"OP",IBI)) Q:'IBI D
11 . S IBX=+$G(^DGCR(399,IBIFN,"OP",IBI,0))
12 . I +IBX S ARR=ARR+1,ARR(+IBI)=IBX
13 Q
14 ;
15CPT(IBIFN,ARR) ; find all CPT codes for a bill (excludes ICD9)
16 ; returns ARR = cnt of CPT's found
17 ; ARR(CPT,DA of CPT) = date ^ modifiers ^ division ^ provider ^ clinic ^ ptr to 409.68 ^ minutes ^ miles ^ hours
18 ;
19 N IBI,IBX K ARR S ARR=0,IBIFN=+$G(IBIFN)
20 S IBI=0 F S IBI=$O(^DGCR(399,IBIFN,"CP",IBI)) Q:'IBI D
21 . S IBX=$G(^DGCR(399,IBIFN,"CP",IBI,0))
22 . I +IBX,IBX[";ICPT(" S ARR=ARR+1,ARR(+IBX,IBI)=$P(IBX,U,2)_U_$$GETMOD^IBEFUNC(IBIFN,IBI)_U_$P(IBX,U,6)_U_$P(IBX,U,18)_U_$P(IBX,U,7)_U_$P(IBX,U,20)_U_$P(IBX,U,16)_U_$P(IBX,U,21)_U_$P(IBX,U,22)
23 Q
Note: See TracBrowser for help on using the repository browser.