minor fix in old patch

This commit is contained in:
Nabin Hait 2018-01-30 19:26:28 +05:30
parent dba5e7645b
commit bc640fe6a6

View File

@ -13,11 +13,11 @@ def execute():
frappe.db.sql("""
update `tabSales Order` so, `tabSales Order Item` so_item
set so_item.delivery_date = so.delivery_date
set so_item.delivery_date = if(ifnull(so.delivery_date, '0000-00-00'), ifnull(so.delivery_date, '0000-00-00'), '0000-00-00')
where so.name = so_item.parent
and so.order_type = 'Sales'
and (so_item.delivery_date is null or so_item.delivery_date = ''
or so_item.delivery_date = '0000-00-00')
and (so.delivery_date is not null and so.delivery_date != ''
and (so.delivery_date is not null and so.delivery_date != '' and so.delivery_date != ""
and so.delivery_date != '0000-00-00')
""")