X-Git-Url: https://git.cyclocoop.org/?p=burette%2Fetudesetchantiersidf.git;a=blobdiff_plain;f=point_of_sale.py;h=93780f90b62e7117a30f4d19e20bbeb62ef06111;hp=776c52f3d6f3b76b01d44db3c7f589e461aae78e;hb=HEAD;hpb=56e536b1c1970bf2d4b4a66f2b218bce3cf17a94;ds=sidebyside diff --git a/point_of_sale.py b/point_of_sale.py index 776c52f..8a81140 100644 --- a/point_of_sale.py +++ b/point_of_sale.py @@ -3,7 +3,7 @@ # # etudesetchantiersidf module for OpenERP, Custom module for Étude et # Chantiers île-de-France -# Copyright (C) 2014-2019 etudesetchantiersidf +# Copyright (C) 2014-2023 etudesetchantiersidf # () # # This file is a part of etudesetchantiersidf @@ -35,8 +35,6 @@ class pos_order_line(orm.Model): product_id = vals['product_id'] products_obj = self.pool.get('product.product') product = products_obj.browse(cr, uid, product_id, context=context) - import pdb - pdb.set_trace() if product.is_fixed_price: vals['price_unit'] = product.list_price res = super(pos_order_line, self).create(cr, uid, vals, context=context)