[FIX] Change the year of the copyright
[odoo/odoo.git] / addons / crm_profiling / wizard / open_questionnaire.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #    
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.     
19 #
20 ##############################################################################
21 import pooler
22 import wizard
23 from tools import UpdateableStr, UpdateableDict
24
25 _QUEST_FORM = UpdateableStr()
26 _QUEST_FIELDS=UpdateableDict()
27
28 class open_questionnaire(wizard.interface):
29
30     def _questionnaire_compute(self, cr, uid, data, context):
31         pooler.get_pool(cr.dbname).get(data['model'])._questionnaire_compute(cr, uid, data, context)
32         return {}
33
34
35     def build_form(self, cr, uid, data, context):
36         quest_form, quest_fields = pooler.get_pool(cr.dbname).get('crm_profiling.questionnaire').build_form(cr, uid, data, context)
37         _QUEST_FORM. __init__(quest_form)
38         _QUEST_FIELDS.__init__(quest_fields)
39         return{}
40
41     _questionnaire_choice_arch = '''<?xml version="1.0"?>
42     <form string="Questionnaire">
43         <field name="questionnaire_name"/>
44     </form>'''
45
46     _questionnaire_choice_fields = {
47             'questionnaire_name': {'string': 'Questionnaire name', 'type': 'many2one', 'relation': 'crm_profiling.questionnaire', 'required': True },
48     }
49
50     states = {
51         'init': {
52             'actions': [],
53             'result': {'type': 'form', 'arch': _questionnaire_choice_arch, 'fields': _questionnaire_choice_fields, 'state':[('end', 'Cancel'), ('open', 'Open Questionnaire')]}
54         },
55         'open': {
56             'actions': [build_form],
57             'result': {'type': 'form', 'arch':_QUEST_FORM, 'fields': _QUEST_FIELDS, 'state':[('end', 'Cancel'), ('compute', 'Save Data')]}
58         },
59         'compute': {
60             'actions': [],
61             'result': {'type': 'action', 'action': _questionnaire_compute, 'state':'end'}
62         }
63     }
64
65 open_questionnaire('open_questionnaire')
66 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
67