[IMP] Update the copyright to 2009
[odoo/odoo.git] / addons / account_analytic_plans / wizard / create_model.py
index 14569c0..04de182 100644 (file)
@@ -1,4 +1,24 @@
 # -*- encoding: utf-8 -*-
+##############################################################################
+#
+#    OpenERP, Open Source Management Solution
+#    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
+#    $Id$
+#
+#    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 wizard
 import time
 import netsvc
@@ -9,6 +29,7 @@ info = '''<?xml version="1.0"?>
     <label string="This distribution model has been saved.\nYou will be able to reuse it later."/>
 </form>'''
 
+
 def activate(self, cr, uid, data, context):
     plan_obj = pooler.get_pool(cr.dbname).get('account.analytic.plan.instance')
     if data['id']:
@@ -23,6 +44,8 @@ def activate(self, cr, uid, data, context):
     else:
         return 'endit'
 
+def _do_nothing(self, cr, uid, data, context):
+    return 1
 
 class create_model(wizard.interface):
 
@@ -37,7 +60,7 @@ class create_model(wizard.interface):
         },
         'endit': {
             'actions': [],
-            'result': {'type':'form', 'arch':'', 'fields':{}, 'state':[('end','OK')]} #FIXME: check
+            'result': {'type':'action','action':_do_nothing , 'state':'end'} #FIXME: check
         },
     }
 create_model('create.model')