mirror of
https://gitlab.com/sonalarora/tra_backend.git
synced 2026-01-26 18:01:38 +02:00
32 lines
1.5 KiB
XML
Executable File
32 lines
1.5 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_odoo_sale_order_inherit_form" model="ir.ui.view">
|
|
<field name="name">view.odoo.sale.order.inherit.form</field>
|
|
<field name="model">sale.order</field>
|
|
<field name="inherit_id" ref="sale.view_order_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='order_line']//tree//field[@name='company_id']" position="after">
|
|
<button name="%(tradex_backend_2.action_stock_location_quantity)d" string="location" type="action" icon="fa-list" width="0.1" context="{'default_product_id':product_id}"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
<!-- <record id="stock_view_picking_form_inherit" model="ir.ui.view">
|
|
<field name="name">view.odoo.stock.picking.inherit.form</field>
|
|
<field name="model">stock.picking</field>
|
|
<field name="inherit_id" ref="stock.view_picking_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='move_ids_without_package']//tree//field[@name='product_uom']" position="after">
|
|
<button name="%(tradex_backend_2.action_stock_location_quantity)d" string="location" type="action" icon="fa-list" width="0.1" context="{'default_product_id':product_id}"/>
|
|
</xpath>
|
|
</field>
|
|
</record> -->
|
|
|
|
|
|
</odoo>
|