Main Koha release repository https://koha-community.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
517 B

#!/usr/bin/perl
use Modern::Perl;
use CGI qw ( -utf8 );
use C4::Auth;
use C4::Items qw( ModDateLastSeen );
my $input = new CGI;
# Authentication
my ($status, $cookie, $sessionId) = C4::Auth::check_api_auth($input, { tools => 'inventory' });
exit unless ($status eq "ok");
my $seen = $input->param('seen');
my @seent = split(/\|/, $seen);
# mark seen if applicable (ie: coming form mark seen checkboxes)
foreach ( @seent ) {
/SEEN-(.+)/ and &ModDateLastSeen($1);
}
print $input->header('application/json');