Skip to content

Commit 00637f4

Browse files
committed
[MIG] stock_picking_delivery_link: Migration to 18.0
1 parent 8651dbf commit 00637f4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

stock_picking_delivery_link/__manifest__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{
55
"name": "Stock Picking Delivery Link",
66
"summary": "Adds link to the delivery on all intermediate operations.",
7-
"version": "16.0.1.1.4",
7+
"version": "18.0.1.0.0",
88
"author": "Camptocamp, Odoo Community Association (OCA)",
99
"website": "https://github.com/OCA/delivery-carrier",
1010
"category": "Warehouse Management",

stock_picking_delivery_link/tests/test_delivery_link.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class TestStockPickingDeliveryLink(StockPickingDeliveryLinkCommonCase):
1111
def setUpClass(cls):
1212
super().setUpClass()
1313
cls.product = cls.env["product.product"].create(
14-
{"name": "Test Product", "type": "product"}
14+
{"name": "Test Product", "type": "consu", "is_storable": True}
1515
)
1616
cls.customer_location = cls.env.ref("stock.stock_location_customers")
1717
test_carrier_product = cls.env["product.product"].create(

stock_picking_delivery_link/views/stock_picking.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<group
1212
name="ship_data"
1313
string="Delivery Links"
14-
attrs="{'invisible': [('ship_picking_id', '=', False)]}"
14+
invisible="not ship_picking_id"
1515
>
1616
<field name="ship_picking_id" />
1717
<field name="ship_carrier_id" />

0 commit comments

Comments
 (0)