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