1 package Koha
::ArticleRequest
;
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.
29 use Koha
::ArticleRequest
::Status
;
30 use Koha
::DateUtils
qw(dt_from_string);
32 use base
qw(Koha::Object);
36 Koha::ArticleRequest - Koha Article Request Object class
51 $self->status(Koha
::ArticleRequest
::Status
::Pending
);
63 $self->status(Koha
::ArticleRequest
::Status
::Processing
);
76 $self->status(Koha
::ArticleRequest
::Status
::Completed
);
87 my ( $self, $notes ) = @_;
89 $self->status(Koha
::ArticleRequest
::Status
::Canceled
);
90 $self->notes($notes) if $notes;
103 my $status = $self->status;
107 my $letter = C4
::Letters
::GetPreparedLetter
(
108 module
=> 'circulation',
109 letter_code
=> "AR_$status", # AR_PENDING, AR_PROCESSING, AR_COMPLETED, AR_CANCELED
110 message_transport_type
=> 'email',
111 lang
=> $self->borrower->lang,
113 article_requests
=> $self->id,
114 borrowers
=> $self->borrowernumber,
115 biblio
=> $self->biblionumber,
116 biblioitems
=> $self->biblionumber,
117 items
=> $self->itemnumber,
118 branches
=> $self->branchcode,
123 C4
::Letters
::EnqueueLetter
(
126 borrowernumber
=> $self->borrowernumber,
127 message_transport_type
=> 'email',
129 ) or warn "can't enqueue letter $letter";
135 Returns the Koha::Biblio object for this article request
142 $self->{_biblio
} ||= Koha
::Biblios
->find( $self->biblionumber() );
144 return $self->{_biblio
};
149 Returns the Koha::Item object for this article request
156 $self->{_item
} ||= Koha
::Items
->find( $self->itemnumber() );
158 return $self->{_item
};
163 Returns the Koha::Patron object for this article request
170 $self->{_borrower
} ||= Koha
::Patrons
->find( $self->borrowernumber() );
172 return $self->{_borrower
};
177 Returns the Koha::Library object for this article request
184 $self->{_branch
} ||= Koha
::Libraries
->find( $self->branchcode() );
186 return $self->{_branch
};
191 Override the default store behavior so that new opan requests
192 will have notifications sent.
199 if ( $self->in_storage() ) {
200 my $now = dt_from_string
();
201 $self->updated_on($now);
203 return $self->SUPER::store
();
207 return $self->SUPER::store
();
216 return 'ArticleRequest';
221 Kyle M Hall <kyle@bywatersolutions.com>