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>.
25 use Koha::ArticleRequest::Status;
26 use Koha::ArticleRequest;
28 use base qw(Koha::Objects);
32 Koha::ArticleRequests - Koha ArticleRequests Object class
42 my $article_requests = Koha::ArticleRequests->search_limited( $params, $attributes );
44 Search for article requests according to logged in patron restrictions
49 my ( $self, $params, $attributes ) = @_;
51 my $userenv = C4::Context->userenv;
52 my @restricted_branchcodes;
53 if ( $userenv and $userenv->{number} ) {
54 my $logged_in_user = Koha::Patrons->find( $userenv->{number} );
55 @restricted_branchcodes = $logged_in_user->libraries_where_can_see_patrons;
57 # TODO This 'borrowernumber' relation name is confusing and needs to be renamed
58 $params->{'borrowernumber.branchcode'} = { -in => \@restricted_branchcodes } if @restricted_branchcodes;
59 $attributes->{join} = 'borrowernumber';
60 return $self->search( $params, $attributes );
63 =head3 filter_by_current
65 my $current_article_requests = $article_requests->filter_by_current;
67 Returns a new resultset, filtering out finished article requests.
71 sub filter_by_current {
77 Koha::ArticleRequest::Status::Requested,
78 Koha::ArticleRequest::Status::Pending,
79 Koha::ArticleRequest::Status::Processing,
85 =head3 filter_by_finished
87 my $finished_article_requests = $article_requests->filter_by_finished;
89 Returns a new resultset, filtering out current article requests.
93 sub filter_by_finished {
99 Koha::ArticleRequest::Status::Completed,
100 Koha::ArticleRequest::Status::Canceled,
111 my ( $self, $branchcode ) = @_;
112 my $params = { status => Koha::ArticleRequest::Status::Requested };
113 $params->{'me.branchcode'} = $branchcode if $branchcode;
114 return Koha::ArticleRequests->search_limited($params);
122 my ( $self, $branchcode ) = @_;
123 my $params = { status => Koha::ArticleRequest::Status::Pending };
124 $params->{'me.branchcode'} = $branchcode if $branchcode;
125 return Koha::ArticleRequests->search_limited( $params );
133 my ( $self, $branchcode ) = @_;
134 my $params = { status => Koha::ArticleRequest::Status::Processing };
135 $params->{'me.branchcode'} = $branchcode if $branchcode;
136 return Koha::ArticleRequests->search_limited( $params );
144 my ( $self, $branchcode ) = @_;
145 my $params = { status => Koha::ArticleRequest::Status::Completed };
146 $params->{'me.branchcode'} = $branchcode if $branchcode;
147 return Koha::ArticleRequests->search_limited( $params );
155 my ( $self, $branchcode ) = @_;
156 my $params = { status => Koha::ArticleRequest::Status::Canceled };
157 $params->{'me.branchcode'} = $branchcode if $branchcode;
158 return Koha::ArticleRequests->search_limited( $params );
166 return 'ArticleRequest';
170 return 'Koha::ArticleRequest';
175 Kyle M Hall <kyle@bywatersolutions.com>