blob: f9f2b88202bd9672d1def6e0255c140eee557174 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Warehouse -->
<record id="view_warehouse_inherit_mrp" model="ir.ui.view">
<field name="name">Stock Warehouse Inherit MRP</field>
<field name="model">stock.warehouse</field>
<field name="inherit_id" ref="stock.view_warehouse"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='resupply_wh_ids']" position="before">
<field name="manufacture_to_resupply" />
<field name="manufacture_steps" attrs="{'invisible': [('manufacture_to_resupply', '=', False)]}" widget="radio"/>
</xpath>
<xpath expr="//field[@name='out_type_id']" position="after">
<field name="manu_type_id" readonly="True"/>
</xpath>
<xpath expr="//group[@name='group_resupply']" position="attributes">
<attribute name="attrs">{}</attribute>
</xpath>
<xpath expr="//field[@name='wh_output_stock_loc_id']" position="after">
<field name="sam_loc_id"/>
<field name="pbm_loc_id"/>
</xpath>
<xpath expr="//field[@name='out_type_id']" position="after">
<field name="sam_type_id"/>
<field name="pbm_type_id"/>
</xpath>
</field>
</record>
</odoo>
|