跳至内容
菜单
此问题已终结
2 回复
3288 查看

Friends,

I add a menu "password" and a screen in Projects as follows,

  <record id="view_password" model="ir.ui.view">
            <field name="name">project.password.tree</field>
            <field name="model">project.password</field>
            <field name="arch" type="xml">
                <tree string="Password">
                      <field name="name"/>
                      <field name="company_name"/>
                      <field name="password1"/>
                      <field name="password2"/>
                      <field name="password3"/>  
                </tree>
            </field>
       </record>
    
        <record id="view_password" model="ir.ui.view">
            <field name="name">project.password.form</field>
            <field name="model">project.password</field>
            <field name="arch" type="xml">
                <form string="Password">
                  <group>
                      <field name="name"/>
                      <field name="company_name"/>
                      <field name="password1"/>
                      <field name="password2"/>
                      <field name="password3"/>  
                  </group>                 
                             
           <notebook>
           

           
           
              <page string="Viewers">
              
                                                          <kanban quick_create="false" create="true" delete="true">
                                    <templates>
                                        <t t-name="kanban-box">
                                            <div style="position: relative">
                                                <a t-if="! read_only_mode" type="delete" style="position: absolute; right: 0; padding: 4px; diplay: inline-block">X</a>
                                                <div class="oe_module_vignette">
                                                    <img t-att-src="kanban_image('res.users', 'image_small', record.id.value)" class="oe_avatar oe_kanban_avatar_smallbox"/>
                                                    <div class="oe_module_desc">
                                                        <field name="viewed_by1"/>
                                                        <field name="viewed_by2"/>
                                                        <field name="viewed_by3"/>
                                                        <field name="viewed_by4"/>
                                                    </div>
                                                </div>
                                            </div>
                                        </t>
                                    </templates>
                                </kanban>
              </page>
           </notebook>
                  
                </form>
            </field>     
       </record>

        <record id="project_password_action" model="ir.actions.act_window">
            <field name="name">Password</field>
            <field name="res_model">project.password</field>
            <field name="view_type">form</field>
            <field name="view_mode">tree,form</field>           
        </record>
        
        <menuitem action="project_password_action" id="menu_passwords" name="Password" parent="menu_project_management" groups="group_project_manager,group_project_user"/>
        

But i cant see the menu while im a user in the group "group_project_user"

Thanks

形象
丢弃
最佳答案

In Menuitem please give only "group_project_user".

Project manger can see the things that are owned by the project user.

Thanks,

Nimesh.

形象
丢弃
最佳答案

Check your ACL for model project.password.  MenuItem's groups will only shows the menu if the user also have at least Read access to the model.

形象
丢弃