Update set_delivery_date_in_so_item.py

This commit is contained in:
Nabin Hait 2017-11-30 15:52:47 +05:30 committed by GitHub
parent 0154538c06
commit c5e0d22464
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,4 +18,6 @@ def execute():
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 != '0000-00-00')
""")