Contributors mailing list archives

contributors@odoo-community.org

Browse archives

Avatar

Want tax move line with zero balance, possible? (odoo 13)

by
Ecosoft Co. Ltd., Kitti Upariphutthiphong
- 17/06/2020 17:55:03
Dear community,

With Tax Exemption we need to set tax with zero percent. On invoice line, use will need to choose this Tax. And expect that it will also declared on tax report.

Normally, as I see in this core code, Odoo just don't create move line if tax amount is zero. This oppose our need.

def _recompute_tax_lines(self, recompute_tax_base_amount=False):
            .......
            # Don't create tax lines with zero balance.
            if self.currency_id.is_zero(taxes_map_entry['balance']) and self.currency_id.is_zero(taxes_map_entry['amount_currency']):
                taxes_map_entry['grouping_dict'] = False

Any OCA module that do by pass this? Does this make sense to you if I will create one, or there is better way ??

Many thanks,
Kitti

Follow-Ups