Bulk Load is a DHIS2 application designed to ease the integration of data from excel into DHIS2 and generate templates for datasets and programs
3
stars
3
forks
source link
[User feedback] Importing events with same date joins them into a single event #53
Open
EyeSeeTeaBotTest opened 3 years ago
dhis2
Username: admin
Browser
User report
URL: http://localhost:8082/#/import
See ExcelReader:
dataEntries = _(data) .groupBy(d => [d.dataForm, d.id, d.period, d.orgUnit, d.attribute, d.trackedEntityInstance, d.programStage].join("@") ) .map((items, key) => { const [dataForm = "", id, period, orgUnit, attribute, trackedEntityInstance, programStage] = key.split( "@" ); }