We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
account-payment/account_withholding/models/account_payment.py
Line 78 in c99319c
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()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
account-payment/account_withholding/models/account_payment.py
Line 78 in c99319c
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 '''
The text was updated successfully, but these errors were encountered: