This question has been flagged
1 Reply
3602 Views

Hello there,

In accounting -> Configuration -> Taxes -> Taxes, I edit a tax.

I click to add a Children/Sub Taxe to this edited taxe. A new window appears :


At this place, we have to imperatively create a new tax. Impossible to select an already existing taxe in the Tax Name textbox... 


The only way I have found to add an existing child taxe to a taxe is directly in the database (pgadmin), in the model account.tax. There, I modify the column parent_id manually.

Thanks to help.




Avatar
Discard
Best Answer

Child/Sub Taxes is one2many field, hence we follow to keep many2one field hidden related to main form where this one2many relation is defined.

You can either add parent_id at database level, or If you wish to add parent_id through front end, you can make parent_id field visible in form view. So selecting parent_id through front end will solve your problem.

Avatar
Discard
Author

Great! Thanks!