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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2011 MSF, TeMPO Consulting.
#
# 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 osv import fields, osv
class account_target_costcenter(osv.osv):
_name = 'account.target.costcenter'
_rec_name = 'cost_center_id'
_columns = {
'instance_id': fields.many2one('msf.instance', 'Instance', required=True),
'cost_center_id': fields.many2one('account.analytic.account', 'Code', domain=[('category', '=', 'OC')], required=True),
'cost_center_name': fields.related('cost_center_id', 'name', string="Name", readonly=True, type="text"),
'is_target': fields.boolean('Is target'),
'is_top_cost_center': fields.boolean('Top cost centre for budget consolidation'),
'is_po_fo_cost_center': fields.boolean('Cost centre picked for PO/FO reference'),
'parent_id': fields.many2one('account.target.costcenter', 'Parent'),
'child_ids': fields.one2many('account.target.costcenter', 'parent_id', 'Children'),
}
_defaults = {
'is_target': False,
'is_top_cost_center': False,
'is_po_fo_cost_center': False,
'parent_id': False,
}
def _check_target(self, cr, uid, ids, context=None):
if not context:
context = {}
for line in self.browse(cr, uid, ids, context=context):
bad_ids = self.search(cr, uid, [('cost_center_id', '=', line.cost_center_id.id),('is_target', '=', True)])
if len(bad_ids) and len(bad_ids) > 1:
return False
return True
def _check_top_cost_center(self, cr, uid, ids, context=None):
if not context:
context = {}
for line in self.browse(cr, uid, ids, context=context):
bad_ids = self.search(cr, uid, [('cost_center_id', '=', line.cost_center_id.id),('is_top_cost_center', '=', True)])
if len(bad_ids) and len(bad_ids) > 1:
return False
return True
def _check_top_cost_center_unicity(self, cr, uid, ids, context=None):
if not context:
context = {}
for line in self.browse(cr, uid, ids, context=context):
bad_ids = self.search(cr, uid, [('instance_id', '=', line.instance_id.id),('is_top_cost_center', '=', True)])
if len(bad_ids) and len(bad_ids) > 1:
return False
return True
def _check_po_fo_cost_center(self, cr, uid, ids, context=None):
if not context:
context = {}
for line in self.browse(cr, uid, ids, context=context):
bad_ids = self.search(cr, uid, [('cost_center_id', '=', line.cost_center_id.id),('is_po_fo_cost_center', '=', True)])
if len(bad_ids) and len(bad_ids) > 1:
return False
return True
def _check_po_fo_cost_center_unicity(self, cr, uid, ids, context=None):
if not context:
context = {}
for line in self.browse(cr, uid, ids, context=context):
bad_ids = self.search(cr, uid, [('instance_id', '=', line.instance_id.id),('is_po_fo_cost_center', '=', True)])
if len(bad_ids) and len(bad_ids) > 1:
return False
return True
_constraints = [
(_check_target, 'This cost centre is already defined as target in another proprietary instance.', ['is_target', 'cost_center_id', 'instance_id']),
(_check_top_cost_center, 'This cost centre is already defined as the budget consolidation in another proprietary instance.', ['is_top_cost_center', 'cost_center_id', 'instance_id']),
(_check_top_cost_center_unicity, 'Another cost centre is already defined as the budget consolidation in this proprietary instance.', ['is_top_cost_center', 'cost_center_id', 'instance_id']),
(_check_po_fo_cost_center, 'This cost centre is already defined as the PO/FO reference in another proprietary instance.', ['is_po_fo_cost_center', 'cost_center_id', 'instance_id']),
(_check_po_fo_cost_center_unicity, 'Another cost centre is already defined as the PO/FO reference in this proprietary instance.', ['is_po_fo_cost_center', 'cost_center_id', 'instance_id']),
]
def create(self, cr, uid, vals, context={}):
res_id = super(account_target_costcenter, self).create(cr, uid, vals, context=context)
# create lines in instance's children
if 'instance_id' in vals:
instance = self.pool.get('msf.instance').browse(cr, uid, vals['instance_id'], context=context)
current_instance = self.pool.get('res.users').browse(cr, uid, uid, context=context).company_id.instance_id
if instance and instance.child_ids and current_instance.level == 'section':
for child in instance.child_ids:
self.create(cr, uid, {'instance_id': child.id,
'cost_center_id': vals['cost_center_id'],
'is_target': False,
'parent_id': res_id})
return res_id
def unlink(self, cr, uid, ids, context={}):
if isinstance(ids, (int, long)):
ids = [ids]
# delete lines in instance's children
lines_to_delete_ids = self.search(cr, uid, [('parent_id', 'in', ids)], context=context)
if len(lines_to_delete_ids) > 0:
self.unlink(cr, uid, lines_to_delete_ids, context=context)
return super(account_target_costcenter, self).unlink(cr, uid, ids, context)
account_target_costcenter()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
|