Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can not execute action_draft because odoo base validation with taxes in payment lines #362

Open
odoo-mastercore opened this issue Apr 3, 2023 · 0 comments

Comments

@odoo-mastercore
Copy link

When try to action_draft Odoo raise

"You cannot modify the taxes related to a posted journal item, you should reset the journal entry to draft to do so."

We workaround this using _write and None for vals:

def action_draft(self):
''' posted -> draft '''

    withholdings = self.filtered(lambda x: x.tax_withholding_id)
    for withholding in withholdings:
        liquidity_lines, counterpart_lines, writeoff_lines = withholding._seek_for_lines()
        liquidity_lines._write({
            'tax_repartition_line_id': None,
            'tax_line_id': None,
        })

    return super().action_draft()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant