1 | GPLALABS ; CCDCCR/GPL - CCR/CCD PROCESSING FOR LAB RESULTS ; 10/01/08
|
---|
2 | ;;0.3;CCDCCR;nopatch;noreleasedate
|
---|
3 | ;Copyright 2008 WorldVistA. Licensed under the terms of the GNU
|
---|
4 | ;General Public License See attached copy of the License.
|
---|
5 | ;
|
---|
6 | ;This program is free software; you can redistribute it and/or modify
|
---|
7 | ;it under the terms of the GNU General Public License as published by
|
---|
8 | ;the Free Software Foundation; either version 2 of the License, or
|
---|
9 | ;(at your option) any later version.
|
---|
10 | ;
|
---|
11 | ;This program is distributed in the hope that it will be useful,
|
---|
12 | ;but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
13 | ;MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
14 | ;GNU General Public License for more details.
|
---|
15 | ;
|
---|
16 | ;You should have received a copy of the GNU General Public License along
|
---|
17 | ;with this program; if not, write to the Free Software Foundation, Inc.,
|
---|
18 | ;51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
---|
19 | ;
|
---|
20 | EXTRACT(LABXML,DFN,LABOUTXML) ; EXTRACT LABS INTO PROVIDED XML TEMPLATE
|
---|
21 | ;
|
---|
22 | ; LABXML AND LABOUTXML ARE PASSED BY NAME SO GLOBALS CAN BE USED
|
---|
23 | ;
|
---|
24 | ;
|
---|
25 | ;
|
---|
26 | ; N C0CPTID,C0CSPC,C0CSDT,C0CEDT,C0CR
|
---|
27 | ; SET UP FOR LAB API CALL
|
---|
28 | S C0CPTID=$$SSN^CCRDPT(DFN) ; GET THE SSN FOR THIS PATIENT
|
---|
29 | I C0CPTID="" D Q ; NO SSN, COMPLAIN AND QUIT
|
---|
30 | . W "LAB LOOKUP FAILED, NO SSN",!
|
---|
31 | S C0CSPC="*" ; LOOKING FOR ALL LABS
|
---|
32 | D DT^DILF(,"T-5000",.C0CSDT) ; START DATE LONG AGO TO GET EVERYTHING
|
---|
33 | D DT^DILF(,"T",.C0CEDT) ; END DATE TODAY TO GET EVERYTHING
|
---|
34 | S C0CR=$$GCPR^LA7QRY(C0CPTID,C0CSDT,C0CEDT,C0CSPC,C0CSPC) ; CALL LAB LOOKUP
|
---|
35 | W "i'm back",!
|
---|
36 | Q
|
---|
37 | ;
|
---|
38 | LIST ; LIST THE HL7 MESSAGE
|
---|
39 | ;
|
---|
40 | ; N C0CI,C0CJ,C0COBT,C0CHB
|
---|
41 | ; D EXTRACT^GPLLABS(,1,)
|
---|
42 | S C0CTAB=$NA(^KBAI) ; BASE OF OBX TABLE
|
---|
43 | S C0CHB=$NA(^TMP("HLS",$J))
|
---|
44 | S C0CI=""
|
---|
45 | F S C0CI=$O(@C0CHB@(C0CI)) Q:C0CI="" D ; FOR ALL RECORDS IN HL7 MSG
|
---|
46 | . S C0CTYP=$P(@C0CHB@(C0CI),"|",1)
|
---|
47 | . D LTYP(@C0CHB@(C0CI),C0CTYP)
|
---|
48 | . W C0CI," ",C0CTYP,!
|
---|
49 | . ; S C0CI=$O(@C0CHB@(C0CI))
|
---|
50 | Q
|
---|
51 | LTYP(OSEG,OTYP) ;
|
---|
52 | S OTAB=$NA(@C0CTAB@(OTYP)) ; TABLE FOR SEGMENT TYPE
|
---|
53 | I 1 D ; FOR HL7 SEGMENT TYPE
|
---|
54 | . S OI="" ; INDEX INTO FIELDS IN SEG
|
---|
55 | . F S OI=$O(@OTAB@(OI)) Q:OI="" D ; FOR EACH FIELD OF THE SEGMENT
|
---|
56 | . . S OTI=$P(@OTAB@(OI),"^",1) ; TABLE INDEX
|
---|
57 | . . S OVAR=$P(@OTAB@(OI),"^",4) ; CCR VARIABLE IF DEFINED
|
---|
58 | . . S OV=$P(OSEG,"|",OTI+1) ; PULL OUT VALUE
|
---|
59 | . . I $P(OI,";",2)'="" D ; THIS IS DEFINING A SUB-VALUE
|
---|
60 | . . . S OI2=$P(OTI,";",2) ; THE SUB-INDEX
|
---|
61 | . . . S OV=$P(OV,"^",OI2) ; PULL OUT SUB-VALUE
|
---|
62 | . . I OV'="" W OI_": "_$P(@OTAB@(OI),"^",3),": ",OVAR,": ",OV,!
|
---|
63 | Q
|
---|
64 | LOBX ;
|
---|
65 | Q
|
---|
66 | ;
|
---|
67 | SETTBL ;
|
---|
68 | K X ; CLEAR X
|
---|
69 | S X("PID","PID1")="1^00104^Set ID - Patient ID"
|
---|
70 | S X("PID","PID2")="2^00105^Patient ID (External ID)"
|
---|
71 | S X("PID","PID3")="3^00106^Patient ID (Internal ID)"
|
---|
72 | S X("PID","PID4")="4^00107^Alternate Patient ID"
|
---|
73 | S X("PID","PID5")="5^00108^Patient's Name"
|
---|
74 | S X("PID","PID6")="6^00109^Mother's Maiden Name"
|
---|
75 | S X("PID","PID7")="7^00110^Date of Birth"
|
---|
76 | S X("PID","PID8")="8^00111^Sex"
|
---|
77 | S X("PID","PID9")="9^00112^Patient Alias"
|
---|
78 | S X("PID","PID10")="10^00113^Race"
|
---|
79 | S X("PID","PID11")="11^00114^Patient Address"
|
---|
80 | S X("PID","PID12")="12^00115^County Code"
|
---|
81 | S X("PID","PID13")="13^00116^Phone Number - Home"
|
---|
82 | S X("PID","PID14")="14^00117^Phone Number - Business"
|
---|
83 | S X("PID","PID15")="15^00118^Language - Patient"
|
---|
84 | S X("PID","PID16")="16^00119^Marital Status"
|
---|
85 | S X("PID","PID17")="17^00120^Religion"
|
---|
86 | S X("PID","PID18")="18^00121^Patient Account Number"
|
---|
87 | S X("PID","PID19")="19^00122^SSN Number - Patient"
|
---|
88 | S X("PID","PID20")="20^00123^Drivers License - Patient"
|
---|
89 | S X("PID","PID21")="21^00124^Mother's Identifier"
|
---|
90 | S X("PID","PID22")="22^00125^Ethnic Group"
|
---|
91 | S X("PID","PID23")="23^00126^Birth Place"
|
---|
92 | S X("PID","PID24")="24^00127^Multiple Birth Indicator"
|
---|
93 | S X("PID","PID25")="25^00128^Birth Order"
|
---|
94 | S X("PID","PID26")="26^00129^Citizenship"
|
---|
95 | S X("PID","PID27")="27^00130^Veteran.s Military Status"
|
---|
96 | S X("PID","PID28")="28^00739^Nationality"
|
---|
97 | S X("PID","PID29")="29^00740^Patient Death Date/Time"
|
---|
98 | S X("PID","PID30")="30^00741^Patient Death Indicator"
|
---|
99 | S X("NTE","NTE1")="1^00573^Set ID - NTE"
|
---|
100 | S X("NTE","NTE2")="2^00574^Source of Comment"
|
---|
101 | S X("NTE","NTE3")="3^00575^Comment"
|
---|
102 | S X("ORC","ORC1")="1^00215^Order Control"
|
---|
103 | S X("ORC","ORC2")="2^00216^Placer Order Number"
|
---|
104 | S X("ORC","ORC3")="3^00217^Filler Order Number"
|
---|
105 | S X("ORC","ORC4")="4^00218^Placer Order Number"
|
---|
106 | S X("ORC","ORC5")="5^00219^Order Status"
|
---|
107 | S X("ORC","ORC6")="6^00220^Response Flag"
|
---|
108 | S X("ORC","ORC7")="7^00221^Quantity/Timing"
|
---|
109 | S X("ORC","ORC8")="8^00222^Parent"
|
---|
110 | S X("ORC","ORC9")="9^00223^Date/Time of Transaction"
|
---|
111 | S X("ORC","ORC10")="10^00224^Entered By"
|
---|
112 | S X("ORC","ORC11")="11^00225^Verified By"
|
---|
113 | S X("ORC","ORC12")="12^00226^Ordering Provider"
|
---|
114 | S X("ORC","ORC13")="13^00227^Enterer's Location"
|
---|
115 | S X("ORC","ORC14")="14^00228^Call Back Phone Number"
|
---|
116 | S X("ORC","ORC15")="15^00229^Order Effective Date/Time"
|
---|
117 | S X("ORC","ORC16")="16^00230^Order Control Code Reason"
|
---|
118 | S X("ORC","ORC17")="17^00231^Entering Organization"
|
---|
119 | S X("ORC","ORC18")="18^00232^Entering Device"
|
---|
120 | S X("ORC","ORC19")="19^00233^Action By"
|
---|
121 | S X("OBR","OBR1")="1^00237^Set ID - Observation Request"
|
---|
122 | S X("OBR","OBR2")="2^00216^Placer Order Number"
|
---|
123 | S X("OBR","OBR3")="3^00217^Filler Order Number"
|
---|
124 | S X("OBR","OBR4")="4^00238^Universal Service ID"
|
---|
125 | S X("OBR","OBR4;LOINC")="4;1^00238^Universal Service ID - LOINC^RESULTCODE"
|
---|
126 | S X("OBR","OBR4;DESC")="4;2^00238^Universal Service ID - DESC^RESULTDESCRIPTIONTEXT"
|
---|
127 | S X("OBR","OBR4;VACODE")="4;3^00238^Universal Service ID - VACODE"
|
---|
128 | S X("OBR","OBR5")="5^00239^Priority"
|
---|
129 | S X("OBR","OBR6")="6^00240^Requested Date/Time"
|
---|
130 | S X("OBR","OBR7")="7^00241^Observation Date/Time^RESULTASSESSMENTDATETIME"
|
---|
131 | S X("OBR","OBR8")="8^00242^Observation End Date/Time"
|
---|
132 | S X("OBR","OBR9")="9^00243^Collection Volume"
|
---|
133 | S X("OBR","OBR10")="10^00244^Collector Identifier"
|
---|
134 | S X("OBR","OBR11")="11^00245^Specimen Action Code"
|
---|
135 | S X("OBR","OBR12")="12^00246^Danger Code"
|
---|
136 | S X("OBR","OBR13")="13^00247^Relevant Clinical Info."
|
---|
137 | S X("OBR","OBR14")="14^00248^Specimen Rcv'd. Date/Time"
|
---|
138 | S X("OBR","OBR15")="15^00249^Specimen Source"
|
---|
139 | S X("OBR","OBR16")="16^00226^Ordering Provider XCN^RESULTSOURCEACTORID"
|
---|
140 | S X("OBR","OBR17")="17^00250^Order Callback Phone Number"
|
---|
141 | S X("OBR","OBR18")="18^00251^Placers Field 1"
|
---|
142 | S X("OBR","OBR19")="19^00252^Placers Field 2"
|
---|
143 | S X("OBR","OBR20")="20^00253^Filler Field 1"
|
---|
144 | S X("OBR","OBR21")="21^00254^Filler Field 2"
|
---|
145 | S X("OBR","OBR22")="22^00255^Results Rpt./Status Change"
|
---|
146 | S X("OBR","OBR23")="23^00256^Charge to Practice"
|
---|
147 | S X("OBR","OBR24")="24^00257^Diagnostic Service Sect"
|
---|
148 | S X("OBR","OBR25")="25^00258^Result Status^RESULTSTATUS"
|
---|
149 | S X("OBR","OBR26")="26^00259^Parent Result"
|
---|
150 | S X("OBR","OBR27")="27^00221^Quantity/Timing"
|
---|
151 | S X("OBR","OBR28")="28^00260^Result Copies to"
|
---|
152 | S X("OBR","OBR29")="29^00261^Parent Number"
|
---|
153 | S X("OBR","OBR30")="30^00262^Transportation Mode"
|
---|
154 | S X("OBR","OBR31")="31^00263^Reason for Study"
|
---|
155 | S X("OBR","OBR32")="32^00264^Principal Result Interpreter"
|
---|
156 | S X("OBR","OBR33")="33^00265^Assistant Result Interpreter"
|
---|
157 | S X("OBR","OBR34")="34^00266^Technician"
|
---|
158 | S X("OBR","OBR35")="35^00267^Transcriptionist"
|
---|
159 | S X("OBR","OBR36")="36^00268^Scheduled Date/Time"
|
---|
160 | S X("OBR","OBR37")="37^01028^Number of Sample Containers"
|
---|
161 | S X("OBR","OBR38")="38^38^01029 Transport Logistics of Collected Sample"
|
---|
162 | S X("OBR","OBR39")="39^01030^Collector.s Comment"
|
---|
163 | S X("OBR","OBR40")="40^01031^Transport Arrangement Responsibility"
|
---|
164 | S X("OBR","OBR41")="41^01032^Transport Arranged"
|
---|
165 | S X("OBR","OBR42")="42^01033^Escort Required"
|
---|
166 | S X("OBR","OBR43")="43^01034^Planned Patient Transport Comment"
|
---|
167 | S X("OBX","OBX1")="1^00559^Set ID - OBX"
|
---|
168 | S X("OBX","OBX2")="2^00676^Value Type"
|
---|
169 | S X("OBX","OBX3")="3^00560^Observation Identifier"
|
---|
170 | S X("OBX","OBX3;LOINC")="3;4^00560^Observation Identifier^RESULTTESTCODEVALUE"
|
---|
171 | S X("OBX","OBX3;DESC")="3;5^00560^Observation Identifier^RESULTTESTDESCRIPTIONTEXT"
|
---|
172 | S X("OBX","OBX3;VACODE")="3;6^00560^Observation Identifier"
|
---|
173 | S X("OBX","OBX4")="4^00769^Observation Sub-Id"
|
---|
174 | S X("OBX","OBX5")="5^00561^Observation Results^RESULTTESTVALUE"
|
---|
175 | S X("OBX","OBX6")="6^00562^Units^RESULTTESTUNITS"
|
---|
176 | S X("OBX","OBX7")="7^00563^Reference Range^"
|
---|
177 | S X("OBX","OBX8")="8^00564^Abnormal Flags"
|
---|
178 | S X("OBX","OBX9")="9^00639^Probability"
|
---|
179 | S X("OBX","OBX10")="10^00565^Nature of Abnormal Test"
|
---|
180 | S X("OBX","OBX11")="11^00566^Observ. Result Status^RESULTTESTSTATUSTEXT"
|
---|
181 | S X("OBX","OBX12")="12^00567^Date Last Normal Value"
|
---|
182 | S X("OBX","OBX13")="13^00581^User Defined Access Checks"
|
---|
183 | S X("OBX","OBX14")="14^00582^Date/Time of Observation^RESULTTESTDATETIME"
|
---|
184 | S X("OBX","OBX15")="15^00583^Producer.s ID^RESULTTESTSOURCEACTORID"
|
---|
185 | S X("OBX","OBX16")="16^00584^Responsible Observer"
|
---|
186 | S X("OBX","OBX17")="17^00936^Observation Method"
|
---|
187 | M ^KBAI=X ; SET VALUES IN ^KBAI
|
---|
188 | Q
|
---|
189 | ;
|
---|