-
Notifications
You must be signed in to change notification settings - Fork 257
/
Items.pm
1673 lines (1367 loc) · 63.1 KB
/
Items.pm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package C4::Items;
# Copyright 2007 LibLime, Inc.
# Parts Copyright Biblibre 2010
#
# This file is part of Koha.
#
# Koha is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# Koha is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Koha; if not, see <http://www.gnu.org/licenses>.
use Modern::Perl;
our (@ISA, @EXPORT_OK);
BEGIN {
require Exporter;
@ISA = qw(Exporter);
@EXPORT_OK = qw(
AddItemFromMarc
AddItemBatchFromMarc
ModItemFromMarc
Item2Marc
ModDateLastSeen
ModItemTransfer
CheckItemPreSave
GetItemsForInventory
get_hostitemnumbers_of
GetMarcItem
CartToShelf
GetAnalyticsCount
SearchItems
PrepareItemrecordDisplay
ToggleNewStatus
);
}
use Carp qw( croak );
use C4::Circulation qw( barcodedecode );
use C4::Context;
use C4::Koha;
use C4::Biblio qw( GetMarcStructure TransformMarcToKoha );
use MARC::Record;
use C4::ClassSource qw( GetClassSort GetClassSources GetClassSource );
use C4::Log qw( logaction );
use List::MoreUtils qw( any );
use DateTime::Format::MySQL;
# debugging; so please don't remove this
use Try::Tiny qw( catch try );
use Koha::AuthorisedValues;
use Koha::DateUtils qw( dt_from_string );
use Koha::Database;
use Koha::Biblios;
use Koha::Biblioitems;
use Koha::Items;
use Koha::ItemTypes;
use Koha::SearchEngine;
use Koha::SearchEngine::Indexer;
use Koha::SearchEngine::Search;
use Koha::Libraries;
=head1 NAME
C4::Items - item management functions
=head1 DESCRIPTION
This module contains an API for manipulating item
records in Koha, and is used by cataloguing, circulation,
acquisitions, and serials management.
# FIXME This POD is not up-to-date
A Koha item record is stored in two places: the
items table and embedded in a MARC tag in the XML
version of the associated bib record in C<biblioitems.marcxml>.
This is done to allow the item information to be readily
indexed (e.g., by Zebra), but means that each item
modification transaction must keep the items table
and the MARC XML in sync at all times.
The items table will be considered authoritative. In other
words, if there is ever a discrepancy between the items
table and the MARC XML, the items table should be considered
accurate.
=head1 HISTORICAL NOTE
Most of the functions in C<C4::Items> were originally in
the C<C4::Biblio> module.
=head1 CORE EXPORTED FUNCTIONS
The following functions are meant for use by users
of C<C4::Items>
=cut
=head2 CartToShelf
CartToShelf($itemnumber);
Set the current shelving location of the item record
to its stored permanent shelving location. This is
primarily used to indicate when an item whose current
location is a special processing ('PROC') or shelving cart
('CART') location is back in the stacks.
=cut
sub CartToShelf {
my ( $itemnumber ) = @_;
unless ( $itemnumber ) {
croak "FAILED CartToShelf() - no itemnumber supplied";
}
my $item = Koha::Items->find($itemnumber);
if ( $item->location eq 'CART' ) {
$item->location($item->permanent_location)->store({ skip_holds_queue => 1 });
}
}
=head2 AddItemFromMarc
my ($biblionumber, $biblioitemnumber, $itemnumber)
= AddItemFromMarc($source_item_marc, $biblionumber[, $params]);
Given a MARC::Record object containing an embedded item
record and a biblionumber, create a new item record.
The final optional parameter, C<$params>, may contain
'skip_record_index' key, which relayed down to Koha::Item/store,
there it prevents calling of index_records,
which takes most of the time in batch adds/deletes: index_records
to be called later in C<additem.pl> after the whole loop.
You may also optionally pass biblioitemnumber in the params hash to
boost performance of inserts by preventing a lookup in Koha::Item.
$params:
skip_record_index => 1|0
biblioitemnumber => $biblioitemnumber
=cut
sub AddItemFromMarc {
my $source_item_marc = shift;
my $biblionumber = shift;
my $params = @_ ? shift : {};
my $dbh = C4::Context->dbh;
# parse item hash from MARC
my $frameworkcode = C4::Biblio::GetFrameworkCode($biblionumber);
my ( $itemtag, $itemsubfield ) = C4::Biblio::GetMarcFromKohaField( "items.itemnumber" );
my $localitemmarc = MARC::Record->new;
$localitemmarc->append_fields( $source_item_marc->field($itemtag) );
my $item_values = C4::Biblio::TransformMarcToKoha({ record => $localitemmarc, limit_table => 'items' });
my $unlinked_item_subfields = _get_unlinked_item_subfields( $localitemmarc, $frameworkcode );
$item_values->{more_subfields_xml} = _get_unlinked_subfields_xml($unlinked_item_subfields);
$item_values->{biblionumber} = $biblionumber;
$item_values->{biblioitemnumber} = $params->{biblioitemnumber};
$item_values->{cn_source} = delete $item_values->{'items.cn_source'}; # Because of C4::Biblio::_disambiguate
$item_values->{cn_sort} = delete $item_values->{'items.cn_sort'}; # Because of C4::Biblio::_disambiguate
my $item = Koha::Item->new( $item_values )->store({ skip_record_index => $params->{skip_record_index} });
return ( $item->biblionumber, $item->biblioitemnumber, $item->itemnumber );
}
=head2 AddItemBatchFromMarc
($itemnumber_ref, $error_ref) = AddItemBatchFromMarc($record,
$biblionumber, $biblioitemnumber, $frameworkcode);
Efficiently create item records from a MARC biblio record with
embedded item fields. This routine is suitable for batch jobs.
This API assumes that the bib record has already been
saved to the C<biblio> and C<biblioitems> tables. It does
not expect that C<biblio_metadata.metadata> is populated, but it
will do so via a call to ModBibiloMarc.
The goal of this API is to have a similar effect to using AddBiblio
and AddItems in succession, but without inefficient repeated
parsing of the MARC XML bib record.
This function returns an arrayref of new itemsnumbers and an arrayref of item
errors encountered during the processing. Each entry in the errors
list is a hashref containing the following keys:
=over
=item item_sequence
Sequence number of original item tag in the MARC record.
=item item_barcode
Item barcode, provide to assist in the construction of
useful error messages.
=item error_code
Code representing the error condition. Can be 'duplicate_barcode',
'invalid_homebranch', or 'invalid_holdingbranch'.
=item error_information
Additional information appropriate to the error condition.
=back
=cut
sub AddItemBatchFromMarc {
my ($record, $biblionumber, $biblioitemnumber, $frameworkcode) = @_;
my @itemnumbers = ();
my @errors = ();
my $dbh = C4::Context->dbh;
# We modify the record, so lets work on a clone so we don't change the
# original.
$record = $record->clone();
# loop through the item tags and start creating items
my @bad_item_fields = ();
my ($itemtag, $itemsubfield) = C4::Biblio::GetMarcFromKohaField( "items.itemnumber" );
my $item_sequence_num = 0;
ITEMFIELD: foreach my $item_field ($record->field($itemtag)) {
$item_sequence_num++;
# we take the item field and stick it into a new
# MARC record -- this is required so far because (FIXME)
# TransformMarcToKoha requires a MARC::Record, not a MARC::Field
# and there is no TransformMarcFieldToKoha
my $temp_item_marc = MARC::Record->new();
$temp_item_marc->append_fields($item_field);
# add biblionumber and biblioitemnumber
my $item = TransformMarcToKoha({ record => $temp_item_marc, limit_table => 'items' });
my $unlinked_item_subfields = _get_unlinked_item_subfields($temp_item_marc, $frameworkcode);
$item->{'more_subfields_xml'} = _get_unlinked_subfields_xml($unlinked_item_subfields);
$item->{'biblionumber'} = $biblionumber;
$item->{'biblioitemnumber'} = $biblioitemnumber;
$item->{cn_source} = delete $item->{'items.cn_source'}; # Because of C4::Biblio::_disambiguate
$item->{cn_sort} = delete $item->{'items.cn_sort'}; # Because of C4::Biblio::_disambiguate
# check for duplicate barcode
my %item_errors = CheckItemPreSave($item);
if (%item_errors) {
push @errors, _repack_item_errors($item_sequence_num, $item, \%item_errors);
push @bad_item_fields, $item_field;
next ITEMFIELD;
}
my $item_object = Koha::Item->new($item)->store;
push @itemnumbers, $item_object->itemnumber; # FIXME not checking error
logaction("CATALOGUING", "ADD", $item_object->itemnumber, "item") if C4::Context->preference("CataloguingLog");
my $new_item_marc = _marc_from_item_hash($item_object->unblessed, $frameworkcode, $unlinked_item_subfields);
$item_field->replace_with($new_item_marc->field($itemtag));
}
# remove any MARC item fields for rejected items
foreach my $item_field (@bad_item_fields) {
$record->delete_field($item_field);
}
return (\@itemnumbers, \@errors);
}
=head2 ModItemFromMarc
my $item = ModItemFromMarc($item_marc, $biblionumber, $itemnumber[, $params]);
The final optional parameter, C<$params>, expected to contain
'skip_record_index' key, which relayed down to Koha::Item/store,
there it prevents calling of index_records,
which takes most of the time in batch adds/deletes: index_records better
to be called later in C<additem.pl> after the whole loop.
$params:
skip_record_index => 1|0
=cut
sub ModItemFromMarc {
my ( $item_marc, $biblionumber, $itemnumber, $params ) = @_;
my $frameworkcode = C4::Biblio::GetFrameworkCode($biblionumber);
my ( $itemtag, $itemsubfield ) = C4::Biblio::GetMarcFromKohaField( "items.itemnumber" );
my $localitemmarc = MARC::Record->new;
$localitemmarc->append_fields( $item_marc->field($itemtag) );
my $item_object = Koha::Items->find($itemnumber);
my $item = TransformMarcToKoha({ record => $localitemmarc, limit_table => 'items' });
# When importing items we blank this column, we need to set it to the existing value
# to prevent it being blanked by set_or_blank
$item->{onloan} = $item_object->onloan if( $item_object->onloan && !defined $item->{onloan} );
# When importing and replacing items we should not remove the dateacquired so we should set it
# to the existing value
$item->{dateaccessioned} = $item_object->dateaccessioned
if ( $item_object->dateaccessioned && !defined $item->{dateaccessioned} );
my ( $perm_loc_tag, $perm_loc_subfield ) = C4::Biblio::GetMarcFromKohaField( "items.permanent_location" );
my $has_permanent_location = defined $perm_loc_tag && defined $item_marc->subfield( $perm_loc_tag, $perm_loc_subfield );
# Retrieving the values for the fields that are not linked
my @mapped_fields = Koha::MarcSubfieldStructures->search(
{
frameworkcode => $frameworkcode,
kohafield => { -like => "items.%" }
}
)->get_column('kohafield');
for my $c ( $item_object->_result->result_source->columns ) {
next if grep { "items.$c" eq $_ } @mapped_fields;
$item->{$c} = $item_object->$c;
}
$item->{cn_source} = delete $item->{'items.cn_source'}; # Because of C4::Biblio::_disambiguate
delete $item->{'items.cn_sort'}; # Because of C4::Biblio::_disambiguate
$item->{itemnumber} = $itemnumber;
$item->{biblionumber} = $biblionumber;
my $existing_cn_sort = $item_object->cn_sort; # set_or_blank will reset cn_sort to undef as we are not passing it
# We rely on Koha::Item->store to modify it if itemcallnumber or cn_source is modified
$item_object = $item_object->set_or_blank($item);
$item_object->cn_sort($existing_cn_sort); # Resetting to the existing value
$item_object->make_column_dirty('permanent_location') if $has_permanent_location;
my $unlinked_item_subfields = _get_unlinked_item_subfields( $localitemmarc, $frameworkcode );
$item_object->more_subfields_xml(_get_unlinked_subfields_xml($unlinked_item_subfields));
$item_object->store({ skip_record_index => $params->{skip_record_index} });
return $item_object->unblessed;
}
=head2 ModItemTransfer
ModItemTransfer($itemnumber, $frombranch, $tobranch, $trigger, [$params]);
Marks an item as being transferred from one branch to another and records the trigger.
The last optional parameter allows for passing skip_record_index through to the items store call.
=cut
sub ModItemTransfer {
my ( $itemnumber, $frombranch, $tobranch, $trigger, $params ) = @_;
my $dbh = C4::Context->dbh;
my $item = Koha::Items->find($itemnumber);
# NOTE: This retains the existing hard coded behaviour by ignoring transfer limits
# and always replacing any existing transfers. (In theory, calls to ModItemTransfer
# will have been preceded by a check of branch transfer limits)
my $to_library = Koha::Libraries->find($tobranch);
my $transfer;
try {
$transfer = $item->request_transfer(
{
to => $to_library,
reason => $trigger,
ignore_limits => 1,
}
);
} catch {
if ( $_->isa('Koha::Exceptions::Item::Transfer::InQueue') ) {
my $exception = $_;
my $found_transfer = $_->transfer;
# If StockRotationAdvance, leave in place but ensure transit state is reset
if ( $found_transfer->reason eq 'StockrotationAdvance' ) {
$transfer = $item->request_transfer(
{
to => $to_library,
reason => $trigger,
ignore_limits => 1,
enqueue => 1
}
);
# Ensure transit is reset
$found_transfer->datesent(undef)->store;
} else {
$transfer = $item->request_transfer(
{
to => $to_library,
reason => $trigger,
ignore_limits => 1,
replace => $trigger
}
);
}
} else {
$_->rethrow();
}
};
# Immediately set the item to in transit if it is checked in
if ( !$item->checkout ) {
$item->holdingbranch($frombranch)->store(
{
log_action => 0,
skip_record_index => 1, # avoid indexing duplication, let ->transit handle it
}
);
$transfer->transit( { skip_record_index => $params->{skip_record_index} } );
}
return $transfer;
}
=head2 ModDateLastSeen
ModDateLastSeen( $itemnumber, $leave_item_lost, $params );
Mark item as seen. Is called when an item is issued, returned or manually marked during inventory/stocktaking.
C<$itemnumber> is the item number
C<$leave_item_lost> determines if a lost item will be found or remain lost
The last optional parameter allows for passing skip_record_index through to the items store call.
=cut
sub ModDateLastSeen {
my ( $itemnumber, $leave_item_lost, $params ) = @_;
my $item = Koha::Items->find($itemnumber);
$item->datelastseen(dt_from_string);
my $log = $item->itemlost && !$leave_item_lost ? 1 : 0; # If item was lost, record the change to the item
$item->itemlost(0) unless $leave_item_lost;
$item->store({ log_action => $log, skip_record_index => $params->{skip_record_index}, skip_holds_queue => $params->{skip_holds_queue} });
}
=head2 CheckItemPreSave
my $item_ref = TransformMarcToKoha({ record => $marc, limit_table => 'items' });
# do stuff
my %errors = CheckItemPreSave($item_ref);
if (exists $errors{'duplicate_barcode'}) {
print "item has duplicate barcode: ", $errors{'duplicate_barcode'}, "\n";
} elsif (exists $errors{'invalid_homebranch'}) {
print "item has invalid home branch: ", $errors{'invalid_homebranch'}, "\n";
} elsif (exists $errors{'invalid_holdingbranch'}) {
print "item has invalid holding branch: ", $errors{'invalid_holdingbranch'}, "\n";
} else {
print "item is OK";
}
Given a hashref containing item fields, determine if it can be
inserted or updated in the database. Specifically, checks for
database integrity issues, and returns a hash containing any
of the following keys, if applicable.
=over 2
=item duplicate_barcode
Barcode, if it duplicates one already found in the database.
=item invalid_homebranch
Home branch, if not defined in branches table.
=item invalid_holdingbranch
Holding branch, if not defined in branches table.
=back
This function does NOT implement any policy-related checks,
e.g., whether current operator is allowed to save an
item that has a given branch code.
=cut
sub CheckItemPreSave {
my $item_ref = shift;
my %errors = ();
# check for duplicate barcode
if ( exists $item_ref->{'barcode'} and defined $item_ref->{'barcode'} ) {
my $barcode = C4::Circulation::barcodedecode( $item_ref->{'barcode'} );
my $existing_item = Koha::Items->find( { barcode => $barcode } );
if ($existing_item) {
if (
!exists $item_ref->{'itemnumber'} # new item
or $item_ref->{'itemnumber'} != $existing_item->itemnumber
)
{ # existing item
$errors{'duplicate_barcode'} = $item_ref->{'barcode'};
}
}
}
# check for valid home branch
if (exists $item_ref->{'homebranch'} and defined $item_ref->{'homebranch'}) {
my $home_library = Koha::Libraries->find( $item_ref->{homebranch} );
unless (defined $home_library) {
$errors{'invalid_homebranch'} = $item_ref->{'homebranch'};
}
}
# check for valid holding branch
if (exists $item_ref->{'holdingbranch'} and defined $item_ref->{'holdingbranch'}) {
my $holding_library = Koha::Libraries->find( $item_ref->{holdingbranch} );
unless (defined $holding_library) {
$errors{'invalid_holdingbranch'} = $item_ref->{'holdingbranch'};
}
}
return %errors;
}
=head1 EXPORTED SPECIAL ACCESSOR FUNCTIONS
The following functions provide various ways of
getting an item record, a set of item records, or
lists of authorized values for certain item fields.
=cut
=head2 GetItemsForInventory
($itemlist, $iTotalRecords) = GetItemsForInventory( {
minlocation => $minlocation,
maxlocation => $maxlocation,
location => $location,
ignoreissued => $ignoreissued,
datelastseen => $datelastseen,
branchcode => $branchcode,
branch => $branch,
offset => $offset,
size => $size,
statushash => $statushash,
itemtypes => \@itemsarray,
} );
Retrieve a list of title/authors/barcode/callnumber, for biblio inventory.
The sub returns a reference to a list of hashes, each containing
itemnumber, author, title, barcode, item callnumber, and date last
seen. It is ordered by callnumber then title.
The required minlocation & maxlocation parameters are used to specify a range of item callnumbers
the datelastseen can be used to specify that you want to see items not seen since a past date only.
offset & size can be used to retrieve only a part of the whole listing (defaut behaviour)
$statushash requires a hashref that has the authorized values fieldname (intems.notforloan, etc...) as keys, and an arrayref of statuscodes we are searching for as values.
$iTotalRecords is the number of rows that would have been returned without the $offset, $size limit clause
=cut
sub GetItemsForInventory {
my ( $parameters ) = @_;
my $minlocation = $parameters->{'minlocation'} // '';
my $maxlocation = $parameters->{'maxlocation'} // '';
my $class_source = $parameters->{'class_source'} // C4::Context->preference('DefaultClassificationSource');
my $location = $parameters->{'location'} // '';
my $itemtype = $parameters->{'itemtype'} // '';
my $ignoreissued = $parameters->{'ignoreissued'} // '';
my $datelastseen = $parameters->{'datelastseen'} // '';
my $branchcode = $parameters->{'branchcode'} // '';
my $branch = $parameters->{'branch'} // '';
my $offset = $parameters->{'offset'} // '';
my $size = $parameters->{'size'} // '';
my $statushash = $parameters->{'statushash'} // '';
my $ignore_waiting_holds = $parameters->{'ignore_waiting_holds'} // '';
my $itemtypes = $parameters->{'itemtypes'} || [];
my $ccode = $parameters->{'ccode'} // '';
my $dbh = C4::Context->dbh;
my ( @bind_params, @where_strings );
my $min_cnsort = GetClassSort($class_source,undef,$minlocation);
my $max_cnsort = GetClassSort($class_source,undef,$maxlocation);
my $select_columns = q{
SELECT DISTINCT(items.itemnumber), barcode, itemcallnumber, title, author, biblio.biblionumber, biblio.frameworkcode, datelastseen, homebranch, location, notforloan, damaged, itemlost, withdrawn, stocknumber, items.cn_sort, ccode
};
my $select_count = q{SELECT COUNT(DISTINCT(items.itemnumber))};
my $query = q{
FROM items
LEFT JOIN biblio ON items.biblionumber = biblio.biblionumber
LEFT JOIN biblioitems on items.biblionumber = biblioitems.biblionumber
};
if ($statushash){
for my $authvfield (keys %$statushash){
if ( scalar @{$statushash->{$authvfield}} > 0 ){
my $joinedvals = join ',', @{$statushash->{$authvfield}};
push @where_strings, "$authvfield in (" . $joinedvals . ")";
}
}
}
if ($ccode){
push @where_strings, 'ccode = ?';
push @bind_params, $ccode;
}
if ($minlocation) {
push @where_strings, 'items.cn_sort >= ?';
push @bind_params, $min_cnsort;
}
if ($maxlocation) {
push @where_strings, 'items.cn_sort <= ?';
push @bind_params, $max_cnsort;
}
if ($datelastseen) {
push @where_strings, '(datelastseen < ? OR datelastseen IS NULL)';
push @bind_params, $datelastseen;
}
if ( $location ) {
push @where_strings, 'items.location = ?';
push @bind_params, $location;
}
if ( $branchcode ) {
if($branch eq "homebranch"){
push @where_strings, 'items.homebranch = ?';
}else{
push @where_strings, 'items.holdingbranch = ?';
}
push @bind_params, $branchcode;
}
if ( $itemtype ) {
push @where_strings, 'biblioitems.itemtype = ?';
push @bind_params, $itemtype;
}
if ( $ignoreissued) {
$query .= "LEFT JOIN issues ON items.itemnumber = issues.itemnumber ";
push @where_strings, 'issues.date_due IS NULL';
}
if ( $ignore_waiting_holds ) {
$query .= "LEFT JOIN reserves ON items.itemnumber = reserves.itemnumber ";
push( @where_strings, q{(reserves.found != 'W' OR reserves.found IS NULL)} );
}
if ( @$itemtypes ) {
my $itemtypes_str = join ', ', @$itemtypes;
push @where_strings, "( biblioitems.itemtype IN (" . $itemtypes_str . ") OR items.itype IN (" . $itemtypes_str . ") )";
}
if ( @where_strings ) {
$query .= 'WHERE ';
$query .= join ' AND ', @where_strings;
}
my $count_query = $select_count . $query;
$query .= ' ORDER BY items.cn_sort, itemcallnumber, title';
$query .= " LIMIT $offset, $size" if ($offset and $size);
$query = $select_columns . $query;
my $sth = $dbh->prepare($query);
$sth->execute( @bind_params );
my @results = ();
my $tmpresults = $sth->fetchall_arrayref({});
$sth = $dbh->prepare( $count_query );
$sth->execute( @bind_params );
my ($iTotalRecords) = $sth->fetchrow_array();
my @avs = Koha::AuthorisedValues->search(
{ 'marc_subfield_structures.kohafield' => { '>' => '' },
'me.authorised_value' => { '>' => '' },
},
{ join => { category => 'marc_subfield_structures' },
distinct => ['marc_subfield_structures.kohafield, me.category, frameworkcode, me.authorised_value'],
'+select' => [ 'marc_subfield_structures.kohafield', 'marc_subfield_structures.frameworkcode', 'me.authorised_value', 'me.lib' ],
'+as' => [ 'kohafield', 'frameworkcode', 'authorised_value', 'lib' ],
}
)->as_list;
my $avmapping = { map { $_->get_column('kohafield') . ',' . $_->get_column('frameworkcode') . ',' . $_->get_column('authorised_value') => $_->get_column('lib') } @avs };
foreach my $row (@$tmpresults) {
# Auth values
foreach (keys %$row) {
if (
defined(
$avmapping->{ "items.$_," . $row->{'frameworkcode'} . "," . ( $row->{$_} // q{} ) }
)
) {
$row->{$_} = $avmapping->{"items.$_,".$row->{'frameworkcode'}.",".$row->{$_}};
}
}
push @results, $row;
}
return (\@results, $iTotalRecords);
}
=head2 get_hostitemnumbers_of
my @itemnumbers_of = get_hostitemnumbers_of($biblionumber);
Given a biblionumber, return the list of corresponding itemnumbers that are linked to it via host fields
Return a reference on a hash where key is a biblionumber and values are
references on array of itemnumbers.
=cut
sub get_hostitemnumbers_of {
my ($biblionumber) = @_;
if( !C4::Context->preference('EasyAnalyticalRecords') ) {
return ();
}
my $biblio = Koha::Biblios->find($biblionumber);
my $marcrecord = $biblio->metadata->record;
return unless $marcrecord;
my ( @returnhostitemnumbers, $tag, $biblio_s, $item_s );
my $marcflavor = C4::Context->preference('marcflavour');
if ( $marcflavor eq 'MARC21' ) {
$tag = '773';
$biblio_s = '0';
$item_s = '9';
}
elsif ( $marcflavor eq 'UNIMARC' ) {
$tag = '461';
$biblio_s = '0';
$item_s = '9';
}
foreach my $hostfield ( $marcrecord->field($tag) ) {
my $hostbiblionumber = $hostfield->subfield($biblio_s);
next unless $hostbiblionumber; # have tag, don't have $biblio_s subfield
my $linkeditemnumber = $hostfield->subfield($item_s);
if ( ! $linkeditemnumber ) {
warn "ERROR biblionumber $biblionumber has 773^0, but doesn't have 9";
next;
}
my $is_from_biblio = Koha::Items->search({ itemnumber => $linkeditemnumber, biblionumber => $hostbiblionumber });
push @returnhostitemnumbers, $linkeditemnumber
if $is_from_biblio;
}
return @returnhostitemnumbers;
}
=head1 LIMITED USE FUNCTIONS
The following functions, while part of the public API,
are not exported. This is generally because they are
meant to be used by only one script for a specific
purpose, and should not be used in any other context
without careful thought.
=cut
=head2 GetMarcItem
my $item_marc = GetMarcItem($biblionumber, $itemnumber);
Returns MARC::Record of the item passed in parameter.
This function is meant for use only in C<cataloguing/additem.pl>,
where it is needed to support that script's MARC-like
editor.
=cut
sub GetMarcItem {
my ( $biblionumber, $itemnumber ) = @_;
# GetMarcItem has been revised so that it does the following:
# 1. Gets the item information from the items table.
# 2. Converts it to a MARC field for storage in the bib record.
#
# The previous behavior was:
# 1. Get the bib record.
# 2. Return the MARC tag corresponding to the item record.
#
# The difference is that one treats the items row as authoritative,
# while the other treats the MARC representation as authoritative
# under certain circumstances.
my $item = Koha::Items->find($itemnumber) or return;
# Tack on 'items.' prefix to column names so that C4::Biblio::TransformKohaToMarc will work.
# Also, don't emit a subfield if the underlying field is blank.
return Item2Marc($item->unblessed, $biblionumber);
}
sub Item2Marc {
my ($itemrecord,$biblionumber)=@_;
my $mungeditem = {
map {
defined($itemrecord->{$_}) && $itemrecord->{$_} ne '' ? ("items.$_" => $itemrecord->{$_}) : ()
} keys %{ $itemrecord }
};
my $framework = C4::Biblio::GetFrameworkCode( $biblionumber );
my $itemmarc = C4::Biblio::TransformKohaToMarc( $mungeditem, { framework => $framework } );
my ( $itemtag, $itemsubfield ) = C4::Biblio::GetMarcFromKohaField('items.itemnumber');
my $unlinked_item_subfields = _parse_unlinked_item_subfields_from_xml($mungeditem->{'items.more_subfields_xml'});
if (defined $unlinked_item_subfields and $#$unlinked_item_subfields > -1) {
foreach my $field ($itemmarc->field($itemtag)){
$field->add_subfields(@$unlinked_item_subfields);
}
}
return $itemmarc;
}
=head1 PRIVATE FUNCTIONS AND VARIABLES
The following functions are not meant to be called
directly, but are documented in order to explain
the inner workings of C<C4::Items>.
=cut
=head2 _marc_from_item_hash
my $item_marc = _marc_from_item_hash($item, $frameworkcode[, $unlinked_item_subfields]);
Given an item hash representing a complete item record,
create a C<MARC::Record> object containing an embedded
tag representing that item.
The third, optional parameter C<$unlinked_item_subfields> is
an arrayref of subfields (not mapped to C<items> fields per the
framework) to be added to the MARC representation
of the item.
=cut
sub _marc_from_item_hash {
my $item = shift;
my $frameworkcode = shift;
my $unlinked_item_subfields;
if (@_) {
$unlinked_item_subfields = shift;
}
# Tack on 'items.' prefix to column names so lookup from MARC frameworks will work
# Also, don't emit a subfield if the underlying field is blank.
my $mungeditem = { map { (defined($item->{$_}) and $item->{$_} ne '') ?
(/^items\./ ? ($_ => $item->{$_}) : ("items.$_" => $item->{$_}))
: () } keys %{ $item } };
my $item_marc = MARC::Record->new();
foreach my $item_field ( keys %{$mungeditem} ) {
my ( $tag, $subfield ) = C4::Biblio::GetMarcFromKohaField( $item_field );
next unless defined $tag and defined $subfield; # skip if not mapped to MARC field
my @values = split(/\s?\|\s?/, $mungeditem->{$item_field}, -1);
foreach my $value (@values){
if ( my $field = $item_marc->field($tag) ) {
$field->add_subfields( $subfield => $value );
} else {
my $add_subfields = [];
if (defined $unlinked_item_subfields and ref($unlinked_item_subfields) eq 'ARRAY' and $#$unlinked_item_subfields > -1) {
$add_subfields = $unlinked_item_subfields;
}
$item_marc->add_fields( $tag, " ", " ", $subfield => $value, @$add_subfields );
}
}
}
return $item_marc;
}
=head2 _repack_item_errors
Add an error message hash generated by C<CheckItemPreSave>
to a list of errors.
=cut
sub _repack_item_errors {
my $item_sequence_num = shift;
my $item_ref = shift;
my $error_ref = shift;
my @repacked_errors = ();
foreach my $error_code (sort keys %{ $error_ref }) {
my $repacked_error = {};
$repacked_error->{'item_sequence'} = $item_sequence_num;
$repacked_error->{'item_barcode'} = exists($item_ref->{'barcode'}) ? $item_ref->{'barcode'} : '';
$repacked_error->{'error_code'} = $error_code;
$repacked_error->{'error_information'} = $error_ref->{$error_code};
push @repacked_errors, $repacked_error;
}
return @repacked_errors;
}
=head2 _get_unlinked_item_subfields
my $unlinked_item_subfields = _get_unlinked_item_subfields($original_item_marc, $frameworkcode);
=cut
sub _get_unlinked_item_subfields {
my $original_item_marc = shift;
my $frameworkcode = shift;
my $marcstructure = C4::Biblio::GetMarcStructure(1, $frameworkcode, { unsafe => 1 });
# assume that this record has only one field, and that that
# field contains only the item information
my $subfields = [];
my @fields = $original_item_marc->fields();
if ($#fields > -1) {
my $field = $fields[0];
my $tag = $field->tag();
foreach my $subfield ($field->subfields()) {
if (defined $subfield->[1] and
$subfield->[1] ne '' and
!$marcstructure->{$tag}->{$subfield->[0]}->{'kohafield'}) {
push @$subfields, $subfield->[0] => $subfield->[1];
}
}
}
return $subfields;
}
=head2 _get_unlinked_subfields_xml
my $unlinked_subfields_xml = _get_unlinked_subfields_xml($unlinked_item_subfields);
=cut
sub _get_unlinked_subfields_xml {
my $unlinked_item_subfields = shift;
my $xml;
if (defined $unlinked_item_subfields and ref($unlinked_item_subfields) eq 'ARRAY' and $#$unlinked_item_subfields > -1) {
my $marc = MARC::Record->new();
# use of tag 999 is arbitrary, and doesn't need to match the item tag
# used in the framework
$marc->append_fields(MARC::Field->new('999', ' ', ' ', @$unlinked_item_subfields));
$marc->encoding("UTF-8");
$xml = $marc->as_xml("USMARC");
}
return $xml;
}
=head2 _parse_unlinked_item_subfields_from_xml
my $unlinked_item_subfields = _parse_unlinked_item_subfields_from_xml($whole_item->{'more_subfields_xml'}):
=cut
sub _parse_unlinked_item_subfields_from_xml {
my $xml = shift;
require C4::Charset;
return unless defined $xml and $xml ne "";
my $marc = MARC::Record->new_from_xml(C4::Charset::StripNonXmlChars($xml),'UTF-8');
my $unlinked_subfields = [];
my @fields = $marc->fields();
if ($#fields > -1) {
foreach my $subfield ($fields[0]->subfields()) {
push @$unlinked_subfields, $subfield->[0] => $subfield->[1];
}
}
return $unlinked_subfields;
}
=head2 GetAnalyticsCount
$count= &GetAnalyticsCount($itemnumber)
counts Usage of itemnumber in Analytical bibliorecords.
=cut
sub GetAnalyticsCount {
my ($itemnumber) = @_;
if ( !C4::Context->preference('EasyAnalyticalRecords') ) {
return 0;