mirror of
https://gitlab.com/sonalarora/tra_backend.git
synced 2025-12-26 10:14:11 +02:00
50 lines
2.1 KiB
XML
Executable File
50 lines
2.1 KiB
XML
Executable File
<?xml version="1.0"?>
|
|
<!--
|
|
Copyright (C) 2015 DevIntelle Consulting Service Pvt.Ltd (<http://www.devintellecs.com>).
|
|
|
|
For Module Support : devintelle@gmail.com or Skype : devintelle
|
|
-->
|
|
<odoo>
|
|
<record id="view_stock_move_views_inherit_form" model="ir.ui.view">
|
|
<field name="name">view.stock.move.views.inherit.form</field>
|
|
<field name="model">stock.move</field>
|
|
<field name="inherit_id" ref="stock.view_stock_move_operations"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='move_line_ids']" position="after">
|
|
<field name="move_location_lines" context="{'default_product_id':product_id,'default_uom':product_uom}">
|
|
<tree editable="bottom">
|
|
<field name="product_id" readonly="1" force_save="1"/>
|
|
<field name="qty"/>
|
|
<field name="uom" readonly="1" force_save="1"/>
|
|
<field name="location_id"/>
|
|
<field name="company_id" invisible="1"/>
|
|
</tree>
|
|
</field>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="view_stock_move_location_views_inherit_form" model="ir.ui.view">
|
|
<field name="name">view.stock.move.location.views.inherit.form</field>
|
|
<field name="model">stock.move</field>
|
|
<field name="inherit_id" ref="stock.view_move_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//group[1]" position="after">
|
|
<group string='Location Products'>
|
|
<field name="move_location_lines" context="{'default_product_id':product_id,'default_uom':product_uom}" nolabel="1">
|
|
<tree editable="bottom">
|
|
<field name="product_id"/>
|
|
<field name="qty"/>
|
|
<field name="uom"/>
|
|
<field name="location_id"/>
|
|
<field name="company_id" invisible="1"/>
|
|
</tree>
|
|
</field>
|
|
</group>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
|
|
</odoo>
|