Skip to content

Commit

Permalink
[FIX] send total amount as euro in invoice
Browse files Browse the repository at this point in the history
  • Loading branch information
fmartins-odoogap committed Oct 13, 2023
1 parent 7f6d8f3 commit fcacbcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion l10n_pt_account_invoicexpress/models/account_move.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def _prepare_invoicexpress_lines(self):
"name": line.product_id.default_code
or line.product_id.display_name,
"description": line._get_invoicexpress_descr(),
"unit_price": line.price_unit,
"unit_price": abs(line.balance),
"quantity": line.quantity,
"discount": line.discount,
"tax": tax_detail,
Expand Down

0 comments on commit fcacbcb

Please sign in to comment.