Lines 312-321
sub fix_query {
Link Here
|
312 |
|
312 |
|
313 |
my $query = $args->{query}; |
313 |
my $query = $args->{query}; |
314 |
my $biblioitem_fields = { |
314 |
my $biblioitem_fields = { |
315 |
'biblio.isbn' => 'biblio.biblioitem.isbn', |
315 |
'biblio.age_restriction' => 'biblio.biblioitem.age_restriction', |
316 |
'biblio.ean' => 'biblio.biblioitem.ean', |
316 |
'biblio.cn_class' => 'biblio.biblioitem.cn_class', |
317 |
'biblio.publisher' => 'biblio.biblioitem.publisher', |
317 |
'biblio.cn_item' => 'biblio.biblioitem.cn_item', |
318 |
'biblio.publication_year' => 'biblio.biblioitem.publication_year' |
318 |
'biblio.cn_sort' => 'biblio.biblioitem.cn_sort', |
|
|
319 |
'biblio.cn_source' => 'biblio.biblioitem.cn_source', |
320 |
'biblio.cn_suffix' => 'biblio.biblioitem.cn_suffix', |
321 |
'biblio.collection_issn' => 'biblio.biblioitem.collection_issn', |
322 |
'biblio.collection_title' => 'biblio.biblioitem.collection_title', |
323 |
'biblio.collection_volume' => 'biblio.biblioitem.collection_volume', |
324 |
'biblio.ean' => 'biblio.biblioitem.ean', |
325 |
'biblio.edition_statement' => 'biblio.biblioitem.edition_statement', |
326 |
'biblio.illustrations' => 'biblio.biblioitem.illustrations', |
327 |
'biblio.isbn' => 'biblio.biblioitem.isbn', |
328 |
'biblio.issn' => 'biblio.biblioitem.issn', |
329 |
'biblio.item_type' => 'biblio.biblioitem.item_type', |
330 |
'biblio.lc_control_number' => 'biblio.biblioitem.lc_control_number', |
331 |
'biblio.material_size' => 'biblio.biblioitem.material_size', |
332 |
'biblio.notes' => 'biblio.biblioitem.notes', |
333 |
'biblio.number' => 'biblio.biblioitem.number', |
334 |
'biblio.pages' => 'biblio.biblioitem.pages', |
335 |
'biblio.publication_place' => 'biblio.biblioitem.publication_place', |
336 |
'biblio.publication_year' => 'biblio.biblioitem.publication_year', |
337 |
'biblio.publisher' => 'biblio.biblioitem.publisher', |
338 |
'biblio.serial_total_issues' => 'biblio.biblioitem.serial_total_issues' |
339 |
'biblio.url' => 'biblio.biblioitem.url', |
340 |
'biblio.volume' => 'biblio.biblioitem.volume', |
341 |
'biblio.volume_date' => 'biblio.biblioitem.volume_date', |
342 |
'biblio.volume_description' => 'biblio.biblioitem.volume_description', |
319 |
}; |
343 |
}; |
320 |
|
344 |
|
321 |
if ( ref($query) eq 'HASH' ) { |
345 |
if ( ref($query) eq 'HASH' ) { |
322 |
- |
|
|