Bug 30477: Add new UNIMARC installer translation files
[koha.git] / misc / cronjobs / holds / build_holds_queue.pl
1 #!/usr/bin/perl 
2 #-----------------------------------
3 # Script Name: build_holds_queue.pl
4 # Description: builds a holds queue in the tmp_holdsqueue table
5 #-----------------------------------
6 # FIXME: add command-line options for verbosity and summary
7 # FIXME: expand perldoc, explain intended logic
8
9 use strict;
10 use warnings;
11
12 use Koha::Script -cron;
13 use C4::HoldsQueue qw(CreateQueue);
14 use C4::Log qw( cronlogaction );
15
16 cronlogaction();
17
18 CreateQueue();
19