Merge branch 'develop' into mergify/bp/develop/pr-30385

This commit is contained in:
Deepesh Garg
2022-04-09 19:57:59 +05:30
committed by GitHub
59 changed files with 2919 additions and 868 deletions

View File

@@ -20,7 +20,7 @@ def execute():
"""
UPDATE `tab{doctype}`
SET is_cancelled = 0
where is_cancelled in ('', NULL, 'No')""".format(
where is_cancelled in ('', 'No') or is_cancelled is NULL""".format(
doctype=doctype
)
)

View File

@@ -10,7 +10,7 @@ def execute():
"""
UPDATE `tab{doctype}`
SET is_subcontracted = 0
where is_subcontracted in ('', NULL, 'No')""".format(
where is_subcontracted in ('', 'No') or is_subcontracted is null""".format(
doctype=doctype
)
)