61 lines
2.5 KiB
Python
61 lines
2.5 KiB
Python
from odoo import models, fields, api, SUPERUSER_ID, _
|
|
from odoo.exceptions import UserError
|
|
|
|
|
|
class ChangeLockDate(models.TransientModel):
|
|
_name = 'change.lock.date'
|
|
_description = 'Change Lock Date'
|
|
|
|
@api.model
|
|
def default_get(self, vals):
|
|
res = super(ChangeLockDate, self).default_get(vals)
|
|
company_rec = self.env.user.company_id
|
|
res.update({
|
|
'company_id': company_rec.id,
|
|
'hard_lock_date': company_rec.hard_lock_date,
|
|
'fiscalyear_lock_date': company_rec.fiscalyear_lock_date,
|
|
'purchase_lock_date': company_rec.purchase_lock_date,
|
|
'sale_lock_date': company_rec.sale_lock_date,
|
|
'tax_lock_date': company_rec.tax_lock_date,
|
|
})
|
|
return res
|
|
|
|
company_id = fields.Many2one(
|
|
'res.company', string="Company",
|
|
required=True, default=lambda self: self.env.user.company_id
|
|
)
|
|
tax_lock_date = fields.Date(
|
|
string="Tax Return Lock Date",
|
|
help="No users can edit journal entries related to a tax prior and inclusive of this date.")
|
|
sale_lock_date = fields.Date(
|
|
string='Sales Lock Date',
|
|
help='Prevents creation and modification of entries in sales journals up to the defined date inclusive.'
|
|
)
|
|
purchase_lock_date = fields.Date(
|
|
string='Purchase Lock date',
|
|
help='Prevents creation and modification of entries in purchase journals up to the defined date inclusive.'
|
|
)
|
|
hard_lock_date = fields.Date(
|
|
string='Hard Lock Date',
|
|
help='Like the "Global Lock Date", but no exceptions are possible.'
|
|
)
|
|
fiscalyear_lock_date = fields.Date(
|
|
string='Lock Date for All Users',
|
|
default=lambda self: self.env.user.company_id.fiscalyear_lock_date,
|
|
help='No users, including Advisers, can edit accounts prior to and inclusive of '
|
|
'this date. Use it for fiscal year locking.'
|
|
)
|
|
|
|
def update_lock_date(self):
|
|
self.ensure_one()
|
|
has_manager_group = self.env.user.has_group('account.group_account_manager')
|
|
if not (has_manager_group or self.env.uid == SUPERUSER_ID):
|
|
raise UserError(_("You Are Not Allowed To Perform This Operation"))
|
|
self.company_id.sudo().write({
|
|
'hard_lock_date': self.hard_lock_date,
|
|
'fiscalyear_lock_date': self.fiscalyear_lock_date,
|
|
'purchase_lock_date': self.purchase_lock_date,
|
|
'sale_lock_date': self.sale_lock_date,
|
|
'tax_lock_date': self.tax_lock_date,
|
|
})
|