Bug 24441: Error when checking in an item with BranchTansferLimitsType set to itemtype
authorKyle M Hall <kyle@bywatersolutions.com>
Thu, 16 Jan 2020 19:10:18 +0000 (14:10 -0500)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Thu, 23 Jan 2020 09:03:51 +0000 (09:03 +0000)
commit0dbf76c290f031e58dcb04e16047f1bd984560ef
tree1f0be10f7388030c6bdddf8494403ab95b67c6a8
parent3760af11f7b098b8de68ce4429d348737caf4be1
Bug 24441: Error when checking in an item with BranchTansferLimitsType set to itemtype

It appears that the transition to using Koha::Item in AddReturn has introduced a bug. Previously $item was a hashref with the key 'itemtype', now that it's an object, it has no itemtype method and so triggers an error with the message "The method Koha::Item->itemtype is not covered by tests!".

Test Plan:
1) Enable Branch Transfer Limits via itemtype
2) Check in an item
3) Note the error
4) Apply this patch
5) Restart all the things!
6) Check in an item
7) No error!

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Maribeth (Turner) Shafer <mshafer@ckls.org>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
C4/Circulation.pm