0464802099
- Change in journal the existing 'Lock date' by two dates, the same as in company. - Add a wizard to allows a massive update of those dates for several journals at the same time.
31 lines
1.1 KiB
Python
31 lines
1.1 KiB
Python
# Copyright 2020 Tecnativa - Ernesto Tejeda
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import _, fields, models, SUPERUSER_ID
|
|
from odoo.exceptions import UserError
|
|
|
|
|
|
class UpdateJournalLockDatesWizard(models.TransientModel):
|
|
_name = 'update.journal.lock.dates.wizard'
|
|
_description = 'Mass Update Journal Lock Dates Wizard'
|
|
|
|
period_lock_date = fields.Date(string="Lock Date for Non-Advisers")
|
|
fiscalyear_lock_date = fields.Date(string="Lock Date")
|
|
|
|
def _check_execute_allowed(self):
|
|
self.ensure_one()
|
|
has_adviser_group = self.env.user.has_group(
|
|
'account.group_account_manager')
|
|
if not (has_adviser_group or self.env.uid == SUPERUSER_ID):
|
|
raise UserError(_("You are not allowed to execute this action."))
|
|
|
|
def action_update_lock_dates(self):
|
|
self.ensure_one()
|
|
self._check_execute_allowed()
|
|
self.env['account.journal'].browse(
|
|
self.env.context.get('active_ids')
|
|
).write({
|
|
'period_lock_date': self.period_lock_date,
|
|
'fiscalyear_lock_date': self.fiscalyear_lock_date,
|
|
})
|