Jonathan Druart
6ee8dd3a59
The C4::Category module contained only 1 method to return the patron categories available for the logged in user. The new method Koha::Patron::Categories->search_limited does exactly the same thing (see tests) and must be used in place of it. Test plan: - Same prerequisite as before For the following pages, you should not see patron categories limited to other libraries. - On the 'Item circulation alerts' admin page (admin/item_circulation_alerts.pl), modify the settings for check-in and checkout (NOTE: Should not we display all patron categories on this page? If yes, it must be done in another bug report to ease backporting it). - Search for patrons in the admin (budget) and acquisition (order) module. - On the patron home page (search form in the header) Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
62 lines
1.9 KiB
Perl
62 lines
1.9 KiB
Perl
#!/usr/bin/perl
|
|
|
|
use Modern::Perl;
|
|
|
|
use Test::More tests => 3;
|
|
use Test::MockModule;
|
|
|
|
use C4::Biblio;
|
|
use C4::Items;
|
|
use C4::Members;
|
|
use C4::Circulation;
|
|
use Koha::Libraries;
|
|
use MARC::Record;
|
|
|
|
my $dbh = C4::Context->dbh;
|
|
$dbh->{AutoCommit} = 0;
|
|
$dbh->{RaiseError} = 1;
|
|
|
|
$dbh->do(q|DELETE FROM issues|);
|
|
$dbh->do(q|DELETE FROM borrowers|);
|
|
$dbh->do(q|DELETE FROM items|);
|
|
$dbh->do(q|DELETE FROM branches|);
|
|
$dbh->do(q|DELETE FROM biblio|);
|
|
$dbh->do(q|DELETE FROM categories|);
|
|
|
|
my $branchcode = 'B';
|
|
Koha::Library->new( { branchcode => $branchcode, branchname => 'Branch' } )->store;
|
|
|
|
my $categorycode = 'C';
|
|
$dbh->do( "INSERT INTO categories(categorycode) VALUES(?)",
|
|
undef, $categorycode );
|
|
|
|
my %item_branch_infos = (
|
|
homebranch => $branchcode,
|
|
holdingbranch => $branchcode,
|
|
);
|
|
|
|
my ($biblionumber1) = AddBiblio( MARC::Record->new, '' );
|
|
my $itemnumber1 =
|
|
AddItem( { barcode => '0101', %item_branch_infos }, $biblionumber1 );
|
|
my $itemnumber2 =
|
|
AddItem( { barcode => '0102', %item_branch_infos }, $biblionumber1 );
|
|
|
|
my ($biblionumber2) = AddBiblio( MARC::Record->new, '' );
|
|
my $itemnumber3 =
|
|
AddItem( { barcode => '0103', %item_branch_infos }, $biblionumber2 );
|
|
|
|
my $borrowernumber =
|
|
AddMember( categorycode => $categorycode, branchcode => $branchcode );
|
|
my $borrower = GetMember( borrowernumber => $borrowernumber );
|
|
|
|
my $module = new Test::MockModule('C4::Context');
|
|
$module->mock( 'userenv', sub { { branch => $branchcode } } );
|
|
|
|
AddIssue( $borrower, '0101', DateTime->now->subtract( days => 1 ) );
|
|
AddIssue( $borrower, '0102', DateTime->now->subtract( days => 5 ) );
|
|
AddIssue( $borrower, '0103' );
|
|
|
|
my $overdues = C4::Members::GetOverduesForPatron( $borrowernumber );
|
|
is( @$overdues, 2, 'GetOverduesForPatron returns the correct number of elements' );
|
|
is( $overdues->[0]->{itemnumber}, $itemnumber1, 'First overdue is correct' );
|
|
is( $overdues->[1]->{itemnumber}, $itemnumber2, 'Second overdue is correct' );
|