mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
[10.0][ADD] Modules which allow an account adviser to update lock dates
This commit is contained in:
1
account_lock_date_update/tests/__init__.py
Normal file
1
account_lock_date_update/tests/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from . import test_account_lock_date_update
|
||||
@@ -0,0 +1,49 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# 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()
|
||||
Reference in New Issue
Block a user