Lines 160-166
if ($do_it) {
Link Here
|
160 |
push @locations, { code => $_, description => "$_ - " . $locations->{$_} }; |
160 |
push @locations, { code => $_, description => "$_ - " . $locations->{$_} }; |
161 |
} |
161 |
} |
162 |
|
162 |
|
163 |
foreach my $kohafield (qw(items.notforloan items.materials items.statisticvalue)) { |
163 |
foreach my $kohafield (qw(items.notforloan items.materials)) { |
164 |
my $subfield_structure = GetMarcSubfieldStructureFromKohaField($kohafield); |
164 |
my $subfield_structure = GetMarcSubfieldStructureFromKohaField($kohafield); |
165 |
if($subfield_structure) { |
165 |
if($subfield_structure) { |
166 |
my $avlist; |
166 |
my $avlist; |
Lines 191-197
if ($do_it) {
Link Here
|
191 |
CGIextChoice => \@mime, |
191 |
CGIextChoice => \@mime, |
192 |
CGIsepChoice => GetDelimiterChoices, |
192 |
CGIsepChoice => GetDelimiterChoices, |
193 |
item_itype => $item_itype, |
193 |
item_itype => $item_itype, |
194 |
DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar(), |
|
|
195 |
); |
194 |
); |
196 |
|
195 |
|
197 |
} |
196 |
} |
Lines 255-267
sub calculate {
Link Here
|
255 |
: ( $i == 12 ) ? "Collection Code" |
254 |
: ( $i == 12 ) ? "Collection Code" |
256 |
: ( $i == 13 ) ? "Status" |
255 |
: ( $i == 13 ) ? "Status" |
257 |
: ( $i == 14 ) ? "Materials" |
256 |
: ( $i == 14 ) ? "Materials" |
258 |
: ( $i == 15 ) ? "Statistic value" |
257 |
: ( $i == 16 and $filters->[15] == 0 ) ? "Barcode (not like)" |
259 |
: ( $i == 17 and $filters->[16] == 0 ) ? "Barcode (not like)" |
258 |
: ( $i == 16 and $filters->[15] == 1 ) ? "Barcode (like)" |
260 |
: ( $i == 17 and $filters->[16] == 1 ) ? "Barcode (like)" |
259 |
: ( $i == 17 ) ? "Acquired date from" |
261 |
: ( $i == 18 ) ? "Acquired date from" |
260 |
: ( $i == 18 ) ? "Acquired date to" |
262 |
: ( $i == 19 ) ? "Acquired date to" |
261 |
: ( $i == 19 ) ? "Removed date from" |
263 |
: ( $i == 20 ) ? "Removed date from" |
262 |
: ( $i == 20 ) ? "Removed date to" |
264 |
: ( $i == 21 ) ? "Removed date to" |
|
|
265 |
: ''; |
263 |
: ''; |
266 |
|
264 |
|
267 |
push @loopfilter, \%cell; |
265 |
push @loopfilter, \%cell; |
268 |
- |
|
|