Skip to content

Commit

Permalink
[FIX][l10n_it_fatturapa_out] fix missing field
Browse files Browse the repository at this point in the history
  • Loading branch information
matteoopenf committed Apr 8, 2022
1 parent e58581d commit 9d3275f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion l10n_it_fatturapa_out/wizard/wizard_export_fatturapa.py
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,8 @@ def setDatiPagamento(self, invoice, body):
move_line = move_line_pool.browse(move_line_id)
ImportoPagamento = '%.2f' % float_round(
self._to_EUR(invoice.currency_id,
move_line.amount_currency or move_line.debit),
move_line.amount_currency or
move_line.debit, invoice),
2)
# Create with only mandatory fields
DettaglioPagamento = DettaglioPagamentoType(
Expand Down

0 comments on commit 9d3275f

Please sign in to comment.