This question has been flagged
2 Replies
2511 Views

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.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

Avatar
Discard
Best Answer
  • Try giving access rights on the 'model' -->  project.password

Hope this helps !!.

Avatar
Discard
Author

Great,,, It works... Give u 1 vote & marked as correct...

You’re welcome @abin

Best Answer

yes,,, this is security in odoo....

the stable approach i will guide is ir.model.access.csv,

Go to settings-->users-->groups

In that chose all the groups for whom you should give access... click export ... window appears in that select name and add then click export to file ...

now a file will be generated modify it same as some eg ir.model.access.csv files then add it in __openerp__.py file then update & upgrade.....

see this link

Avatar
Discard
Author

For what i export it..

to get a csv file u should export it...