|
Line 0
Link Here
|
|
|
1 |
package Koha::Hold; |
| 2 |
|
| 3 |
# Copyright ByWater Solutions 2014 |
| 4 |
# |
| 5 |
# This file is part of Koha. |
| 6 |
# |
| 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 |
| 10 |
# version. |
| 11 |
# |
| 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. |
| 15 |
# |
| 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. |
| 19 |
|
| 20 |
use Modern::Perl; |
| 21 |
|
| 22 |
use Carp; |
| 23 |
|
| 24 |
use Koha::Branches; |
| 25 |
use Koha::Biblios; |
| 26 |
use Koha::Items; |
| 27 |
|
| 28 |
use base qw(Koha::Object); |
| 29 |
|
| 30 |
=head1 NAME |
| 31 |
|
| 32 |
Koha::Branch - Koha Item Object class |
| 33 |
|
| 34 |
=head1 API |
| 35 |
|
| 36 |
=head2 Class Methods |
| 37 |
|
| 38 |
=cut |
| 39 |
|
| 40 |
=head3 Biblio |
| 41 |
|
| 42 |
Returns the related Koha::Biblio object for this Hold |
| 43 |
|
| 44 |
=cut |
| 45 |
|
| 46 |
sub Biblio { |
| 47 |
my ($self) = @_; |
| 48 |
|
| 49 |
$self->{Biblio} ||= Koha::Biblios->new()->Find( $self->biblionumber() ); |
| 50 |
|
| 51 |
return $self->{Biblio}; |
| 52 |
} |
| 53 |
|
| 54 |
=head3 Item |
| 55 |
|
| 56 |
Returns the related Koha::Item object for this Hold |
| 57 |
|
| 58 |
=cut |
| 59 |
|
| 60 |
sub Item { |
| 61 |
my ($self) = @_; |
| 62 |
|
| 63 |
$self->{Item} ||= Koha::Items->new()->Find( $self->itemnumber() ); |
| 64 |
|
| 65 |
return $self->{Item}; |
| 66 |
} |
| 67 |
|
| 68 |
=head3 Branch |
| 69 |
|
| 70 |
Returns the related Koha::Branch object for this Hold |
| 71 |
|
| 72 |
=cut |
| 73 |
|
| 74 |
sub Branch { |
| 75 |
my ($self) = @_; |
| 76 |
|
| 77 |
$self->{Branch} ||= Koha::Branches->new()->Find( $self->branchcode() ); |
| 78 |
|
| 79 |
return $self->{Branch}; |
| 80 |
} |
| 81 |
|
| 82 |
=head3 type |
| 83 |
|
| 84 |
=cut |
| 85 |
|
| 86 |
sub Type { |
| 87 |
return 'Reserve'; |
| 88 |
} |
| 89 |
|
| 90 |
=head1 AUTHOR |
| 91 |
|
| 92 |
Kyle M Hall <kyle@bywatersolutions.com> |
| 93 |
|
| 94 |
=cut |
| 95 |
|
| 96 |
1; |