22 lines
1013 B
XML
22 lines
1013 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<record id="sf_stock_location_route_form_view" model="ir.ui.view">
|
|
<field name="name">stock.route.form</field>
|
|
<field name="model">stock.route</field>
|
|
<field name="inherit_id" ref="stock.stock_location_route_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='packaging_selectable']" position="after">
|
|
<field name="demand_plan_selectable"/>
|
|
</xpath>
|
|
<xpath expr="//group[@name='route_selector']" position="after">
|
|
<group name="group_category" string="组类">
|
|
<group>
|
|
<field name="stock_route_group_ids" options="{'no_create': True}" widget="many2many_tags"/>
|
|
<field name="demand_plan_ids" invisible="1" options="{'no_create': True}" widget="many2many_tags"/>
|
|
</group>
|
|
</group>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|