Skip to content

Commit

Permalink
picking terminal: picking slot rows shall NOT have duplicate IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
teosarca committed Dec 6, 2017
1 parent 70cd00a commit 3dcdd65
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -293,4 +293,9 @@ public int getTopLevelHUId()

return huId;
}

public int getStorageProductId()
{
return storageProductId;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,8 @@ private static final PickingSlotRow createPickedHURow(@NonNull final PickedHUEdi

return PickingSlotRow.fromPickedHUBuilder()
.pickingSlotId(pickingSlotId)
.huId(huEditorRow.getM_HU_ID())
.huId(huEditorRow.getHURowId().getHuId())
.huStorageProductId(huEditorRow.getHURowId().getStorageProductId())

.huEditorRowType(huEditorRow.getType())

Expand Down

0 comments on commit 3dcdd65

Please sign in to comment.