2
0
account-financial-tools/account_journal_lock_date/models/account_move.py

49 lines
1.9 KiB
Python
Raw Normal View History

2017-03-31 19:00:59 +02:00
# Copyright 2017 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import _, fields, models
from odoo.exceptions import UserError
from odoo.tools.misc import format_date
2017-03-31 19:00:59 +02:00
class AccountMove(models.Model):
_inherit = "account.move"
2017-03-31 19:00:59 +02:00
def _check_fiscalyear_lock_date(self):
res = super()._check_fiscalyear_lock_date()
if self.env.context.get("bypass_journal_lock_date"):
2017-03-31 19:00:59 +02:00
return res
date_min = fields.date.min
2017-03-31 19:00:59 +02:00
for move in self:
if self.user_has_groups("account.group_account_manager"):
lock_date = move.journal_id.fiscalyear_lock_date or date_min
else:
lock_date = max(
move.journal_id.period_lock_date or date_min,
move.journal_id.fiscalyear_lock_date or date_min,
)
if move.date <= lock_date:
lock_date = format_date(self.env, lock_date)
if self.user_has_groups("account.group_account_manager"):
message = _(
"You cannot add/modify entries for the journal '%(journal)s' "
"prior to and inclusive of the lock date %(journal_date)s"
) % {
"journal": move.journal_id.display_name,
"journal_date": lock_date,
}
else:
message = _(
"You cannot add/modify entries for the journal '%(journal)s' "
"prior to and inclusive of the lock date %(journal_date)s. "
"Check the Journal settings or ask someone "
"with the 'Adviser' role"
) % {
"journal": move.journal_id.display_name,
"journal_date": lock_date,
}
raise UserError(message)
2017-03-31 19:00:59 +02:00
return res