[FIX] base_module_quality: solve translate string error
[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 from tools.translate import _
26 import pooler
27 from osv import osv, fields
28
29 class quality_check(wizard.interface):
30
31     def _create_quality_check(self, cr, uid, data, context={}):
32         pool = pooler.get_pool(cr.dbname)
33         obj_quality = pool.get('module.quality.check')
34         objs = []
35         for id in data['ids']:
36             module_data = pool.get('ir.module.module').browse(cr, uid, id)
37             data = obj_quality.check_quality(cr, uid, module_data.name, module_data.state)
38             obj = obj_quality.create(cr, uid, data, context)
39             objs.append(obj)
40         return objs
41
42     def _open_quality_check(self, cr, uid, data, context):
43         obj_ids = self._create_quality_check(cr, uid, data, context)
44         return {
45             'domain': "[('id','in', ["+','.join(map(str,obj_ids))+"])]",
46             'name': _('Quality Check'),
47             'view_type': 'form',
48             'view_mode': 'tree,form',
49             'res_model': 'module.quality.check',
50             'type': 'ir.actions.act_window'
51             }
52
53     states = {
54         'init' : {
55             'actions' : [],
56             'result': {'type':'action', 'action':_open_quality_check, 'state':'end'}
57         }
58     }
59
60 quality_check("create_quality_check_wiz")
61
62 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: