2
0
account-financial-tools/account_lock_date_update/tests/test_account_lock_date_update.py
Fekete Mihai 751b45af48 Migrate account_lock_date_update to 11.0
Update menu with Adviser/Actions.

Update readme.
2022-12-06 13:15:59 +01:00

49 lines
1.5 KiB
Python

# Copyright 2017 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo.tests.common import TransactionCase
from odoo.exceptions import UserError
class TestAccountLockDateUpdate(TransactionCase):
def setUp(self):
super(TestAccountLockDateUpdate, self).setUp()
self.UpdateLockDateUpdateObj = self.env['account.update.lock_date']
self.company = self.env.ref('base.main_company')
self.demo_user = self.env.ref('base.user_demo')
self.adviser_group = self.env.ref('account.group_account_manager')
def create_account_lock_date_update(self):
return self.UpdateLockDateUpdateObj.create({
'company_id': self.company.id,
})
def test_01_update_without_access(self):
wizard = self.create_account_lock_date_update()
wizard.write({
'period_lock_date': '2000-01-01',
'fiscalyear_lock_date': '2000-01-01',
})
self.demo_user.write({
'groups_id': [(3, self.adviser_group.id)],
})
with self.assertRaises(UserError):
wizard.sudo(self.demo_user.id).execute()
def test_02_update_with_access(self):
wizard = self.create_account_lock_date_update()
wizard.write({
'period_lock_date': '2000-01-01',
'fiscalyear_lock_date': '2000-01-01',
})
self.demo_user.write({
'groups_id': [(4, self.adviser_group.id)],
})
wizard.sudo(self.demo_user.id).execute()