X-Git-Url: https://git.cyclocoop.org/?p=burette%2Fetudesetchantiersidf.git;a=blobdiff_plain;f=point_of_sale.py;h=0457bbd5297e91bcfa56a27e362f1d67b4d3abdc;hp=2ea2f212006da121213d9de26745dd6fda1181dd;hb=ad5afe5412362f71fbb05f916b26df96e426d75e;hpb=fc403232ff76f4d2b2fc9c5b30ded0cee93e1fcb 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: