← Back to team overview

openerp-india team mailing list archive

[Bug 1015126] Re: Wrong permission check with ir.actions.server

 

Hello,

I forgot to say, that the problem is only with server-actions with model of instance (osv.osv). The configuration wizard in the video is an osv.memory object. the reason is in the check() method of ir_model.py:
if isinstance(model_obj, osv.osv_memory):
            return True

So please use an osv.osv model in the server action.
Furthermore you should reboot the server after you have changed the model in the server action.
I hope that you can reproduce the error!

Thanks

-- 
You received this bug notification because you are a member of OpenERP
Indian Team, which is subscribed to OpenERP Server.
https://bugs.launchpad.net/bugs/1015126

Title:
  Wrong permission check with ir.actions.server

Status in OpenERP Server:
  Incomplete

Bug description:
  I am using a server-action (ir.actions.server) and want to call it via a menu item.
  The user also has all rights to access the model of the server action

  Expected Result:
  User sees menu item with the server action

  Actual Result:
  User does not see the item with the server action

  Problem:
  Method _filter_visible_menus of ir_ui_menu.py calls modelaccess.check() with a browse_record(model_id, ..) as parameter.
  Then method "check()" in ir_model.py wants to obtain the name of the model with "model.name".
  The correct way would be to use "model.model" instead of model.name because this is the correct model name.

  I am using OpenERP 6.0.3, but the problem should also exist in the
  current trunk.

To manage notifications about this bug go to:
https://bugs.launchpad.net/openobject-server/+bug/1015126/+subscriptions


References