From: Ludovic CHEVALIER Date: Fri, 7 Dec 2018 14:58:28 +0000 (+0100) Subject: [PYTHON] ~fix no unit price when create a new pos order line with fixed price product X-Git-Url: http://git.cyclocoop.org/?p=burette%2Fetudesetchantiersidf.git;a=commitdiff_plain;h=ad5afe5412362f71fbb05f916b26df96e426d75e [PYTHON] ~fix no unit price when create a new pos order line with fixed price product --- diff --git a/point_of_sale.py b/point_of_sale.py index 2ea2f21..0457bbd 100644 --- a/point_of_sale.py +++ b/point_of_sale.py @@ -31,6 +31,15 @@ from openerp.osv import fields class pos_order_line(orm.Model): _inherit = 'pos.order.line' + def create(self, cr, uid, vals, context=None): + product_id = vals['product_id'] + products_obj = self.pool.get('product.product') + product = products_obj.browse(cr, uid, product_id, context=context) + if product.is_fixed_price: + vals['price_unit'] = product.list_price + res = super(pos_order_line, self).create(cr, uid, vals, context=context) + return res + def onchange_product_id(self, cr, uid, ids, pricelist, product_id, qty=0, partner_id=False, context=None): res = super(pos_order_line, self).onchange_product_id(cr, uid, ids, pricelist, product_id, qty, partner_id, context=context) if product_id: