From 5ed40465dd0ec8a5fdb97817ac74baed57c6f1cf Mon Sep 17 00:00:00 2001 From: Ludovic CHEVALIER Date: Thu, 18 Jul 2019 11:11:34 +0200 Subject: [PATCH] [PYTHON] fix: -pdb trace --- point_of_sale.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/point_of_sale.py b/point_of_sale.py index 776c52f..93780f9 100644 --- a/point_of_sale.py +++ b/point_of_sale.py @@ -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) -- 2.20.1