-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconvertTierLabData.js
28 lines (25 loc) · 1.05 KB
/
convertTierLabData.js
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
const lib = require("./lib.js");
const writeAsCSV = function (lines, destFileName) { //Need to make it generic
const contents = lines.filter((line) => {
return !!line["Test date"];
}).map((line) => [
line["First Name"],
line["Last Name"],
lib.getIdentifier(line["Patient ID"]),
lib.getDate(line["Test date"]),
"OPD",
lib.getTestName("CD4", line["CD4"], ""),
line["CD4"],
lib.getTestName("Charge Virale HIV - Value", line["Charge Virale HIV - Value"], ""),
line["Charge Virale HIV - Value"]
].join(",")
);
contents.unshift(["Patient.name", "Patient.Surname", "Registration Number", "Date", "Visit Type",
"Test", "Result", "Test", "Result"].join(","));
return lib.writeToDestFile(contents.join("\r\n"), destFileName);
};
module.exports = (sourceFileName, destFileName) => {
lib.convertCSVToJSON(sourceFileName).then((data) => {
writeAsCSV(data, lib.getDestFileName(sourceFileName, destFileName));
});
};