GT-2903 corrected terminate checkout from viewed checkouts list. Was

terminating incorrect checkout.
This commit is contained in:
ghidra1 2019-06-10 16:55:22 -04:00
parent 90ec8fe3af
commit 89a4496a2e

View file

@ -128,7 +128,7 @@ public class CheckoutsPanel extends JPanel {
Set<ItemCheckoutStatus> toTerminate = new HashSet<>();
for (int i = 0; i < rows.length; i++) {
ItemCheckoutStatus item = tableModel.getRowObject(i);
ItemCheckoutStatus item = tableModel.getRowObject(rows[i]);
toTerminate.add(item);
}