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
# -*- encoding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2014 Smile (<http://www.smile.fr>). All Rights Reserved
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import logging
import os
from openerp import api, models, modules, tools
from openerp.modules.module import load_information_from_description_file
_logger = logging.getLogger(__name__)
class Module(models.Model):
_inherit = 'ir.module.module'
@api.multi
def _get_all_dependencies(self):
all_dependencies = self.browse(self.ids)
parent_modules = self.browse(self.ids)
while parent_modules:
dependencies = self.browse()
for module in parent_modules:
for dependency in module.dependencies_id:
dependencies |= dependency.depend_id
parent_modules = dependencies - all_dependencies
all_dependencies |= parent_modules
return all_dependencies
@api.multi
def load_data(self, kind='demo', mode='update', noupdate=False):
module_names = [module.name for module in self]
module_list = [module.name for module in self._get_all_dependencies()]
graph = modules.graph.Graph()
graph.add_modules(self._cr, module_list)
for module in graph:
if module.name in module_names:
self._load_data(module.name, kind, mode, noupdate)
@api.model
def _load_data(self, module_name, kind='demo', mode='update', noupdate=False):
cr = self._cr
info = load_information_from_description_file(module_name)
for filename in info.get(kind, []):
_logger.info('loading %s/%s...' % (module_name, filename))
_, ext = os.path.splitext(filename)
pathname = os.path.join(module_name, filename)
with tools.file_open(pathname) as fp:
if ext == '.sql':
tools.convert_sql_import(cr, fp)
elif ext == '.csv':
tools.convert_csv_import(cr, module_name, pathname, fp.read(),
idref=None, mode=mode, noupdate=noupdate)
elif ext == '.yml':
tools.convert_yaml_import(cr, module_name, fp, kind=kind,
idref=None, mode=mode, noupdate=noupdate)
elif ext == '.xml':
tools.convert_xml_import(cr, module_name, fp,
idref=None, mode=mode, noupdate=noupdate)
return True
@api.model
def name_search(self, name='', args=None, operator='ilike', limit=100):
"""
Search module by Technical Name and Module Name.
"""
domain = args and args[:] or []
domain += ['|', ('name', operator, name), ('shortdesc', operator, name)]
recs = self.search(domain, limit=limit)
return recs.name_get()