[613] | 1 | IBQL538 ;LEB/MRY - IBQ EXTRACT DATA ; 6-JUN-95
|
---|
| 2 | ;;1.0;UTILIZATION MGMT ROLLUP LOCAL;;Oct 01, 1995
|
---|
| 3 | ;;Per VHA Directive 10-93-142, this routine should not be modified.
|
---|
| 4 | ;
|
---|
| 5 | Q
|
---|
| 6 | ADMIT ; -- Extract Admission Review iformation
|
---|
| 7 | ; -- input: IBTRN from ^ibq(538,ibtrn...
|
---|
| 8 | ; -- output: IB(array)=data
|
---|
| 9 | ; .01:entry id,.02:site,.03:ssn,.04:admitting diagnosis,.05:enroll code
|
---|
| 10 | ; .06:admitting phy,.07:attending phy,.08:resident phy,.09;admission
|
---|
| 11 | ; .1:discharge,.11:ward,.12:treating specialty,.13:acute adm?
|
---|
| 12 | ; 1.01:si from adm,1.02:is from adm,1.03:reasons from adm
|
---|
| 13 | ; 1.04:provider interviewed?,1.05:adm influenced?,1.06:rollup type
|
---|
| 14 | ; 1.07:service
|
---|
| 15 | F IBFLD=.01:.01:.13,1.01:.01:1.07,"ACUTE ADMISSION" S IB(IBFLD)=""
|
---|
| 16 | ADMD S IBTRND=$G(^IBQ(538,IBTRN,0)),IBTRND1=$G(^(1))
|
---|
| 17 | S IB(.01)=$P(IBTRND,"^"),IB(.02)=$P(IBTRND,"^",2),IB(.03)=$P(IBTRND,"^",3),IB(.04)=$P(IBTRND,"^",4),IB(.05)=$P(IBTRND,"^",5)
|
---|
| 18 | S IB(.06)=$P(IBTRND,"^",6),IB(.07)=$P(IBTRND,"^",7),IB(.08)=$P(IBTRND,"^",8),IB(.09)=$P(IBTRND,"^",9)
|
---|
| 19 | S IB(.1)=$P(IBTRND,"^",10),IB(.11)=$P(IBTRND,"^",11),IB(.12)=$P(IBTRND,"^",12),IB(.13)=$P(IBTRND,"^",13)
|
---|
| 20 | S IB(1.01)=$P(IBTRND1,"^"),IB(1.02)=$P(IBTRND1,"^",2),IB(1.03)=$P(IBTRND1,"^",3),IB(1.04)=$P(IBTRND1,"^",4)
|
---|
| 21 | S IB(1.05)=$P(IBTRND1,"^",5),IB(1.06)=$P(IBTRND1,"^",6),IB(1.07)=$P(IBTRND1,"^",7)
|
---|
| 22 | I 'IB(1.03)!IB(.13) S IB("ACUTE ADMISSION")=1
|
---|
| 23 | Q
|
---|
| 24 | ;
|
---|
| 25 | STAY ; -- Extract Continued Stay Review information
|
---|
| 26 | ; -- input: IBTRN, IBTRV from ^ibq(538,ibtrn,13,ibtrv...
|
---|
| 27 | ; -- output: IB(array)=data
|
---|
| 28 | ; 13.01:day, 13.02:is, 13.03:si, 13.04:d/s, 13.05:interviewed?
|
---|
| 29 | ; 13.06:reasons, 13.07:treating specialty, 13.08:service
|
---|
| 30 | F IBFLD=.01:.01:.08,"ACUTE STAY" S:IBFLD IB(13+IBFLD)="" S:'IBFLD IB(IBFLD)=""
|
---|
| 31 | STAYD S IBTRVD=$G(^IBQ(538,IBTRN,13,IBTRV,0))
|
---|
| 32 | S IB(13.01)=$P(IBTRVD,"^",1),IB(13.02)=$P(IBTRVD,"^",2),IB(13.03)=$P(IBTRVD,"^",3),IB(13.04)=$P(IBTRVD,"^",4)
|
---|
| 33 | S IB(13.05)=$P(IBTRVD,"^",5),IB(13.06)=$P(IBTRVD,"^",6),IB(13.07)=$P(IBTRVD,"^",7),IB(13.08)=$P(IBTRVD,"^",8)
|
---|
| 34 | I 'IB(13.06) S IB("ACUTE STAY")=1
|
---|
| 35 | Q
|
---|