forked from OCA/account-analytic
-
Notifications
You must be signed in to change notification settings - Fork 1
/
account.py
95 lines (86 loc) · 4.51 KB
/
account.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# -*- encoding: utf-8 -*-
##############################################################################
#
# Account analytic plan required module for OpenERP
# Copyright (C) 2014 Acsone (http://acsone.eu).
# @author Stéphane Bidoul <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from openerp.osv import orm
from openerp.tools.translate import _
class account_account_type(orm.Model):
_inherit = "account.account.type"
def _get_policies(self, cr, uid, context=None):
"""This is the method to be inherited for adding policies"""
policies = super(account_account_type, self).\
_get_policies(cr, uid, context=context)
policies.extend([('always_plan',
_('Always (analytic distribution)')),
('always_plan_or_account',
_('Always (analytic account or distribution)'))])
return policies
class account_move_line(orm.Model):
_inherit = "account.move.line"
def _check_analytic_plan_required_msg(self, cr, uid, ids, context=None):
for move_line in self.browse(cr, uid, ids, context=context):
if move_line.analytic_account_id and move_line.analytics_id:
return _('Analytic account and analytic distribution '
'are mutually exclusive')
if move_line.debit == 0 and move_line.credit == 0:
continue
analytic_policy = self._get_analytic_policy(cr, uid,
move_line.account_id,
context=context)
if analytic_policy == 'always_plan' \
and not move_line.analytics_id:
return _("Analytic policy is set to "
"'Always (analytic distribution)' with account "
"%s '%s' but the analytic distribution is "
"missing in the account move line with "
"label '%s'.") % \
(move_line.account_id.code,
move_line.account_id.name,
move_line.name)
if analytic_policy == 'always_plan_or_account' \
and not move_line.analytic_account_id \
and not move_line.analytics_id:
return _("Analytic policy is set to "
"'Always (analytic account or distribution)' "
"with account %s '%s' but the analytic "
"distribution and the analytic account are "
"missing in the account move line "
"with label '%s'.") % \
(move_line.account_id.code,
move_line.account_id.name,
move_line.name)
elif analytic_policy == 'never' and move_line.analytics_id:
return _("Analytic policy is set to 'Never' with account "
"%s '%s' but the account move line with label "
"'%s' has an analytic distribution %s '%s'.") % \
(move_line.account_id.code,
move_line.account_id.name,
move_line.name,
move_line.analytic_account_id.code,
move_line.analytic_account_id.name)
def _check_analytic_plan_required(self, cr, uid, ids, context=None):
return not self._check_analytic_plan_required_msg(cr, uid, ids,
context=context)
_constraints = [
(_check_analytic_plan_required,
_check_analytic_plan_required_msg,
['analytic_account_id', 'analytics_id', 'account_id',
'debit', 'credit']),
]