4 #use warnings; FIXME - Bug 2505
12 # the items.onloan field did not exist in koha 2.2
13 # in koha 3.0, it's used to define item availability
14 # this script takes the items.onloan field
15 # and put it in the MARC::Record of the item
18 my $dbh=C4
::Context
->dbh;
20 # if (C4::Context->preference("marcflavour") ne "UNIMARC") {
21 # print "this script is for UNIMARC only\n";
24 my $rqbiblios=$dbh->prepare("SELECT biblionumber,itemnumber,onloan FROM items WHERE items.onloan IS NOT NULL");
27 while (my ($biblionumber,$itemnumber,$onloan)= $rqbiblios->fetchrow){
28 ModItem
({onloan
=> "$onloan"}, $biblionumber, $itemnumber);
29 print "Onloan : $onloan for $biblionumber / $itemnumber\n";