Skip to content

Commit

Permalink
does show WEBUI_M_HU_Pick process for manufacturing source HUs rows
Browse files Browse the repository at this point in the history
  • Loading branch information
teosarca committed Nov 21, 2017
1 parent 2ffba39 commit 7eda6b2
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,13 @@ private static final HURow toHURowOrNull(final IViewRow row)
else if (row instanceof PPOrderLineRow)
{
final PPOrderLineRow ppOrderLineRow = PPOrderLineRow.cast(row);

// this process does not apply to source HUs
if(ppOrderLineRow.isSourceHU())
{
return null;
}

if (!ppOrderLineRow.getType().isHUOrHUStorage())
{
return null;
Expand Down

0 comments on commit 7eda6b2

Please sign in to comment.