[FIX] portal_sale: browse data for payment acquirer form with superuser ID
authorOlivier Dony <odo@openerp.com>
Wed, 13 Aug 2014 09:50:04 +0000 (11:50 +0200)
committerOlivier Dony <odo@openerp.com>
Wed, 13 Aug 2014 09:50:04 +0000 (11:50 +0200)
The payment form needs to be rendered for non-employee
users, and may require accessing extra financial data
not available for those users.

addons/portal_sale/portal_sale.py

index 4962467..d5b38b9 100644 (file)
@@ -20,6 +20,7 @@
 ##############################################################################
 
 from openerp.osv import osv, fields
+from openerp import SUPERUSER_ID
 
 
 class sale_order(osv.Model):
@@ -35,7 +36,7 @@ class sale_order(osv.Model):
     def _portal_payment_block(self, cr, uid, ids, fieldname, arg, context=None):
         result = dict.fromkeys(ids, False)
         payment_acquirer = self.pool.get('portal.payment.acquirer')
-        for this in self.browse(cr, uid, ids, context=context):
+        for this in self.browse(cr, SUPERUSER_ID, ids, context=context):
             if this.state not in ('draft', 'cancel') and not this.invoiced:
                 result[this.id] = payment_acquirer.render_payment_block(cr, uid, this, this.name,
                     this.pricelist_id.currency_id, this.amount_total, context=context)