[FIX] orm: fix autogenerated tree view for object having no columns (taking 'id'...
[odoo/odoo.git] / bin / wizard / __init__.py
index 4a64b9d..7302f4d 100644 (file)
@@ -1,4 +1,4 @@
-# -*- encoding: utf-8 -*-
+# -*- coding: utf-8 -*-
 ##############################################################################
 #    
 #    OpenERP, Open Source Management Solution
@@ -41,19 +41,19 @@ class except_wizard(Exception):
 
 class interface(netsvc.Service):
     states = {}
-    
+
     def __init__(self, name):
-        assert not netsvc.service_exist('wizard.'+name), 'The wizard "%s" already exists!'%name
+        assert not self.exists('wizard.'+name), 'The wizard "%s" already exists!' % (name,)
         super(interface, self).__init__('wizard.'+name)
         self.exportMethod(self.execute)
         self.wiz_name = name
-        
+
     def translate_view(self, cr, node, state, lang):
         if node.get('string'):
             trans = translate(cr, self.wiz_name+','+state, 'wizard_view', lang, node.get('string').encode('utf8'))
             if trans:
                 node.set('string', trans)
-        for n in node.getchildren():
+        for n in node:
             self.translate_view(cr, n, state, lang)
 
     def execute_cr(self, cr, uid, data, state='init', context=None):
@@ -148,6 +148,10 @@ class interface(netsvc.Service):
                 res['arch'] = arch
                 res['state'] = button_list
 
+            elif result_def['type'] == 'choice':
+                next_state = result_def['next_state'](self, cr, uid, data, context)
+                return self.execute_cr(cr, uid, data, next_state, context)
+        
         except Exception, e:
             if isinstance(e, except_wizard) \
                 or isinstance(e, except_osv) \
@@ -162,9 +166,6 @@ class interface(netsvc.Service):
                         'Exception in call: ' + tb_s)
                 raise
 
-        if result_def['type'] == 'choice':
-            next_state = result_def['next_state'](self, cr, uid, data, context)
-            return self.execute_cr(cr, uid, data, next_state, context)
         return res
 
     def execute(self, db, uid, data, state='init', context=None):