diff --git a/l10n_es_aeat_sii_pos_summary/models/account_move.py b/l10n_es_aeat_sii_pos_summary/models/account_move.py index 496fa204711..6e054029a00 100644 --- a/l10n_es_aeat_sii_pos_summary/models/account_move.py +++ b/l10n_es_aeat_sii_pos_summary/models/account_move.py @@ -39,5 +39,5 @@ def _get_sii_tax_dict(self, tax_line, tax_lines): self.ensure_one() tax_dict = super(AccountMove, self)._get_sii_tax_dict(tax_line, tax_lines) if self._context.get("from_pos"): - tax_dict["CuotaRepercutida"] = tax_dict.pop("CuotaSoportada") + tax_dict["CuotaRepercutida"] = round(tax_dict.pop("CuotaSoportada"), 2) return tax_dict