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
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>.
29 use Koha
::DateUtils
qw(dt_from_string);
31 use base
qw(Koha::Object);
35 Koha::ArticleRequest - Koha Article Request Object class
50 $self->status(Koha
::ArticleRequest
::Status
::Pending
);
51 $self->SUPER::store
();
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 opac requests
192 will have notifications sent.
198 if ( $self->in_storage ) {
199 return $self->SUPER::store
;
201 $self->created_on( dt_from_string
() );
211 return 'ArticleRequest';
216 Kyle M Hall <kyle@bywatersolutions.com>