4 Jun
2024
4 Jun
'24
2:39 p.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28833 --- Comment #26 from Kyle M Hall <kyle@bywatersolutions.com> --- (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.