You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.2 KiB
29 lines
1.2 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<!-- Action used to show the Customer details in the venue Booking-->
|
|
<record id="res_partner_action_booking_customer"
|
|
model="ir.actions.act_window">
|
|
<field name="name">Customers</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="res_model">res.partner</field>
|
|
<field name="view_mode">kanban,tree,form</field>
|
|
<field name="context">{'search_default_customer':
|
|
1,'res_partner_search_mode': 'customer', 'default_is_company':
|
|
True, 'default_customer_rank': 1}
|
|
</field>
|
|
<field name="help" type="html">
|
|
<p class="o_view_nocontent_smiling_face">
|
|
Create a new customer in your address book
|
|
</p>
|
|
<p>
|
|
Odoo helps you easily track all activities related to a
|
|
customer.
|
|
</p>
|
|
</field>
|
|
</record>
|
|
<!-- Menu Item for the Customers-->
|
|
<menuitem id="customer_menu"
|
|
name="Customers" action="res_partner_action_booking_customer"
|
|
parent="venue_booking_management_configuration_menu"
|
|
sequence="40"/>
|
|
</odoo>
|
|
|