Skip to content

Commit

Permalink
feat: xls export for projects and units finalize
Browse files Browse the repository at this point in the history
  • Loading branch information
mkeen committed Jan 23, 2022
1 parent f449e98 commit b2122ac
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/utils/xls.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ export const createXlsFromSequelizeResults = (rows, model, hex = false, csv = fa
xlsRow.push(encodeValue(v, hex));
}
if (xlsRow.length > 0) {
console.log(model.primaryKeyAttributes)
xlsRow.push(encodeValue(row[model.primaryKeyAttributes[0]], hex));
sheets[associatedModel].data.push(xlsRow);
}
Expand Down

0 comments on commit b2122ac

Please sign in to comment.