Bug with module open orders
Whe you install the module "sale_delivery" the status of the delivery jump to 100% each time whe you confirm the order.
Solution: Change the following in the file addons/sale/sale.py and restart the OpenERP server:
...
def _picked_rate(self, cr, uid, ids, name, arg, context=None):
...
for order in self.browse(cr, uid, ids, context):
if res[order.id] < 100:
self.write(cr, uid, order.id, {'shipped' : False})
else:
self.write(cr, uid, order.id, {'shipped' : True})
# if order.shipped:
# res[order.id] = 100.0
return res
