https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28833

--- Comment #26 from Kyle M Hall <[email protected]> ---
(In reply to David Nind from comment #25)
> Thanks Kyle for making the patch apply!
> 
> Is there an easy way to generate a large number of holds? Either an SQL
> query or a script.
> 
> David

This script will generate 100 holds:

#!/usr/bin/perl
use t::lib::TestBuilder;
my $builder = t::lib::TestBuilder->new;

for ( my $i = 0 ; $i < 100 ; $i++ ) {
    my $hold = $builder->build( { source => 'Reserve' } );
}

Hope this helps!

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to