Skip to Content
Menu
This question has been flagged
5 Replies
2526 Views

I have created one user called Asset manager,here I want to add one menu item(i.e complaints) to an existing maintenance module.Here is my code..Please let me know what I did a mistake in that code


<record id="asset_complaint_tree" model="ir.ui.view">
            <field name="name">Asset Complaint</field>
            <field name="model">asset.complaint</field>
            <field name="type">tree</field>
            <field name="arch" type="xml">
                <tree string="Complaints">
                    <field name="asset_id"/>
                    <field name="product_id"/>
                    <field name="no_of_defected_products"/>
                    <field name="state"/>
                </tree>
            </field>
        </record>
 
  <record model="ir.actions.act_window" id="asset_complaint_action">
  <field name="name">Asset Complaint</field>
  <field name="res_model">asset.complaint</field>
  <field name="view_mode">tree,form</field>
  <field name="target">current</field>
  </record>
 
   
 <menuitem id="asset_complaint_menu" name="Complaints" action="asset_complaint_action" parent="asset.menu_maintenance_assets"/>

Avatar
Discard

What is it your problem? Getting error or your menu not showing in your view?

If you get any error please specify

Best Answer

Hi,

You didn't add the error message that you are getting. In general you can change the above code like this,

<record model="ir.actions.act_window" id="asset_complaint_action">
<field name="name">Asset Complaint</field>
<field name="res_model">asset.complaint</field>
<field name="view_type">tree</field>
<field name="view_mode">tree,form</field>
<field name="domain"></field>
<field name="help" type="html">
<p class="oe_view_nocontent_create">Assets
</p>
</field>
</record>

Also add form view for this. Dont forget add the original module in depends


Thanks

Avatar
Discard
Author

Menu was not showing in my view...

Author

I am not getting any error. I want to see the menu so menu was not showing in my view..

Best Answer

没有编写action


Avatar
Discard
Related Posts Replies Views Activity
3
Aug 24
5501
4
Jul 24
38810
5
Apr 23
93720
3
Nov 22
2955
3
Aug 22
3037