c2c-oerpscenario team mailing list archive
-
c2c-oerpscenario team
-
Mailing list archive
-
Message #29589
[Bug 815903] Re: [TRUNK] survey KeyError: 'id'
If it can help:
(Pdb) l
507 def default_get(self, cr, uid, fields, context=None):
508 if context is None:
509 context = {}
510 data = super(survey_question, self).default_get(cr, uid, fields, context)
511 if context.get('line_order',False):
512 -> if len(context['line_order'][-1]) > 2 and type(context['line_order'][-1][2]) == type({}) and context['line_order'][-1][2].has_key('sequence'):
513 data['sequence'] = context['line_order'][-1][2]['sequence'] + 1
514
515 if context.has_key('page_id'):
516 data['page_id']= context.get('page_id', False)
517 return data
(Pdb) context['line_order'][-1]
62
--
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to the OpenERP Project Group.
https://bugs.launchpad.net/bugs/815903
Title:
[TRUNK] survey KeyError: 'id'
Status in OpenERP Server:
Confirmed
Bug description:
Using server, web-client and addons from trunk on Ubuntu 11.04 with
python2.6, I installed survey module.
In Tools > Surveys > Define Surveys > Surveys, when I click on any
survey in the tree view, I get:
Traceback (most recent call last):
File "/home/max/openerp/server/trunk/openerp/netsvc.py", line 440, in dispatch
result = ExportService.getService(service_name).dispatch(method, auth, params)
File "/home/max/openerp/server/trunk/openerp/service/web_services.py", line 588, in dispatch
res = fn(db, uid, *params)
File "/home/max/openerp/server/trunk/openerp/osv/osv.py", line 118, in wrapper
return f(self, dbname, *args, **kwargs)
File "/home/max/openerp/server/trunk/openerp/osv/osv.py", line 172, in execute
res = self.execute_cr(cr, uid, obj, method, *args, **kw)
File "/home/max/openerp/server/trunk/openerp/osv/osv.py", line 163, in execute_cr
return getattr(object, method)(cr, uid, *args, **kw)
File "/home/max/openerp/server/trunk/openerp/osv/orm.py", line 1994, in fields_view_get
xarch, xfields = self.__view_look_dom_arch(cr, user, result['arch'], view_id, context=ctx)
File "/home/max/openerp/server/trunk/openerp/osv/orm.py", line 1656, in __view_look_dom_arch
fields_def = self.__view_look_dom(cr, user, node, view_id, False, fields, context=context)
File "/home/max/openerp/server/trunk/openerp/osv/orm.py", line 1605, in __view_look_dom
fields.update(self.__view_look_dom(cr, user, f, view_id, in_tree_view, model_fields, context))
File "/home/max/openerp/server/trunk/openerp/osv/orm.py", line 1605, in __view_look_dom
fields.update(self.__view_look_dom(cr, user, f, view_id, in_tree_view, model_fields, context))
File "/home/max/openerp/server/trunk/openerp/osv/orm.py", line 1558, in __view_look_dom
field = model_fields[node.get('name')]
KeyError: 'id'
To manage notifications about this bug go to:
https://bugs.launchpad.net/openobject-server/+bug/815903/+subscriptions
References