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).
|
|
|
|
|
2020-08-20 15:22:40 +02:00
|
|
|
from datetime import date
|
2020-10-08 00:28:42 +02:00
|
|
|
|
2020-10-08 01:58:13 +02:00
|
|
|
from odoo import _, models
|
|
|
|
from odoo.tools.misc import format_date
|
2017-03-31 19:00:59 +02:00
|
|
|
|
|
|
|
from ..exceptions import JournalLockDateError
|
|
|
|
|
|
|
|
|
|
|
|
class AccountMove(models.Model):
|
|
|
|
|
2020-10-08 00:28:42 +02:00
|
|
|
_inherit = "account.move"
|
2017-03-31 19:00:59 +02:00
|
|
|
|
2019-05-24 17:09:51 +02:00
|
|
|
def write(self, values):
|
|
|
|
res = super().write(values)
|
2020-10-08 01:58:13 +02:00
|
|
|
self._check_fiscalyear_lock_date()
|
2019-05-24 17:09:51 +02:00
|
|
|
return res
|
|
|
|
|
2020-10-08 01:58:13 +02:00
|
|
|
def _check_fiscalyear_lock_date(self):
|
|
|
|
res = super()._check_fiscalyear_lock_date()
|
2020-08-20 15:22:40 +02:00
|
|
|
if self.env.context.get("bypass_journal_lock_date"):
|
2017-03-31 19:00:59 +02:00
|
|
|
return res
|
|
|
|
for move in self:
|
2020-10-08 00:28:42 +02:00
|
|
|
if self.user_has_groups("account.group_account_manager"):
|
2020-08-20 15:22:40 +02:00
|
|
|
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:
|
2020-10-08 01:58:13 +02:00
|
|
|
lock_date = format_date(self.env, lock_date)
|
2020-10-08 00:28:42 +02:00
|
|
|
if self.user_has_groups("account.group_account_manager"):
|
2020-08-20 15:22:40 +02:00
|
|
|
message = _(
|
|
|
|
"You cannot add/modify entries for the journal '%s' "
|
|
|
|
"prior to and inclusive of the lock date %s"
|
|
|
|
) % (move.journal_id.display_name, lock_date)
|
|
|
|
else:
|
|
|
|
message = _(
|
|
|
|
"You cannot add/modify entries for the journal '%s' "
|
|
|
|
"prior to and inclusive of the lock date %s. "
|
|
|
|
"Check the Journal settings or ask someone "
|
|
|
|
"with the 'Adviser' role"
|
|
|
|
) % (move.journal_id.display_name, lock_date)
|
|
|
|
raise JournalLockDateError(message)
|
2017-03-31 19:00:59 +02:00
|
|
|
return res
|