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 under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 3 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 use Koha
::ArticleRequest
;
27 use Koha
::ArticleRequest
::Status
;
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>