Since one of the last updates of Magento every admin controller needs an _isAllowed method to check the ACL. Neither these methods nor an ACL definition is contained in the module. So no user without full admin privileges is able to create an order from OroCRM.
For gateway controller
protected function _isAllowed()
{
return Mage::getSingleton('admin/session')->isAllowed('oro/gateway');
}
And sales controller
protected function _isAllowed()
{
return Mage::getSingleton('admin/session')->isAllowed('oro/sales');
}
And the corresponding entries in the adminhtml.xml
Since one of the last updates of Magento every admin controller needs an _isAllowed method to check the ACL. Neither these methods nor an ACL definition is contained in the module. So no user without full admin privileges is able to create an order from OroCRM.
For gateway controller
And sales controller
And the corresponding entries in the adminhtml.xml
I hope the fix will be implemented soon.
Best, Sebastian