Files
account-financial-tools/account_document_reversal/models/account.py
2022-01-12 09:57:27 +07:00

36 lines
1.2 KiB
Python

# Copyright 2019 Ecosoft Co., Ltd (http://ecosoft.co.th/)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html)
from odoo import fields, models
class AccountJournal(models.Model):
_inherit = "account.journal"
cancel_method = fields.Selection(
[
("normal", "Normal (remove journal entries)"),
("reversal", "Reversal (create reversed journal entries)"),
],
string="Cancel Method",
default="normal",
required=True,
)
is_cancel_reversal = fields.Boolean(
string="Use Cancel Reversal",
compute="_compute_is_cancel_reversal",
help="True, when journal allow cancel entries with method is reversal",
)
use_different_journal = fields.Boolean(
string="Use different journal for reversal",
help="If checked, reversal wizard will show field Reversal Journal",
)
reversal_journal_id = fields.Many2one(
"account.journal",
string="Default Reversal Journal",
help="Journal in this field will show in reversal wizard as default",
)
def _compute_is_cancel_reversal(self):
for rec in self:
rec.is_cancel_reversal = rec.cancel_method == "reversal"