[ADD] add base_module_quality module
[odoo/odoo.git] / addons / base_module_quality / wizard / module_quality_check.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22 import os
23
24 import wizard
25 import pooler
26 from osv import osv, fields
27
28 #TODO: add cheks: do the class quality_check inherits the class abstract_quality_check?
29
30 class quality_check(wizard.interface):
31
32     def _create_quality_check(self, cr, uid, data, context={}):
33         pool = pooler.get_pool(cr.dbname)
34         obj_quality = pool.get('module.quality.check')
35         objs = []
36         for id in data['ids']:
37             module_data = pool.get('ir.module.module').browse(cr, uid, id)
38             data = obj_quality.check_quality(cr, uid, module_data.name, module_data.state)
39             obj = obj_quality.create(cr, uid, data, context)
40             objs.append(obj)
41         return objs
42
43     def _open_quality_check(self, cr, uid, data, context):
44         obj_ids = self._create_quality_check(cr, uid, data, context)
45         return {
46             'domain': "[('id','in', ["+','.join(map(str,obj_ids))+"])]",
47             'name': _('Quality Check'),
48             'view_type': 'form',
49             'view_mode': 'tree,form',
50             'res_model': 'module.quality.check',
51             'type': 'ir.actions.act_window'
52             }
53
54     states = {
55         'init' : {
56             'actions' : [],
57             'result': {'type':'action', 'action':_open_quality_check, 'state':'end'}
58         }
59     }
60
61 quality_check("create_quality_check_wiz")
62
63 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: