Skip to content

Commit

Permalink
[MIG] stock_move_common_dest: Migration to 18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
grindtildeath committed Feb 4, 2025
1 parent 807dd00 commit 363d38e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion stock_move_common_dest/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"name": "Stock Move Common Destination",
"summary": "Adds field for common destination moves",
"version": "16.0.1.0.1",
"version": "18.0.1.0.0",
"category": "Warehouse Management",
"website": "https://github.com/OCA/stock-logistics-warehouse",
"author": "Camptocamp, Odoo Community Association (OCA)",
Expand Down
4 changes: 2 additions & 2 deletions stock_move_common_dest/tests/test_move_common_dest.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ def setUpClass(cls):
cls.pick_type = cls.warehouse.pick_type_id

cls.product_1 = cls.env["product.product"].create(
{"name": "Product 1", "type": "product"}
{"name": "Product 1", "is_storable": True}
)
cls.product_2 = cls.env["product.product"].create(
{"name": "Product 2", "type": "product"}
{"name": "Product 2", "is_storable": True}
)

cls.procurement_group_1 = cls.env["procurement.group"].create(
Expand Down
4 changes: 2 additions & 2 deletions stock_move_common_dest/views/stock_move.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
string="Common destination moves"
readonly="1"
>
<tree>
<list>
<field name="picking_id" />
<field name="product_id" />
<field name="location_id" />
<field name="location_dest_id" />
<field name="product_uom_qty" />
<field name="product_uom" />
<field name="state" />
</tree>
</list>
</field>
</group>
</field>
Expand Down

0 comments on commit 363d38e

Please sign in to comment.