Lines 25-30
use Carp;
Link Here
|
25 |
use C4::Context; |
25 |
use C4::Context; |
26 |
use C4::Koha; |
26 |
use C4::Koha; |
27 |
use C4::Biblio; |
27 |
use C4::Biblio; |
|
|
28 |
use C4::SQLHelper; |
28 |
use C4::Dates qw/format_date format_date_in_iso/; |
29 |
use C4::Dates qw/format_date format_date_in_iso/; |
29 |
use MARC::Record; |
30 |
use MARC::Record; |
30 |
use C4::ClassSource; |
31 |
use C4::ClassSource; |
Lines 1169-1174
sub GetItemsByBiblioitemnumber {
Link Here
|
1169 |
=head2 GetItemsInfo |
1170 |
=head2 GetItemsInfo |
1170 |
|
1171 |
|
1171 |
@results = GetItemsInfo($biblionumber); |
1172 |
@results = GetItemsInfo($biblionumber); |
|
|
1173 |
@results = GetItemsInfo($biblionumber, $filter); |
1172 |
|
1174 |
|
1173 |
Returns information about items with the given biblionumber. |
1175 |
Returns information about items with the given biblionumber. |
1174 |
|
1176 |
|
Lines 1206-1217
If this is set, it is set to C<One Order>.
Link Here
|
1206 |
|
1208 |
|
1207 |
=back |
1209 |
=back |
1208 |
|
1210 |
|
|
|
1211 |
=item C<$filter> |
1212 |
|
1213 |
A reference-to-hash. Valid filters are: |
1214 |
$filter->{branch} = 'CPL'; #Branchcode of the library whose items should only be displayed. |
1215 |
$filter->{volume} = '2013'; #The volume of the item from items.enumchron aka. "Numbering formula". |
1216 |
$filter->{number} = '11'; #The number or issue of the item from items.enumchron aka. "Numbering formula". |
1217 |
$filter->{fromDate} = '01/01/2013'; #Filters only serial issues by the serialitems.publisheddate |
1218 |
#The starting date in C4::Context->preference('dateformat') format |
1219 |
$filter->{toDate} = '31/12/2014'; #Filters only serial issues by the serialitems.publisheddate |
1220 |
#The ending date in C4::Context->preference('dateformat') format |
1221 |
|
1222 |
Filters are expected to be validated! If a filter is not defined, that filter is not present in the $filter-HASH |
1223 |
|
1209 |
=cut |
1224 |
=cut |
1210 |
|
1225 |
|
1211 |
sub GetItemsInfo { |
1226 |
sub GetItemsInfo { |
1212 |
my ( $biblionumber ) = @_; |
1227 |
my ( $biblionumber, $filter ) = @_; |
1213 |
my $dbh = C4::Context->dbh; |
1228 |
my $dbh = C4::Context->dbh; |
|
|
1229 |
|
1230 |
#Prepare the filter |
1231 |
my $filterEnumchron = 0; |
1232 |
my $enumchronSQLRegexp; |
1233 |
if (defined $filter && ref $filter eq 'HASH') { |
1234 |
|
1235 |
#Items enumchron can be filtered by volume or number or both. |
1236 |
#Because the format of enumchron |
1237 |
#For performance reasons regexp's need to be as simple as possible. |
1238 |
## It is entirely possible to search with just volume or just number or just issue. |
1239 |
## We don't know which filters are used so it is safer and more efficient to just |
1240 |
## prepare the enumeration parsing SQL every time. |
1241 |
$enumchronSQLRegexp = C4::Context->preference('NumberingFormulaParsingRegexp'); |
1242 |
|
1243 |
if (exists $filter->{volume}) { |
1244 |
$filterEnumchron = 1; |
1245 |
$enumchronSQLRegexp =~ s/volume/$filter->{volume}/; |
1246 |
} |
1247 |
else { |
1248 |
$enumchronSQLRegexp =~ s/volume/[0-9]*/; |
1249 |
} |
1250 |
if (exists $filter->{number}) { |
1251 |
$filterEnumchron = 1; |
1252 |
$enumchronSQLRegexp =~ s/number/$filter->{number}/; |
1253 |
} |
1254 |
else { |
1255 |
$enumchronSQLRegexp =~ s/number/[0-9]*/; |
1256 |
} |
1257 |
if (exists $filter->{issue}) { |
1258 |
$filterEnumchron = 1; |
1259 |
$enumchronSQLRegexp =~ s/issue/$filter->{issue}/; |
1260 |
} |
1261 |
else { |
1262 |
$enumchronSQLRegexp =~ s/issue/[0-9]*/; |
1263 |
} |
1264 |
} |
1265 |
#If we know that this item is a serial, we can better optimize our big SQL. |
1266 |
# This is especially useful when we want to filter based on the publication date. |
1267 |
# SELECTing a huge blob of serials just to remove unnecessary ones will be really sloooow. |
1268 |
my $search = C4::SQLHelper::SearchInTable("biblio",{biblionumber => $biblionumber}, undef, undef, ['serial'], undef, "exact"); |
1269 |
my $serial = $search->[0]->{serial}; |
1270 |
|
1214 |
# note biblioitems.* must be avoided to prevent large marc and marcxml fields from killing performance. |
1271 |
# note biblioitems.* must be avoided to prevent large marc and marcxml fields from killing performance. |
|
|
1272 |
#Because it is uncertain how many parameters the SQL query needs, we need to build the parameters dynamically |
1273 |
# This is because we cannot predict what filters our users use. |
1274 |
my $queryParams = [$biblionumber]; |
1215 |
my $query = " |
1275 |
my $query = " |
1216 |
SELECT items.*, |
1276 |
SELECT items.*, |
1217 |
biblio.*, |
1277 |
biblio.*, |
Lines 1231-1237
sub GetItemsInfo {
Link Here
|
1231 |
itemtypes.notforloan as notforloan_per_itemtype, |
1291 |
itemtypes.notforloan as notforloan_per_itemtype, |
1232 |
holding.branchurl, |
1292 |
holding.branchurl, |
1233 |
holding.branchname, |
1293 |
holding.branchname, |
1234 |
holding.opac_info as branch_opac_info |
1294 |
holding.opac_info as branch_opac_info "; |
|
|
1295 |
if ($serial) { |
1296 |
$query .= ", |
1297 |
serial.serialseq, |
1298 |
serial.publisheddate "; |
1299 |
} |
1300 |
$query .= " |
1235 |
FROM items |
1301 |
FROM items |
1236 |
LEFT JOIN branches AS holding ON items.holdingbranch = holding.branchcode |
1302 |
LEFT JOIN branches AS holding ON items.holdingbranch = holding.branchcode |
1237 |
LEFT JOIN branches AS home ON items.homebranch=home.branchcode |
1303 |
LEFT JOIN branches AS home ON items.homebranch=home.branchcode |
Lines 1239-1257
sub GetItemsInfo {
Link Here
|
1239 |
LEFT JOIN biblioitems ON biblioitems.biblioitemnumber = items.biblioitemnumber |
1305 |
LEFT JOIN biblioitems ON biblioitems.biblioitemnumber = items.biblioitemnumber |
1240 |
LEFT JOIN itemtypes ON itemtypes.itemtype = " |
1306 |
LEFT JOIN itemtypes ON itemtypes.itemtype = " |
1241 |
. (C4::Context->preference('item-level_itypes') ? 'items.itype' : 'biblioitems.itemtype'); |
1307 |
. (C4::Context->preference('item-level_itypes') ? 'items.itype' : 'biblioitems.itemtype'); |
1242 |
$query .= " WHERE items.biblionumber = ? ORDER BY home.branchname, items.enumchron, LPAD( items.copynumber, 8, '0' ), items.dateaccessioned DESC" ; |
1308 |
|
|
|
1309 |
if ($serial) { |
1310 |
$query .= " |
1311 |
LEFT JOIN serialitems ON serialitems.itemnumber = items.itemnumber |
1312 |
LEFT JOIN serial ON serialitems.serialid = serial.serialid "; |
1313 |
} |
1314 |
|
1315 |
$query .= " WHERE items.biblionumber = ? "; |
1316 |
|
1317 |
if (exists $filter->{branch}) { |
1318 |
$query .= " AND items.holdingbranch = ?"; |
1319 |
push @$queryParams, $filter->{branch}; |
1320 |
} |
1321 |
if ($filterEnumchron) { |
1322 |
$query .= " AND items.enumchron REGEXP ?"; |
1323 |
push @$queryParams, $enumchronSQLRegexp; |
1324 |
} |
1325 |
if (exists $filter->{fromDate}) { |
1326 |
if ($serial) { |
1327 |
$query .= " AND serial.publisheddate >= ?"; |
1328 |
} |
1329 |
else { |
1330 |
$query .= " AND items.timestamp >= ?"; |
1331 |
} |
1332 |
push @$queryParams, $filter->{fromDate}; |
1333 |
} |
1334 |
if (exists $filter->{toDate}) { |
1335 |
if ($serial) { |
1336 |
$query .= " AND serial.publisheddate <= ?"; |
1337 |
} |
1338 |
else { |
1339 |
$query .= " AND items.timestamp <= ?"; |
1340 |
} |
1341 |
push @$queryParams, $filter->{toDate}; |
1342 |
} |
1343 |
|
1344 |
$query .= "ORDER BY home.branchname, items.enumchron, LPAD( items.copynumber, 8, '0' ), items.dateaccessioned DESC" ; |
1243 |
my $sth = $dbh->prepare($query); |
1345 |
my $sth = $dbh->prepare($query); |
1244 |
$sth->execute($biblionumber); |
1346 |
$sth->execute(@$queryParams); |
1245 |
my $i = 0; |
1347 |
my $i = 0; |
1246 |
my @results; |
1348 |
my @results; |
1247 |
my $serial; |
|
|
1248 |
|
1349 |
|
1249 |
my $isth = $dbh->prepare( |
1350 |
my $isth = $dbh->prepare( |
1250 |
"SELECT issues.*,borrowers.cardnumber,borrowers.surname,borrowers.firstname,borrowers.branchcode as bcode |
1351 |
"SELECT issues.*,borrowers.cardnumber,borrowers.surname,borrowers.firstname,borrowers.branchcode as bcode |
1251 |
FROM issues LEFT JOIN borrowers ON issues.borrowernumber=borrowers.borrowernumber |
1352 |
FROM issues LEFT JOIN borrowers ON issues.borrowernumber=borrowers.borrowernumber |
1252 |
WHERE itemnumber = ?" |
1353 |
WHERE itemnumber = ?" |
1253 |
); |
1354 |
); |
1254 |
my $ssth = $dbh->prepare("SELECT serialseq,publisheddate from serialitems left join serial on serialitems.serialid=serial.serialid where serialitems.itemnumber=? "); |
1355 |
|
|
|
1356 |
|
1255 |
while ( my $data = $sth->fetchrow_hashref ) { |
1357 |
while ( my $data = $sth->fetchrow_hashref ) { |
1256 |
my $datedue = ''; |
1358 |
my $datedue = ''; |
1257 |
$isth->execute( $data->{'itemnumber'} ); |
1359 |
$isth->execute( $data->{'itemnumber'} ); |
Lines 1262-1278
sub GetItemsInfo {
Link Here
|
1262 |
$data->{firstname} = $idata->{firstname}; |
1364 |
$data->{firstname} = $idata->{firstname}; |
1263 |
$data->{lastreneweddate} = $idata->{lastreneweddate}; |
1365 |
$data->{lastreneweddate} = $idata->{lastreneweddate}; |
1264 |
$datedue = $idata->{'date_due'}; |
1366 |
$datedue = $idata->{'date_due'}; |
1265 |
if (C4::Context->preference("IndependentBranches")){ |
1367 |
if (C4::Context->preference("IndependentBranches")){ |
1266 |
my $userenv = C4::Context->userenv; |
1368 |
my $userenv = C4::Context->userenv; |
1267 |
if ( ($userenv) && ( $userenv->{flags} % 2 != 1 ) ) { |
1369 |
if ( ($userenv) && ( $userenv->{flags} % 2 != 1 ) ) { |
1268 |
$data->{'NOTSAMEBRANCH'} = 1 if ($idata->{'bcode'} ne $userenv->{branch}); |
1370 |
$data->{'NOTSAMEBRANCH'} = 1 if ($idata->{'bcode'} ne $userenv->{branch}); |
1269 |
} |
1371 |
} |
1270 |
} |
1372 |
} |
1271 |
} |
|
|
1272 |
if ( $data->{'serial'}) { |
1273 |
$ssth->execute($data->{'itemnumber'}) ; |
1274 |
($data->{'serialseq'} , $data->{'publisheddate'}) = $ssth->fetchrow_array(); |
1275 |
$serial = 1; |
1276 |
} |
1373 |
} |
1277 |
#get branch information..... |
1374 |
#get branch information..... |
1278 |
my $bsth = $dbh->prepare( |
1375 |
my $bsth = $dbh->prepare( |