forked from OCA/account-financial-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
account.py
62 lines (57 loc) · 2.67 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
# -*- encoding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
#
# Copyright (c) 2013-2015 Noviat nv/sa (www.noviat.com).
#
# 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 import models
from lxml import etree
class account_move_line(models.Model):
_inherit = 'account.move.line'
def fields_view_get(self, cr, uid, view_id=None, view_type='form',
context=None, toolbar=False, submenu=False):
res = super(account_move_line, self).fields_view_get(
cr, uid, view_id=view_id, view_type=view_type,
context=context, toolbar=toolbar, submenu=False)
if context and 'account_move_line_search_extension' in context \
and view_type == 'tree':
doc = etree.XML(res['arch'])
nodes = doc.xpath("/tree")
for node in nodes:
if 'editable' in node.attrib:
del node.attrib['editable']
res['arch'] = etree.tostring(doc)
return res
def search(self, cr, uid, args, offset=0, limit=None, order=None,
context=None, count=False):
if context and 'account_move_line_search_extension' in context:
ana_obj = self.pool['account.analytic.account']
for arg in args:
if arg[0] == 'analytic_account_id':
ana_dom = ['|',
('name', 'ilike', arg[2]),
('code', 'ilike', arg[2])]
ana_ids = ana_obj.search(
cr, uid, ana_dom, context=context)
ana_ids = ana_obj.search(
cr, uid, [('id', 'child_of', ana_ids)])
arg[2] = ana_ids
break
return super(account_move_line, self).search(
cr, uid, args, offset=offset, limit=limit, order=order,
context=context, count=count)