Skip to content

Commit

Permalink
[MIG] stock_packaging_calculator: Migration to 17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenminhchien committed Jun 10, 2024
1 parent 71d6610 commit b88fcfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stock_packaging_calculator/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"name": "Stock packaging calculator",
"summary": "Compute product quantity to pick by packaging",
"version": "16.0.1.0.1",
"version": "17.0.1.0.0",
"development_status": "Beta",
"category": "Warehouse Management",
"website": "https://github.com/OCA/stock-logistics-warehouse",
Expand Down
2 changes: 1 addition & 1 deletion stock_packaging_calculator/models/product.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def product_qty_by_packaging_as_str(
)
# Collect all strings representations
as_string = []
for record, info in zip(records, _qty_by_packaging):
for record, info in zip(records, _qty_by_packaging, strict=True):
bit = _qty_by_packaging_as_str(record, info["qty"])
if bit:
as_string.append(bit)
Expand Down

0 comments on commit b88fcfd

Please sign in to comment.