모듈을 만들었고 완벽하게 작동합니다. 그러나 나는 벽에 부딪쳤다. 관리자로 로그인하면 모든 것이 좋습니다. 나는 이것을 acl에 추가했다 :
<?xml version="1.0"?>
<config>
<menu>
<erp translate="title" module="firtal_deadstock">
<title>ERP</title>
<sort_order>99</sort_order>
<children>
<stock_management module="firtal_deadstock">
<title>Stock Management</title>
<children>
<firtal_deadstock>
<title><![CDATA[Firtal Stock Analysis]]></title>
<sort_order>99</sort_order>
<action>adminhtml/deadstock</action>
</firtal_deadstock>
</children>
</stock_management>
</children>
</erp>
</menu>
<acl>
<resources>
<all>
<title>Allow Everything</title>
</all>
<admin>
<children>
<system>
<children>
<config>
<children>
<firtal_deadstock translate="title">
<title>Firtal Stock Analysis settings</title>
<sort_order>100</sort_order>
</firtal_deadstock>
</children>
</config>
</children>
</system>
<erp module="firtal_deadstock">
<children>
<stock_management module="firtal_deadstock">
<children>
<firtal_deadstock translate="title" module="firtal_deadstock">
<title>Firtal Stock Analysis</title>
</firtal_deadstock>
</children>
</stock_management>
</children>
</erp>
</children>
</admin>
</resources>
</acl>
</config>
그러나 역할에 권한을 부여하고 해당 역할을 가진 사용자로 로그인하면 메뉴 포인트 (구성이 아니라 실제 메뉴 포인트)가 표시되지만이 키를 누르면 액세스 거부 오류가 발생합니다.
내가 무엇을 놓치고 있습니까?