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
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
::Acquisition
::Booksellers
;
28 use base
qw(Koha::Object);
32 Koha::Subscription - Koha Subscription Object class
42 Returns the biblio linked to this subscription as a Koha::Biblio object
49 return scalar Koha
::Biblios
->find($self->biblionumber);
54 Returns the vendor/supplier linked to this subscription as a Koha::Acquisition::Bookseller object
60 return scalar Koha
::Acquisition
::Booksellers
->find($self->aqbooksellerid);
65 my $subscribers = $subscription->subscribers;
67 return a Koha::Patrons object
73 my $schema = Koha
::Database
->new->schema;
74 my @borrowernumbers = $schema->resultset('Alert')->search({ externalid
=> $self->subscriptionid })->get_column( 'borrowernumber' )->all;
75 return Koha
::Patrons
->search({ borrowernumber
=> {-in => \
@borrowernumbers } });
80 $subscription->add_subscriber( $patron );
82 Add a new subscriber (Koha::Patron) to this subscription
87 my ( $self, $patron ) = @_;
88 my $schema = Koha
::Database
->new->schema;
89 my $rs = $schema->resultset('Alert');
90 $rs->create({ externalid
=> $self->subscriptionid, borrowernumber
=> $patron->borrowernumber });
93 =head3 remove_subscriber
95 $subscription->remove_subscriber( $subscriber );
97 Remove a subscriber (Koha::Patron) from this subscription
101 sub remove_subscriber
{
102 my ($self, $patron) = @_;
103 my $schema = Koha
::Database
->new->schema;
104 my $rs = $schema->resultset('Alert');
105 my $subscriber = $rs->find({ externalid
=> $self->subscriptionid, borrowernumber
=> $patron->borrowernumber });
106 $subscriber->delete if $subscriber;
114 return 'Subscription';
119 Kyle M Hall <kyle@bywatersolutions.com>