From 9fbc432604cf9f7c90a3ad5da93e2267841d0410 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Tue, 1 Sep 2015 11:52:17 -0300 Subject: [PATCH] Bug 14598: (DB update) fix NULL itemtypes in statistics on 'return' rows This patch introduces an updatedatabase.pl entry that takes care of updating existing statistics rows. It does so by looping on the statistics rows, collecting itemnumber occurences that are have NULL itemtypes. It then chooses the right itemtype following what is proposed on bug 14651, and then updates the rows in statistics using the calculated itemtype. Regards Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi --- installer/data/mysql/updatedatabase.pl | 40 ++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 36aee35..2e90e28 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -12206,6 +12206,46 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { SetVersion($DBversion); } +$DBversion = "3.23.00.XXX"; +if ( CheckVersion($DBversion) ) { + + $sth = $dbh->prepare(q{ + SELECT s.itemnumber, i.itype, b.itemtype FROM + ( SELECT DISTINCT itemnumber + FROM statistics + WHERE type="return" AND itemtype IS NULL ) s + LEFT JOIN + ( SELECT itemnumber,biblionumber, itype + FROM items ) i + ON (s.itemnumber=i.itemnumber) + LEFT JOIN + ( SELECT biblionumber, itemtype + FROM biblioitems ) b + ON (i.biblionumber=b.biblionumber) + }); + $sth->execute(); + + my $update_sth = $dbh->prepare(q{ + UPDATE statistics + SET itemtype=? + WHERE itemnumber=? AND itemtype IS NULL + }); + my $ilevel_itypes = C4::Context->preference('item-level_itypes'); + + while ( my ($itemnumber,$item_itype,$biblio_itype) = $sth->fetchrow_array ) { + + my $effective_itemtype = $ilevel_itypes + ? $item_itype // $biblio_itype + : $biblio_itype; + warn "item-level_itypes set but no itype defined for item ($itemnumber)" + if $ilevel_itypes and !defined $item_itype; + $update_sth->execute( $effective_itemtype, $itemnumber ); + } + + print "Upgrade to $DBversion done (Bug 14598: itemtype is not set on statistics by C4::Circulation::AddReturn)\n"; + SetVersion($DBversion); +} + # DEVELOPER PROCESS, search for anything to execute in the db_update directory # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 2.7.4