137 lines
4.0 KiB
Mathematica
137 lines
4.0 KiB
Mathematica
|
IVMUM1 ;ALB/SEK - MEANS TEST UPLOAD DRIVER ; 3/6/01 5:13pm
|
||
|
;;2.0;INCOME VERIFICATION MATCH;**1,8,34**;21-OCT-94
|
||
|
;;Per VHA Directive 10-93-142, this routine should not be modified.
|
||
|
;
|
||
|
EN ; this routine will call routines to upload means tests sent by the IVM
|
||
|
; Center in HL7 segments. the required sequence of these segments were
|
||
|
; validated in the calling routine IVMPREC7. this routine will call
|
||
|
; IVMUCHK to ensure that the data is consistent with DHCP means test
|
||
|
; file and software requirements.
|
||
|
;
|
||
|
; entries will be added/modified in the following means test and
|
||
|
; patient files:
|
||
|
;
|
||
|
; PATIENT RELATION (#408.12)
|
||
|
; INCOME PERSON (#408.13)
|
||
|
; INDIVIDUAL ANNUAL INCOME (#408.21)
|
||
|
; INCOME RELATION (#408.22)
|
||
|
; ANNUAL MEANS TEST (#408.31)
|
||
|
; MEANS TEST CHANGES (#408.41)
|
||
|
; PATIENT (#2)
|
||
|
;
|
||
|
; current year is date of means test.
|
||
|
; income year is calendar year before date of means test.
|
||
|
; meant test status is based on income year data.
|
||
|
;
|
||
|
; IVMDAP is pointer to the PID HL7 segment in file #772
|
||
|
; IVMDAZ is pointer to the ZMT segment
|
||
|
;
|
||
|
S:'$D(DUZ) DUZ=.5 ; if no DUZ set to postmaster
|
||
|
;
|
||
|
; get copay exemption status (IVMCEB) and means test status (IVMMTB)
|
||
|
; before upload
|
||
|
S IVMCEB=$P($$RXST^IBARXEU(DFN),"^",2)
|
||
|
S IVMMTB=$P($$LST^DGMTU(DFN),"^",3)
|
||
|
;
|
||
|
; subscript of array IVMAR is ien of 408.12 transmitted by IVM Center
|
||
|
; or created by upload.
|
||
|
K IVMAR
|
||
|
S IVMX=$$EN^IVMUCHK() I IVMX]"" S HLERR=IVMX K IVMX Q ; error found in MT data
|
||
|
;
|
||
|
ADD ; add new annual means test file (408.31) stub
|
||
|
; input DGMTDT (.01) dt of test
|
||
|
; DFN (.02) Patient IEN
|
||
|
; DGMTYPT (.19) type of test (1-means test)
|
||
|
; output DGMTI annual means test IEN
|
||
|
S DGMTDT=IVMMTDT,DGMTYPT=1
|
||
|
D ADD^DGMTA
|
||
|
;
|
||
|
; change primary income test for year? code from 1 to 0 for
|
||
|
; IVM means test.
|
||
|
S DA=DGMTI,DIE="^DGMT(408.31,",DR="2////0"
|
||
|
D ^DIE K DA,DIE,DR
|
||
|
;
|
||
|
D GETREL^DGMTU11(DFN,"VSC",DGLY,IVMMTIEN)
|
||
|
;
|
||
|
; add dependent(s) to income person file (408.13)
|
||
|
;
|
||
|
; add spouse if not in 408.13
|
||
|
S IVMSPCHV="S" ; spouse/child/vet indicator
|
||
|
S IVMDA1=IVMDAP+3 D GET ; spouse ZDP segment
|
||
|
D INPIEN^IVMUM2
|
||
|
Q:$D(IVMFERR)
|
||
|
;
|
||
|
I IVMFLG5 G ADDCHILD ; entry not added - goto add children
|
||
|
;
|
||
|
; add entry to patient relation file (408.12)
|
||
|
D EN^IVMUM3
|
||
|
Q:$D(IVMFERR)
|
||
|
;
|
||
|
ADDS21 ; add spouse entry to individual annual income file (408.21)
|
||
|
S IVMDA1=IVMDAP+4 D GET ; spouse ZIC segment
|
||
|
D EN^IVMUM4
|
||
|
Q:$D(IVMFERR)
|
||
|
;
|
||
|
; add spouse entry to income relation file (408.22)
|
||
|
S IVMDA1=IVMDAP+5 D GET ; spouse ZIR segment
|
||
|
D EN^IVMUM5
|
||
|
Q:$D(IVMFERR)
|
||
|
;
|
||
|
ADDCHILD ; add children if not in 408.13
|
||
|
S IVMSPCHV="C" ; spouse/child/vet indicator
|
||
|
I 'IVMFLGC G ADDV21 ; no dependent children
|
||
|
S IVMCTR2=5
|
||
|
F IVMCTR3=1:1:IVMFLGC D Q:$D(IVMFERR)
|
||
|
.S IVMCTR2=IVMCTR2+1
|
||
|
.S IVMDA1=IVMDAP+IVMCTR2 D GET ; child ZDP segment
|
||
|
.D INPIEN^IVMUM2
|
||
|
.Q:$D(IVMFERR)
|
||
|
.;
|
||
|
.; add child entry to patient relation file (408.12)
|
||
|
.D EN^IVMUM3
|
||
|
.Q:$D(IVMFERR)
|
||
|
.;
|
||
|
ADDC21 .; add child entry to individual annual income file (408.21)
|
||
|
.S IVMCTR2=IVMCTR2+1
|
||
|
.S IVMDA1=IVMDAP+IVMCTR2 D GET ; child ZIC segment
|
||
|
.D EN^IVMUM4
|
||
|
.Q:$D(IVMFERR)
|
||
|
.;
|
||
|
.; add entry to income relation file (408.22)
|
||
|
.S IVMCTR2=IVMCTR2+1
|
||
|
.S IVMDA1=IVMDAP+IVMCTR2 D GET ; child ZIR segment
|
||
|
.D EN^IVMUM5
|
||
|
.Q:$D(IVMFERR)
|
||
|
.Q
|
||
|
Q:$D(IVMFERR)
|
||
|
;
|
||
|
ADDV21 ; add vet entry to individual annual income file (408.21)
|
||
|
; get vet patient relation ien
|
||
|
S DGPRI=+$G(DGREL("V"))
|
||
|
S IVMDA1=IVMDAP+1 D GET ; vet ZIC segment
|
||
|
S IVMSPCHV="V" ; spouse/child/vet indicator
|
||
|
D EN^IVMUM4
|
||
|
Q:$D(IVMFERR)
|
||
|
S DGVINI=DGINI ; vet individual annual income ien
|
||
|
;
|
||
|
; add vet entry to income relation file (408.22)
|
||
|
S IVMDA1=IVMDAP+2 D GET ; vet ZIR segment
|
||
|
D EN^IVMUM5
|
||
|
Q:$D(IVMFERR)
|
||
|
S DGVIRI=DGIRI ; vet income relation ien
|
||
|
;
|
||
|
COMPLETE ; complete means test
|
||
|
;
|
||
|
D EN^IVMUM6
|
||
|
;
|
||
|
; cleanup
|
||
|
K DGINI,DGIRI,DGLY,DGMTDT,DGMTYPT,DGPRI,DGREL,DGVINI,DGVIRI
|
||
|
K IVMAR,IVMCEB,IVMCTR2,IVMCTR3,IVMDA1,IVMDAP,IVMFERR
|
||
|
K IVMFLG2,IVMFLG5,IVMFLGC,IVMMTB,IVMMTDT,IVMMTIEN,IVMPRN
|
||
|
K IVMRELN,IVMRELO,IVMSEG,IVMSPCHV,IVMX
|
||
|
Q
|
||
|
;
|
||
|
GET ; get HL7 segment from ^HL
|
||
|
S IVMSEG=$P($G(^TMP($J,IVMRTN,IVMDA1,0)),"^",2,999)
|
||
|
Q
|