mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
42 lines
1.7 KiB
XML
42 lines
1.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo>
|
|
<record id="mrp_property_group_tree_view" model="ir.ui.view">
|
|
<field name="model">mrp.property.group</field>
|
|
<field name="arch" type="xml">
|
|
<tree editable="top">
|
|
<field name="name"/>
|
|
<field name="description"/>
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="mrp_property_group_action" model="ir.actions.act_window">
|
|
<field name="name">Property Groups</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="res_model">mrp.property.group</field>
|
|
<field name="view_type">form</field>
|
|
<field name="view_mode">tree</field>
|
|
<field name="help" type="html">
|
|
<p class="oe_view_nocontent_create">
|
|
Click to create a group of properties.
|
|
</p><p>
|
|
Define specific property groups that can be assigned to your
|
|
bill of materials and sales orders. Properties allows Odoo
|
|
to automatically select the right bill of materials according
|
|
to properties selected in the sales order by salesperson.
|
|
</p><p>
|
|
For instance, in the property group "Warranty", you an have
|
|
two properties: 1 year warranty, 3 years warranty. Depending
|
|
on the propoerties selected in the sales order, Odoo will
|
|
schedule a production using the matching bill of materials.
|
|
</p>
|
|
</field>
|
|
</record>
|
|
|
|
<menuitem id="menu_mrp_property_group_action"
|
|
action="mrp_property_group_action"
|
|
parent="mrp.menu_mrp_configuration"
|
|
groups="sale.group_mrp_properties"
|
|
sequence="35"/>
|
|
</odoo>
|