Files
app-odoo/app_stock_putaway/views/stock_location_views.xml
2019-01-04 03:31:34 +08:00

15 lines
667 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record model="ir.ui.view" id="app_view_location_form">
<field name="name">app.stock.location.form</field>
<field name="model">stock.location</field>
<field name="inherit_id" ref="stock.view_location_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='putaway_strategy_id']" position="attributes">
<attribute name="context">{'location_id': active_id, 'default_location_id': active_id}</attribute>
<attribute name="domain">[('location_id','=',active_id)]</attribute>
</xpath>
</field>
</record>
</odoo>