hi all in odoo11 there is a field called taxes_id
but in odoo 13 i cant find that field or new name of that field
can anyone help me with this'
'
i checked here too \https://github.com/OCA/maintainer-tools/issues/430
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi,
In Odoo 11, the field taxes_id exists on account.invoice.line and sale.order.line as the Many2many tax field.
In Odoo 12, Odoo removed account.invoice and replaced the entire accounting flow with account.move and account.move.line.
Because of this rewrite, the old field taxes_id no longer exists in Odoo 13 on invoice lines.
The new equivalent field in Odoo 13 is tax_ids on the new model account.move.line.
So the correct replacement for Odoo 11 > Odoo 13 is: invoice_line.taxes_id > move_line.tax_ids.
On sales order lines, the field still exists as tax_id (singular) in Odoo 13, not taxes_id.
Therefore the mapping is: sale.order.line: taxes_id > tax_id; account.move.line: taxes_id > tax_ids.
If you migrated custom code, update all references from taxes_id to tax_id (for SO lines) or tax_ids (for invoice lines) depending on the model.
Hope it helps.
Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !
S'inscrire
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.
Hi, please mention the model in which you cant find or if you face any error , do post the error