Fix takagg excel import

Fix #95
This commit is contained in:
Made Baruna 2021-07-12 13:48:25 +07:00
parent 1106660f65
commit 42fd5ac092
No known key found for this signature in database
GPG key ID: 5AA5DA16AA5DCEAD

View file

@ -253,7 +253,7 @@
sheet.eachRow((row, index) => {
if (index === 1) return;
const type = row.getCell(3).text.toLowerCase();
let time = row.getCell(3);
let time = row.getCell(1);
const fullName = row.getCell(2).text;
if (time.type === ValueType.Date) {