[MIG] stock_delivery_route: to Odoo 15.0

This commit is contained in:
Jared Kipe
2021-10-07 13:42:46 -07:00
parent e1ee7fa673
commit d5ae08400d
2 changed files with 8 additions and 7 deletions

View File

@@ -1,10 +1,10 @@
{ {
'name': 'Warehouse Delivery Routes', 'name': 'Warehouse Delivery Routes',
'summary': 'Assign a delivery route to a sale order or picking.', 'summary': 'Assign a delivery route to a sale order or picking.',
'version': '14.0.1.0.0', 'version': '15.0.1.0.0',
'author': "Hibou Corp. <hello@hibou.io>", 'author': "Hibou Corp. <hello@hibou.io>",
'category': 'Warehouse', 'category': 'Warehouse',
'license': 'AGPL-3', 'license': 'LGPL-3',
'complexity': 'expert', 'complexity': 'expert',
'images': [], 'images': [],
'website': "https://hibou.io", 'website': "https://hibou.io",

View File

@@ -72,15 +72,16 @@
</record> </record>
<!-- Picking Batch --> <!-- Picking Batch -->
<record id="stock_picking_batch_form_inherit" model="ir.ui.view"> <record id="view_picking_tree_batch_inherit" model="ir.ui.view">
<field name="name">stock.picking.batch.form.inherit</field> <field name="name">stock_picking_batch.picking.tree.batch.inherit</field>
<field name="model">stock.picking.batch</field> <field name="model">stock.picking</field>
<field name="inherit_id" ref="stock_picking_batch.stock_picking_batch_form"/> <field name="inherit_id" ref="stock_picking_batch.view_picking_tree_batch"/>
<field name="arch" type="xml"> <field name="arch" type="xml">
<xpath expr="//field[@name='picking_ids']/tree/field[@name='name']" position="before"> <xpath expr="//field[@name='name']" position="before">
<field name="sequence" widget="handle"/> <field name="sequence" widget="handle"/>
<field name="partner_address" /> <field name="partner_address" />
</xpath> </xpath>
</field> </field>
</record> </record>
</odoo> </odoo>