Bug 32030: Add links to vendors
[srvgit] / Koha / ERM / EHoldings / Package.pm
1 package Koha::ERM::EHoldings::Package;
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18 use Modern::Perl;
19
20 use Koha::Database;
21
22 use base qw(Koha::Object);
23
24 use Koha::Acquisition::Booksellers;
25 use Koha::ERM::EHoldings::Package::Agreements;
26 use Koha::ERM::EHoldings::Resources;
27
28 =head1 NAME
29
30 Koha::ERM::EHoldings::Package - Koha ERM Package Object class
31
32 =head1 API
33
34 =head2 Class Methods
35
36 =head3 package_agreements
37
38 Returns the package agreements link for this package
39
40 =cut
41
42 sub package_agreements {
43     my ( $self, $package_agreements ) = @_;
44
45     if ( $package_agreements ) {
46         my $schema = $self->_result->result_source->schema;
47         $schema->txn_do(
48             sub {
49                 $self->package_agreements->delete;
50
51                 for my $package_agreement (@$package_agreements) {
52                     $self->_result->add_to_erm_eholdings_packages_agreements($package_agreement);
53                 }
54             }
55         );
56     }
57
58     my $agreements_rs = $self->_result->erm_eholdings_packages_agreements;
59     return Koha::ERM::EHoldings::Package::Agreements->_new_from_dbic($agreements_rs);
60 }
61
62 =head3 resources
63
64 Returns the resources from this package
65
66 =cut
67
68 sub resources {
69     my ( $self ) = @_;
70     my $rs = $self->_result->erm_eholdings_resources;
71     return Koha::ERM::EHoldings::Resources->_new_from_dbic($rs);
72 }
73
74 =head3 vendor
75
76 Returns the vendor
77
78 =cut
79
80 sub vendor {
81     my ( $self ) = @_;
82     my $rs = $self->_result->vendor;
83     return unless $rs;
84     return Koha::Acquisition::Bookseller->_new_from_dbic($rs);
85 }
86
87 =head2 Internal methods
88
89 =head3 _type
90
91 =cut
92
93 sub _type {
94     return 'ErmEholdingsPackage';
95 }
96
97 1;