Lines 35-40
use C4::Dates qw/format_date format_date_in_iso/;
Link Here
|
35 |
use C4::Koha; |
35 |
use C4::Koha; |
36 |
use C4::Branch; # GetBranches |
36 |
use C4::Branch; # GetBranches |
37 |
use C4::Circulation; |
37 |
use C4::Circulation; |
|
|
38 |
use C4::Reports::Guided; #_get_column_defs |
39 |
use C4::Charset; |
40 |
use List::MoreUtils qw/none/; |
41 |
|
38 |
|
42 |
|
39 |
my $minlocation=$input->param('minlocation') || ''; |
43 |
my $minlocation=$input->param('minlocation') || ''; |
40 |
my $maxlocation=$input->param('maxlocation'); |
44 |
my $maxlocation=$input->param('maxlocation'); |
Lines 50-68
my $pagesize = $input->param('pagesize');
Link Here
|
50 |
$pagesize=50 unless $pagesize; |
54 |
$pagesize=50 unless $pagesize; |
51 |
my $branchcode = $input->param('branchcode') || ''; |
55 |
my $branchcode = $input->param('branchcode') || ''; |
52 |
my $branch = $input->param('branch'); |
56 |
my $branch = $input->param('branch'); |
53 |
my $op = $input->param('op'); |
57 |
my $op = $input->param('op'); |
54 |
my $res; #contains the results loop |
58 |
my $compareinv2barcd = $input->param('compareinv2barcd'); |
55 |
# warn "uploadbarcodes : ".$uploadbarcodes; |
59 |
my $res; #contains the results loop |
56 |
# use Data::Dumper; warn Dumper($input); |
60 |
|
57 |
|
61 |
my ( $template, $borrowernumber, $cookie ) = get_template_and_user( |
58 |
my ($template, $borrowernumber, $cookie) |
62 |
{ template_name => "tools/inventory.tmpl", |
59 |
= get_template_and_user({template_name => "tools/inventory.tmpl", |
63 |
query => $input, |
60 |
query => $input, |
64 |
type => "intranet", |
61 |
type => "intranet", |
65 |
authnotrequired => 0, |
62 |
authnotrequired => 0, |
66 |
flagsrequired => { tools => 'inventory' }, |
63 |
flagsrequired => {tools => 'inventory'}, |
67 |
debug => 1, |
64 |
debug => 1, |
68 |
} |
65 |
}); |
69 |
); |
|
|
70 |
|
66 |
|
71 |
|
67 |
my $branches = GetBranches(); |
72 |
my $branches = GetBranches(); |
68 |
my @branch_loop; |
73 |
my @branch_loop; |
Lines 103-160
for my $statfield (qw/items.notforloan items.itemlost items.wthdrawn items.damag
Link Here
|
103 |
push @$statuses, $hash; |
108 |
push @$statuses, $hash; |
104 |
} |
109 |
} |
105 |
} |
110 |
} |
|
|
111 |
|
112 |
|
106 |
$template->param( statuses => $statuses ); |
113 |
$template->param( statuses => $statuses ); |
107 |
my $staton = {}; #authorized values that are ticked |
114 |
my $staton = {}; #authorized values that are ticked |
108 |
for my $authvfield (@$statuses) { |
115 |
for my $authvfield (@$statuses) { |
109 |
$staton->{$authvfield->{fieldname}} = []; |
116 |
$staton->{$authvfield->{fieldname}} = []; |
110 |
for my $authval (@{$authvfield->{values}}){ |
117 |
for my $authval (@{$authvfield->{values}}){ |
111 |
if ( defined $input->param('status-' . $authvfield->{fieldname} . '-' . $authval->{id}) && $input->param('status-' . $authvfield->{fieldname} . '-' . $authval->{id}) eq 'on' ){ |
118 |
if ( defined $input->param('status-' . $authvfield->{fieldname} . '-' . $authval->{authorised_value}) && $input->param('status-' . $authvfield->{fieldname} . '-' . $authval->{authorised_value}) eq 'on' ){ |
112 |
push @{$staton->{$authvfield->{fieldname}}}, $authval->{id}; |
119 |
push @{$staton->{$authvfield->{fieldname}}}, $authval->{authorised_value}; |
113 |
} |
120 |
} |
114 |
} |
121 |
} |
115 |
} |
122 |
} |
116 |
|
123 |
|
|
|
124 |
my $notforloanlist; |
117 |
my $statussth = ''; |
125 |
my $statussth = ''; |
118 |
for my $authvfield (@$statuses) { |
126 |
for my $authvfield (@$statuses) { |
119 |
if ( scalar @{$staton->{$authvfield->{fieldname}}} > 0 ){ |
127 |
if ( scalar @{$staton->{$authvfield->{fieldname}}} > 0 ){ |
120 |
my $joinedvals = join ',', @{$staton->{$authvfield->{fieldname}}}; |
128 |
my $joinedvals = join ',', @{$staton->{$authvfield->{fieldname}}}; |
121 |
$statussth .= "$authvfield->{fieldname} in ($joinedvals) and "; |
129 |
$statussth .= "$authvfield->{fieldname} in ($joinedvals) and "; |
|
|
130 |
$notforloanlist = $joinedvals if ($authvfield->{fieldname} eq "items.notforloan"); |
122 |
} |
131 |
} |
123 |
} |
132 |
} |
124 |
$statussth =~ s, and $,,g; |
133 |
$statussth =~ s, and $,,g; |
125 |
|
134 |
$template->param( |
126 |
$template->param(branchloop => \@branch_loop, |
135 |
branchloop => \@branch_loop, |
127 |
authorised_values=>\@authorised_value_list, |
136 |
authorised_values => \@authorised_value_list, |
128 |
today => C4::Dates->today(), |
137 |
DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar(), |
129 |
minlocation => $minlocation, |
138 |
today => C4::Dates->today(), |
130 |
maxlocation => $maxlocation, |
139 |
minlocation => $minlocation, |
131 |
location=>$location, |
140 |
maxlocation => $maxlocation, |
132 |
ignoreissued=>$ignoreissued, |
141 |
location => $location, |
133 |
branchcode=>$branchcode, |
142 |
ignoreissued => $ignoreissued, |
134 |
branch => $branch, |
143 |
branchcode => $branchcode, |
135 |
offset => $offset, |
144 |
branch => $branch, |
136 |
pagesize => $pagesize, |
145 |
offset => $offset, |
137 |
datelastseen => $datelastseen, |
146 |
pagesize => $pagesize, |
138 |
); |
147 |
datelastseen => $datelastseen, |
|
|
148 |
compareinv2barcd => $compareinv2barcd, |
149 |
notforloanlist => $notforloanlist |
150 |
); |
151 |
|
152 |
my @notforloans; |
153 |
if (defined $notforloanlist) { |
154 |
@notforloans = split(/,/, $notforloanlist); |
155 |
} |
156 |
|
157 |
|
158 |
|
139 |
my @brcditems; |
159 |
my @brcditems; |
140 |
if ($uploadbarcodes && length($uploadbarcodes)>0){ |
160 |
my $barcodelist; |
141 |
my $dbh=C4::Context->dbh; |
161 |
my @errorloop; |
142 |
my $date = format_date_in_iso($input->param('setdate')) || C4::Dates->today('iso'); |
162 |
if ( $uploadbarcodes && length($uploadbarcodes) > 0 ) { |
143 |
# warn "$date"; |
163 |
my $dbh = C4::Context->dbh; |
144 |
my $strsth="select * from issues, items where items.itemnumber=issues.itemnumber and items.barcode =?"; |
164 |
my $date = format_date_in_iso( $input->param('setdate') ) || C4::Dates->today('iso'); |
|
|
165 |
|
166 |
my $strsth = "select * from issues, items where items.itemnumber=issues.itemnumber and items.barcode =?"; |
145 |
my $qonloan = $dbh->prepare($strsth); |
167 |
my $qonloan = $dbh->prepare($strsth); |
146 |
$strsth="select * from items where items.barcode =? and items.wthdrawn = 1"; |
168 |
$strsth="select * from items where items.barcode =? and items.wthdrawn = 1"; |
147 |
my $qwthdrawn = $dbh->prepare($strsth); |
169 |
my $qwthdrawn = $dbh->prepare($strsth); |
148 |
my @errorloop; |
170 |
my $count = 0; |
149 |
my $count=0; |
171 |
|
150 |
while (my $barcode=<$uploadbarcodes>){ |
172 |
while ( my $barcode = <$uploadbarcodes> ) { |
151 |
$barcode =~ s/\r?\n$//; |
173 |
$barcode =~ s/\r?\n$//; |
152 |
if ($qwthdrawn->execute($barcode) &&$qwthdrawn->rows){ |
174 |
$barcodelist .= ($barcodelist) ? '|' . $barcode : $barcode; |
153 |
push @errorloop, {'barcode'=>$barcode,'ERR_WTHDRAWN'=>1}; |
175 |
if ( $qwthdrawn->execute($barcode) && $qwthdrawn->rows ) { |
154 |
}else{ |
176 |
push @errorloop, { 'barcode' => $barcode, 'ERR_WTHDRAWN' => 1 }; |
155 |
my $item = GetItem('', $barcode); |
177 |
} else { |
156 |
if (defined $item && $item->{'itemnumber'}){ |
178 |
my $item = GetItem( '', $barcode ); |
157 |
ModItem({ datelastseen => $date }, undef, $item->{'itemnumber'}); |
179 |
if ( defined $item && $item->{'itemnumber'} ) { |
|
|
180 |
ModItem( { datelastseen => $date }, undef, $item->{'itemnumber'} ); |
158 |
push @brcditems, $item; |
181 |
push @brcditems, $item; |
159 |
$count++; |
182 |
$count++; |
160 |
$qonloan->execute($barcode); |
183 |
$qonloan->execute($barcode); |
Lines 171-218
if ($uploadbarcodes && length($uploadbarcodes)>0){
Link Here
|
171 |
push @errorloop, {'barcode'=>$barcode,'ERR_BARCODE'=>1}; |
194 |
push @errorloop, {'barcode'=>$barcode,'ERR_BARCODE'=>1}; |
172 |
} |
195 |
} |
173 |
} |
196 |
} |
|
|
197 |
|
174 |
} |
198 |
} |
175 |
$qonloan->finish; |
199 |
$qonloan->finish; |
176 |
$qwthdrawn->finish; |
200 |
$qwthdrawn->finish; |
177 |
$template->param(date=>format_date($date),Number=>$count); |
201 |
$template->param( date => format_date($date), Number => $count ); |
178 |
# $template->param(errorfile=>$errorfile) if ($errorfile); |
202 |
$template->param( errorloop => \@errorloop ) if (@errorloop); |
179 |
$template->param(errorloop=>\@errorloop) if (@errorloop); |
203 |
|
|
|
204 |
|
180 |
} |
205 |
} |
181 |
#if we want to compare the results to a list of barcodes, or we have no barcode file |
206 |
$template->param(barcodelist => $barcodelist); |
182 |
if ( ! ($uploadbarcodes && length($uploadbarcodes)>0 ) || ( $input->param('compareinv2barcd') eq 'on' && length($uploadbarcodes)>0) ) { |
207 |
|
183 |
if ($markseen) { |
208 |
# now build the result list: inventoried items if requested, and mis-placed items -always- |
184 |
foreach ($input->param) { |
209 |
my $inventorylist; |
185 |
/SEEN-(.+)/ and &ModDateLastSeen($1); |
210 |
if ( $markseen or $op ) { |
186 |
} |
211 |
# retrieve all items in this range. |
187 |
} |
212 |
my $totalrecords; |
188 |
if ($markseen or $op) { |
213 |
($inventorylist, $totalrecords) = GetItemsForInventory($minlocation, $maxlocation, $location, $itemtype, $ignoreissued, '', $branchcode, $branch, 0, undef , $staton); |
189 |
$res = GetItemsForInventory( $minlocation, $maxlocation, $location, $itemtype, $ignoreissued, $datelastseen, $branchcode, $branch, $offset, $pagesize, $staton ); |
214 |
|
190 |
$template->param(loop =>$res, |
215 |
# Real copy |
191 |
nextoffset => ($offset+$pagesize), |
216 |
my @res_copy; |
192 |
prevoffset => ($offset?$offset-$pagesize:0), |
217 |
foreach (@$inventorylist) { |
193 |
); |
218 |
push @res_copy, $_; |
194 |
} |
219 |
} |
195 |
if ( defined $input->param('compareinv2barcd') && ( ( $input->param('compareinv2barcd') eq 'on' ) && ( scalar @brcditems != scalar @$res ) ) && length($uploadbarcodes) > 0 ){ |
220 |
$res = \@res_copy; |
196 |
if ( scalar @brcditems > scalar @$res ){ |
221 |
} |
197 |
for my $brcditem (@brcditems) { |
222 |
|
198 |
if (! grep( $_->{barcode} =~ /$brcditem->{barcode}/ , @$res) ){ |
223 |
# set "missing" flags for all items with a datelastseen before the choosen datelastseen |
199 |
$brcditem->{notfoundkoha} = 1; |
224 |
foreach (@$res) { $_->{missingitem}=1 if C4::Dates->new($_->{datelastseen})->output('iso') lt C4::Dates->new($datelastseen)->output('iso'); } |
200 |
push @$res, $brcditem; |
225 |
|
201 |
} |
226 |
# removing missing items from loop if "Compare barcodes list to results" has not been checked |
202 |
} |
227 |
@$res = grep {!$_->{missingitem} == 1 } @$res if (!$input->param('compareinv2barcd')); |
203 |
} else { |
228 |
|
204 |
my @notfound; |
229 |
# insert "wrongplace" to all scanned items that are not supposed to be in this range |
205 |
for my $item (@$res) { |
230 |
# note this list is always displayed, whatever the librarian has choosen for comparison |
206 |
if ( ! grep( $_->{barcode} =~ /$item->{barcode}/ , @brcditems) ){ |
231 |
foreach my $temp (@brcditems) { |
207 |
$item->{notfoundbarcode} = 1; |
232 |
|
208 |
push @notfound, $item; |
233 |
# Saving notforloan code before it's replaced by it's authorised value for later comparison |
209 |
} |
234 |
$temp->{'notforloancode'} = $temp->{'notforloan'}; |
|
|
235 |
|
236 |
# Populating with authorised values |
237 |
foreach (keys %$temp) { |
238 |
# If the koha field is mapped to a marc field |
239 |
my $fc = $temp->{'frameworkcode'} || ''; |
240 |
my ($f, $sf) = GetMarcFromKohaField("items.$_", $fc); |
241 |
if ($f and $sf) { |
242 |
# We replace the code with it's description |
243 |
my $authvals = C4::Koha::GetKohaAuthorisedValuesFromField($f, $sf, $fc); |
244 |
if ($authvals and defined $temp->{$_} and defined $authvals->{$temp->{$_}}) { |
245 |
$temp->{$_} = $authvals->{$temp->{$_}}; |
210 |
} |
246 |
} |
211 |
$res = [@$res, @notfound]; |
|
|
212 |
} |
247 |
} |
213 |
} |
248 |
} |
|
|
249 |
|
250 |
next if $temp->{onloan}; # skip checked out items |
251 |
|
252 |
# If we have scanned items with a non-matching notforloan value |
253 |
if (none { $temp->{'notforloancode'} eq $_ } @notforloans) { |
254 |
$temp->{'changestatus'} = 1; |
255 |
my $biblio = C4::Biblio::GetBiblioData($temp->{biblionumber}); |
256 |
$temp->{title} = $biblio->{title}; |
257 |
$temp->{author} = $biblio->{author}; |
258 |
$temp->{datelastseen} = format_date($temp->{datelastseen}); |
259 |
push @$res, $temp; |
260 |
|
261 |
} |
262 |
if (none { $temp->{barcode} eq $_->{barcode} && !$_->{'onloan'} } @$inventorylist) { |
263 |
my $temp2 = { %$temp }; |
264 |
$temp2->{wrongplace}=1; |
265 |
my $biblio = C4::Biblio::GetBiblioData($temp->{biblionumber}); |
266 |
$temp2->{title} = $biblio->{title}; |
267 |
$temp2->{author} = $biblio->{author}; |
268 |
$temp2->{datelastseen} = format_date($temp->{datelastseen}); |
269 |
push @$res, $temp2; |
270 |
} |
271 |
} |
272 |
|
273 |
# Finally, modifying datelastseen for remaining items |
274 |
my $moddatecount = 0; |
275 |
foreach (@$res) { |
276 |
unless ($_->{'missingitem'}) { |
277 |
ModDateLastSeen($_->{'itemnumber'}); |
278 |
$moddatecount++; |
279 |
} |
214 |
} |
280 |
} |
215 |
|
281 |
|
|
|
282 |
# Removing items that don't have any problems from loop |
283 |
@$res = grep { $_->{missingitem} || $_->{wrongplace} || $_->{changestatus} } @$res; |
284 |
|
285 |
$template->param( |
286 |
moddatecount => $moddatecount, |
287 |
loop => $res, |
288 |
nextoffset => ( $offset + $pagesize ), |
289 |
prevoffset => ( $offset ? $offset - $pagesize : 0 ), |
290 |
op => $op |
291 |
); |
292 |
|
216 |
if (defined $input->param('CSVexport') && $input->param('CSVexport') eq 'on'){ |
293 |
if (defined $input->param('CSVexport') && $input->param('CSVexport') eq 'on'){ |
217 |
eval {use Text::CSV}; |
294 |
eval {use Text::CSV}; |
218 |
my $csv = Text::CSV->new or |
295 |
my $csv = Text::CSV->new or |
Lines 221-234
if (defined $input->param('CSVexport') && $input->param('CSVexport') eq 'on'){
Link Here
|
221 |
-type => 'text/csv', |
298 |
-type => 'text/csv', |
222 |
-attachment => 'inventory.csv', |
299 |
-attachment => 'inventory.csv', |
223 |
); |
300 |
); |
224 |
for my $re (@$res){ |
301 |
|
|
|
302 |
my $columns_def_hashref = C4::Reports::Guided::_get_column_defs(); |
303 |
foreach my $key ( keys %$columns_def_hashref ) { |
304 |
my $initkey = $key; |
305 |
$key =~ s/[^\.]*\.//; |
306 |
$columns_def_hashref->{$initkey}=NormalizeString($columns_def_hashref->{$initkey}); |
307 |
$columns_def_hashref->{$key} = $columns_def_hashref->{$initkey}; |
308 |
} |
309 |
|
310 |
my @translated_keys; |
311 |
for my $key (qw / biblioitems.title biblio.author |
312 |
items.barcode items.itemnumber |
313 |
items.homebranch items.location |
314 |
items.itemcallnumber items.notforloan |
315 |
items.itemlost items.damaged |
316 |
items.stocknumber |
317 |
/ ) { |
318 |
push @translated_keys, $columns_def_hashref->{$key}; |
319 |
} |
320 |
|
321 |
$csv->combine(@translated_keys); |
322 |
print $csv->string, "\n"; |
323 |
|
324 |
my @keys = qw / title author barcode itemnumber homebranch location itemcallnumber notforloan lost damaged stocknumber /; |
325 |
for my $re (@$res) { |
225 |
my @line; |
326 |
my @line; |
226 |
for my $key (keys %$re) { |
327 |
for my $key (@keys) { |
227 |
push @line, $re->{$key}; |
328 |
push @line, $re->{$key}; |
228 |
} |
329 |
} |
|
|
330 |
if ($re->{wrongplace}) { |
331 |
push @line, "wrong place"; |
332 |
} elsif ($re->{missingitem}) { |
333 |
push @line, "missing item"; |
334 |
} elsif ($re->{changestatus}) { |
335 |
push @line, "change item status"; |
336 |
} |
229 |
$csv->combine(@line); |
337 |
$csv->combine(@line); |
230 |
print $csv->string, "\n"; |
338 |
print $csv->string, "\n"; |
231 |
} |
339 |
} |
|
|
340 |
# Adding not found barcodes |
341 |
foreach my $error (@errorloop) { |
342 |
my @line; |
343 |
if ($error->{'ERR_BARCODE'}) { |
344 |
push @line, map { $_ eq 'barcode' ? $error->{'barcode'} : ''} @keys; |
345 |
push @line, "barcode not found"; |
346 |
$csv->combine(@line); |
347 |
print $csv->string, "\n"; |
348 |
} |
349 |
} |
232 |
exit; |
350 |
exit; |
233 |
} |
351 |
} |
234 |
|
352 |
|
235 |
- |
|
|