1 package Koha
::ArticleRequests
;
3 # Copyright ByWater Solutions 2015
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
26 use Koha
::ArticleRequest
::Status
;
27 use Koha
::ArticleRequest
;
29 use base
qw(Koha::Objects);
33 Koha::ArticleRequests - Koha ArticleRequests Object class
43 my $article_requests = Koha::ArticleRequests->search_limited( $params, $attributes );
45 Search for article requests according to logged in patron restrictions
50 my ( $self, $params, $attributes ) = @_;
52 my $userenv = C4
::Context
->userenv;
53 my @restricted_branchcodes;
54 if ( $userenv and $userenv->{number
} ) {
55 my $logged_in_user = Koha
::Patrons
->find( $userenv->{number
} );
56 @restricted_branchcodes = $logged_in_user->libraries_where_can_see_patrons;
58 # TODO This 'borrowernumber' relation name is confusing and needs to be renamed
59 $params->{'borrowernumber.branchcode'} = { -in => \
@restricted_branchcodes } if @restricted_branchcodes;
60 $attributes->{join} = 'borrowernumber';
61 return $self->search( $params, $attributes );
69 my ( $self, $branchcode ) = @_;
70 my $params = { status
=> Koha
::ArticleRequest
::Status
::Pending
};
71 $params->{'me.branchcode'} = $branchcode if $branchcode;
72 return Koha
::ArticleRequests
->search_limited( $params );
80 my ( $self, $branchcode ) = @_;
81 my $params = { status
=> Koha
::ArticleRequest
::Status
::Processing
};
82 $params->{'me.branchcode'} = $branchcode if $branchcode;
83 return Koha
::ArticleRequests
->search_limited( $params );
91 my ( $self, $branchcode ) = @_;
92 my $params = { status
=> Koha
::ArticleRequest
::Status
::Completed
};
93 $params->{'me.branchcode'} = $branchcode if $branchcode;
94 return Koha
::ArticleRequests
->search_limited( $params );
102 my ( $self, $branchcode ) = @_;
103 my $params = { status
=> Koha
::ArticleRequest
::Status
::Canceled
};
104 $params->{'me.branchcode'} = $branchcode if $branchcode;
105 return Koha
::ArticleRequests
->search_limited( $params );
113 return 'ArticleRequest';
117 return 'Koha::ArticleRequest';
122 Kyle M Hall <kyle@bywatersolutions.com>