]> git.koha-community.org Git - koha.git/commit
Bug 14598: Make C4::Circulation::AddReturn store the right itemtype
authorTomas Cohen Arazi <tomascohen@theke.io>
Mon, 27 Jul 2015 14:40:38 +0000 (11:40 -0300)
committerMason James <mtj@kohaaloha.com>
Mon, 12 Dec 2016 01:54:10 +0000 (14:54 +1300)
commitf8e2e2f1e25a9838300a160a094f4c0b3dcfa710
tree772e8fddffd8f363c90fbba3fecf3b54cd44e1e4
parentdb99e5ff04298683a4b6651f0b906de0336b5646
Bug 14598: Make C4::Circulation::AddReturn store the right itemtype

This patch makes C4::Circulation::AddReturn correctly store the itemtype
on the 'statistics' table.

To reproduce:
- Checkout master.
- Make a checkout.
- Check the 'statistics' table and notice the itemtype is correctly set
  > SELECT * FROM statistics;
- Check the item in.
- Check the 'statistics' table and notice the itemtype is not set
  > SELECT * FROM statistics WHERE type="return";
=> FAIL: itemtype is set to NULL

To test:
- Apply the regression tests patch
- Run the tests:
  $ prove t/db_dependent/Circulation/Returns.t
=> FAIL: Tests fail
- Apply this patch
- Run the regression tests:
  $ prove t/db_dependent/Circulation/Returns.t
=> SUCCESS: Tests now pass.
- Repeat the 'To reproduce' steps
=> SUCCESS: itemtype is now correctly set (in real life)
- Happily sign off :-D

Sponsored-by: Universidad Empresarial Siglo 21
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Mason James <mtj@kohaaloha.com>
C4/Circulation.pm