Commit f96b09f0 by François C.

Fix syntax error (invoice_ite instead of invoice_item)

parent b1a0adb3
Pipeline #1865 passed with stage
in 1 minute 32 seconds
...@@ -59,7 +59,7 @@ class CagetteEnvelops(models.Model): ...@@ -59,7 +59,7 @@ class CagetteEnvelops(models.Model):
# Get first invoice for which amount being paid <= amount left to pay in invoice # Get first invoice for which amount being paid <= amount left to pay in invoice
for invoice_item in invoice_res: for invoice_item in invoice_res:
if int(float(data['amount']) * 100) <= int(float(invoice_item['residual_signed']) * 100): if int(float(data['amount']) * 100) <= int(float(invoice_item['residual_signed']) * 100):
invoice = invoice_ite invoice = invoice_item
if invoice is None: if invoice is None:
res['error'] = 'The amount is too high for the invoices found for this partner.' res['error'] = 'The amount is too high for the invoices found for this partner.'
......
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