Skip to content

Commit

Permalink
[10.0][fix] withholding tax duplication
Browse files Browse the repository at this point in the history
  • Loading branch information
robyf70 committed Aug 7, 2019
1 parent 0da8be4 commit da740bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion l10n_it_withholding_tax/models/account.py
Expand Up @@ -395,7 +395,7 @@ def create(self, vals):
def _onchange_invoice_line_wt_ids(self):
self.ensure_one()
wt_taxes_grouped = self.get_wt_taxes_values()
wt_tax_lines = []
wt_tax_lines = [(5, 0)]
for tax in wt_taxes_grouped.values():
wt_tax_lines.append((0, 0, tax))
self.withholding_tax_line_ids = wt_tax_lines
Expand Down

0 comments on commit da740bf

Please sign in to comment.