Fix - Issue 61

This commit is contained in:
Mauricio Baeza 2017-12-13 23:45:06 -06:00
parent 53652804c7
commit 4d0d387e19
1 changed files with 1 additions and 1 deletions

View File

@ -1719,7 +1719,7 @@ class ImportFacturaLibre(object):
data = []
for row in rows:
new = {t: row[s] for s, t in fields}
new = {t: row[s] for s, t in fields if row[s]}
data.append(new)
return data