Merge branch 'staging-fixes' into unicode

This commit is contained in:
Nabin Hait
2019-01-29 11:13:04 +05:30
committed by GitHub
56 changed files with 1306 additions and 196 deletions

View File

@@ -162,7 +162,7 @@ class Project(Document):
def is_row_updated(self, row, existing_task_data, fields):
if self.get("__islocal") or not existing_task_data: return True
d = existing_task_data.get(row.task_id)
d = existing_task_data.get(row.task_id, {})
for field in fields:
if row.get(field) != d.get(field):