mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
15 lines
667 B
XML
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>
|