Skip to content

Commit

Permalink
OLMIS-8000-fix Change join lots to left join lots for pick pack repor…
Browse files Browse the repository at this point in the history
…t query
  • Loading branch information
mgrochalskisoldevelo committed Oct 23, 2024
1 parent b268d5c commit 9018665
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ FROM
JOIN
fulfillment.order_line_items order_li
ON order_li.orderid = shipment.orderid AND order_li.orderableid = shipment_li.orderableid AND shipment_li.orderableversionnumber = order_li.orderableversionnumber
JOIN
LEFT JOIN
referencedata.lots lot
ON shipment_li.lotid = lot.id
JOIN
Expand Down Expand Up @@ -166,7 +166,7 @@ FROM
OR shipment_orderable_identifier.value::uuid = commodity_type.id
)
)
JOIN
LEFT JOIN
referencedata.lots lot
ON shipment_li.lotid = lot.id
JOIN
Expand Down

0 comments on commit 9018665

Please sign in to comment.