source: FOIAVistA/tag/r/REGISTRATION-DGQE-DG-DPT-GRPX-VAD-VAF-VAS-VAT-VAU--VA-VIC--DGBT--DGJ--DGYA--VALM/DGRUGA13.m@ 636

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

initial load of FOIAVistA 6/30/08 version

File size: 3.0 KB
Line 
1DGRUGA13 ;ALB/GRR - HL7 ADT A13 MESSAGE BUILDER ;8/5/99 15:34
2 ;;5.3;Registration;**190,312,373**;Aug 13, 1993
3 ;
4 ;This routine will build a ADT A13 (Cancel Discharge) HL7 message for an inpatient.
5 ;
6EN(DFN,DGMIEN,DGARRAY) ;Entry point of routine
7 ;DFN - Patient Internal Entry Number
8 ;DGMIEN - Patient Movement Internal Entry Number
9 ;DGARRAY - Name of output array by reference where built message will be contained.
10 ;
11 ;The HL7 variables must be initialized before calling this routine!
12 ;HL("FS"),HL("ECH"),HLFS,HLECH, and HLQ are used by segment builders called by this routine
13 ;
14 N DGHOLD,DGCNT,DGMDT,DGCDT,DGEDT,DGOADT,DGHMDT,DGCTRAN,DGICD,DGICDCNT,DGIN,DGINCNT,DGPV1 S DGCNT=0
15 Q:DGARRAY="" ;Required output variable name was not passed
16 K @DGARRAY ;Kill output array to insure erronuous data does not exist
17 Q:DGMIEN=""
18 S DGMDT=$$GET1^DIQ(405,DGMIEN,".01","I"),DGHMDT=$$HLDATE^HLFNC(DGMDT)
19 D NOW^%DTC S DGCDT=$$HLDATE^HLFNC(%) ;Get current date/time and convert to HL7 format
20 S DGEDT=$S($G(DGASIH)=1:+$G(DGPMA),$G(DGASIH)=3:+$G(DGPMP),1:DGMDT) ;If discharge was while ASIH (312), p-373
21 S DGCNT=DGCNT+1 ;Increment node counter by one for first segment
22 S @DGARRAY@(DGCNT)=$$EVN^VAFHLEVN("A13","05",DGEDT) ;Create Event segment and store in output array (Use current date/time for cancel)
23 S DGCNT=DGCNT+1 ;Increment node counter by one for next segment
24 S @DGARRAY@(DGCNT)=$$EN^VAFCPID(DFN,",2,5,7,8,10,11,13,16,17,19,23,29",1) ;Create PID segment using segment sequence numbers passed and store in output array
25 S DGHOLD=$$EN^VAFHLNK1(DFN,DGMIEN,",2,3,4,5,") ;Create the NK1 segment using the segment sequence numbers passed, and store in output array
26 I DGHOLD]"" S DGCNT=DGCNT+1,@DGARRAY@(DGCNT)=DGHOLD
27 S DGMDT=$$GET1^DIQ(405,DGMIEN,".01","I") ;Retrieve Movement Date/Time
28 S DGCNT=DGCNT+1 ;Increment node counter by one to store next segment
29 ;; testing SCK
30 S DGPV1=$$IN^VAFHLPV1(DFN,DGMDT,",2,3,6,7,10,17,44,45,",$G(DGMIEN),"","")
31 S DGOADT=$$CKADMIT^DGRUUTL1(DFN) ;check if integrated site get original admit date/time
32 I DGOADT]"" S $P(DGPV1,HL("FS"),45)=$$HLDATE^HLFNC(DGOADT)
33 S DGPV1=$$DOCID^DGRUUTL(DGPV1)
34 I $G(DGCTRAN)=1 S $P(DGPV1,HL("FS"),4)=$P(DGPV1,HL("FS"),7) ;need to make prior location the current one because changing prior transaction
35 S @DGARRAY@(DGCNT)=$$LOCTRAN^DGRUUTL1(DGPV1) ;translate ward, room-bed if needed
36 D IN^VAFHLDG1(DFN,DGMIEN,",2,3,5,","DGICD") ;Create the DG1 segment(s) and store in a temporary array
37 I $O(DGICD(0))>0 D ;DG1 segment were built
38 .S DGICDCNT=0 F S DGICDCNT=$O(DGICD(DGICDCNT)) Q:DGICDCNT="" S DGCNT=DGCNT+1,@DGARRAY@(DGCNT)=DGICD(DGICDCNT,0) ;Loop through temporary array and store DG1 segment(s) in output array
39 D EN^VAFHLIN1(DFN,",2,4,12,","",HL("FS"),"DGIN") ;Create IN1 segment(s) and store in temporary array
40 I $D(DGIN(1,0)),$P(DGIN(1,0),HL("FS"),5)]"" D ;IN1 segments were built
41 .S DGINCNT=0 F S DGINCNT=$O(DGIN(DGINCNT)) Q:DGINCNT="" S DGCNT=DGCNT+1,@DGARRAY@(DGCNT)=DGIN(DGINCNT,0) ;Loop through temporary array and store IN1 segment(s) in output array
42 Q
Note: See TracBrowser for help on using the repository browser.