-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecord.js
More file actions
266 lines (230 loc) · 7.33 KB
/
record.js
File metadata and controls
266 lines (230 loc) · 7.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
var logger = require('winston');
var utils = require('./toolbox');
/***************************************
* HeaderRecord *
****************************************
* Sample header record text:
* H|\^&|||host^1|||||cobas c 311|TSDWN^BATCH|P|1
*
**/
function HeaderRecord(record){
this.build = function(record){
}
this.toASTM = function (){
return [
'H',
[ [null], [null,'&'] ],
null,
null,
[ 'host', '1' ],
null,
null,
null,
null,
'cobas c 311',
[ 'TSDWN', 'BATCH' ],
'P',
'1'
];
}
}
/***************************************
* TerminationRecord *
****************************************
* Sample termination record text:
* L|1|N
*
**/
function TerminationRecord(record){
this.build = function(record){
}
this.toASTM = function (){
return [ 'L', '1', 'N' ];
}
}
/***************************************
* PatientRecord *
****************************************
* Sample patient record text:
* P|1||||||20070921|M||||||35^Y
*
**/
function PatientRecord(record){
this.build = function(record){
}
this.toASTM = function (){
return [ 'P', '1',null,null,null,null,null,null,this.sex,null,null,null,null,null,[null,null]];
}
}
/***************************************
* ResultRecord *
****************************************
* Sample result record text:
* R|1|^^^458/|55|mg/dl||N||F|||||P1
*
* Sample result record decoded:
* [ 'R','1',[ null, null, null, '458/' ],'55','mg/dl',null,'N',null,'F',null,null,null,null,'P1' ]
**/
function ResultRecord(record){
try{
this.type = record[0];
this.seq = record[1];
this.test = record[2][3].slice(0,-1); // Remove last character '/'
this.value = parseFloat(record[3]);
this.units = record[4];
// Others result record fields
// references
// abnormal_flag
// abnormality_nature
// status
// norms_changed_at
// operator
// started_at
// completed_at
// instrument
}
catch(err){
logger.error('Cannot build ResultRecord.' + err);
throw new Error(err);
}
}
/****************************
* OrderRecord *
*****************************
* Sample order record text:
* O|1|0^ 806^1^^001|R1|^^^458/|R||||||N||^^||SC||| | ^ ^ ^ ^ |||20161111095305|||F', (Upload)
* O|1|0^ 333^1^^001|R1|^^^458/|R||||||A||^^||SC||| | ^ ^ ^ ^ ||||||0', (Download)
*
*
* Sample order record decoded
* [ 'O',
* '1',
* [ '0', ' 806', '1', null, '001' ],
* 'R1',
* [ null, null, null, '458/' ],
* 'R',
* null,
* null,
* null,
* null,
* null,
* 'N',
* null,
* [ null, null, null ],
* null,
* 'SC',
* null,
* null,
* ' ',
* [ ' ',' ',' ',' ',' ' ],
* null,
* null,
* '20161111095305',
* null,
* null,
* 'F' ],
**/
function OrderRecord(){
this.build = function(record){
try{
this.type = record[0];
this.seq = record[1];
// El nro de protocolo puede estar compuesto por nro_protocolo + prefijo de tipo de muestra
// Esta forma del protocolo es un parche utilizado por el momento para poder identificar
// en el equipo CobasC311 aquellos analisis que son en esencia lo mismo pero que se tienen
// que realizar en diferentes horarios, como por ejemplo el analisis de la glucemia
var sampleId = record[2];
var prefijoTipoMuestra = '';
if (sampleId.indexOf('-')> -1){
var complexOrderSampleId = sampleId.split('-');
sampleId = complexOrderSampleId[0]; // Nro de protocolo
prefijoTipoMuestra = complexOrderSampleId[1]; // Prefijo del tipo de muestra
}
this.sampleId = parseInt(sampleId);
this.prefijoTipoMuestra = prefijoTipoMuestra;
this.biomaterial = record[15];
this.dateTimeReported = new Date();
// Others order record fields
}
catch(err){
logger.error('Cannot build OrderRecord.' + err)
throw new Error(err);
}
}
this.toASTM = function (){
var timestamp = utils.formatDate(new Date(),'yyyyMMddHHmmss');
return [
'O',
'1',
this.sampleId,
[ '0', null, null, null, this.sampleType,'SC'], // Por ej.[ '0', '50001', '001', null, 'S1','SC'], S1=Plasma, S2=Urine
this.toASTMTestComponent(this.tests),
this.priority,
null, // Requested/Ordered Date and Time
timestamp, // Indicates reception date and time of request. Setting is as follows. Deletable. YYYYMMDDHHMMSS
null,
null,
null,
'A',
null,
null,
null,
this.biomaterial, // This field indicates the type of sample. 1=Plasma, 2=Urine
null,
null,
null,
null,
null,
null,
null,
null,
null,
'O' ];
}
this.toASTMTestComponent = function (testArray){
var test = [null,null,null,testArray[0].id,null];
if (testArray.length == 1){
return test;
}
else{
return [test, this.toASTMTestComponent(testArray.slice(1))]
}
}
}
/***************************************
* TestComponent *
****************************************
* Use only for OrderRecord
*
**/
function TestComponent(id){
this.id = id;
}
/***************************************
* CommentRecord *
****************************************
* Sample comment record text:
* C|1|I| ^ ^ ^ ^ |G
*
**/
function CommentRecord(record){
this.build = function(record){
}
this.toASTM = function (){
return [
'C',
'1',
'L',
[' ',' ',' ',' ',' '],
'G' ];
}
}
module.exports = {
ResultRecord: ResultRecord,
OrderRecord : OrderRecord,
HeaderRecord : HeaderRecord,
TerminationRecord : TerminationRecord,
CommentRecord : CommentRecord,
PatientRecord : PatientRecord,
TestComponent : TestComponent,
};