diff --git a/addons/delivery/delivery.py b/addons/delivery/delivery.py index e8e2fe79ee8..2333877b8b5 100644 --- a/addons/delivery/delivery.py +++ b/addons/delivery/delivery.py @@ -223,6 +223,7 @@ class delivery_grid(osv.osv): quantity += q total = (order.amount_total or 0.0) - total_delivery + total = self.pool['res.currency'].compute(cr, uid, order.currency_id.id, order.company_id.currency_id.id, total, context=context) return self.get_price_from_picking(cr, uid, id, total,weight, volume, quantity, context=context) def get_price_from_picking(self, cr, uid, id, total, weight, volume, quantity, context=None):