[PYTHON] ~update copyright
[burette/etudesetchantiersidf.git] / point_of_sale.py
index 776c52f..8a81140 100644 (file)
@@ -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
 #    (<http://etudesetchantiersiledefrance.unarec.org/>)
 #
 #    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)