Bug 9302: Add ability to merge patron records
[koha.git] / Koha / Subscription.pm
blobd585ba829a6dfa4dee50cf1cc44d4a9c4d0030af
1 package Koha::Subscription;
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
10 # version.
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.
20 use Modern::Perl;
22 use Carp;
24 use Koha::Database;
25 use Koha::Biblios;
26 use Koha::Acquisition::Booksellers;
28 use base qw(Koha::Object);
30 =head1 NAME
32 Koha::Subscription - Koha Subscription Object class
34 =head1 API
36 =head2 Class Methods
38 =cut
40 =head3 biblio
42 Returns the biblio linked to this subscription as a Koha::Biblio object
44 =cut
46 sub biblio {
47 my ($self) = @_;
49 return scalar Koha::Biblios->find($self->biblionumber);
52 =head3 vendor
54 Returns the vendor/supplier linked to this subscription as a Koha::Acquisition::Bookseller object
56 =cut
58 sub vendor {
59 my ($self) = @_;
60 return scalar Koha::Acquisition::Booksellers->find($self->aqbooksellerid);
63 =head3 type
65 =cut
67 sub _type {
68 return 'Subscription';
71 =head1 AUTHOR
73 Kyle M Hall <kyle@bywatersolutions.com>
75 =cut