passing modules in GPL-3
[odoo/odoo.git] / addons / crm_profiling / wizard / open_questionnaire.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution   
5 #    Copyright (C) 2004-2008 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 pooler
23 import wizard
24 from tools import UpdateableStr, UpdateableDict
25
26 _QUEST_FORM = UpdateableStr()
27 _QUEST_FIELDS=UpdateableDict()
28
29 class open_questionnaire(wizard.interface):
30
31     def _questionnaire_compute(self, cr, uid, data, context):
32         pooler.get_pool(cr.dbname).get(data['model'])._questionnaire_compute(cr, uid, data, context)
33         return {}
34
35
36     def build_form(self, cr, uid, data, context):
37         quest_form, quest_fields = pooler.get_pool(cr.dbname).get('crm_profiling.questionnaire').build_form(cr, uid, data, context)
38         _QUEST_FORM. __init__(quest_form)
39         _QUEST_FIELDS.__init__(quest_fields)
40         return{}
41
42     _questionnaire_choice_arch = '''<?xml version="1.0"?>
43     <form string="Questionnaire">
44         <field name="questionnaire_name"/>
45     </form>'''
46
47     _questionnaire_choice_fields = {
48             'questionnaire_name': {'string': 'Questionnaire name', 'type': 'many2one', 'relation': 'crm_profiling.questionnaire', 'required': True },
49     }
50
51     states = {
52         'init': {
53             'actions': [],
54             'result': {'type': 'form', 'arch': _questionnaire_choice_arch, 'fields': _questionnaire_choice_fields, 'state':[('end', 'Cancel'), ('open', 'Open Questionnaire')]}
55         },
56         'open': {
57             'actions': [build_form],
58             'result': {'type': 'form', 'arch':_QUEST_FORM, 'fields': _QUEST_FIELDS, 'state':[('end', 'Cancel'), ('compute', 'Save Data')]}
59         },
60         'compute': {
61             'actions': [],
62             'result': {'type': 'action', 'action': _questionnaire_compute, 'state':'end'}
63         }
64     }
65
66 open_questionnaire('open_questionnaire')
67 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
68