Commit 05ed9ebe by Damien Moulard

Merge branch '4911-fix-exception-used-coeffs-referenced-before-assignment' into 'dev_cooperatic'

fix exception

See merge request !241
parents 97a032e3 cb71141c
Pipeline #2979 failed with stage
in 1 minute 7 seconds
...@@ -64,6 +64,7 @@ class Order(models.Model): ...@@ -64,6 +64,7 @@ class Order(models.Model):
for p in res: for p in res:
pids.append(p['product_id'][0]) pids.append(p['product_id'][0])
partner_id = p['partner_id'][0] partner_id = p['partner_id'][0]
used_coeffs = None
if len(pids) > 0: if len(pids) > 0:
# Adding barcode and other data for every purchased product # Adding barcode and other data for every purchased product
f = ['barcode', 'product_tmpl_id', 'shelf_id'] f = ['barcode', 'product_tmpl_id', 'shelf_id']
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment