]> git.koha-community.org Git - koha.git/blob - Koha/ERM/EHoldings/Package.pm
Bug 32030: Rename Package|Resource|Title
[koha.git] / 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::ERM::EHoldings::Package::Agreements;
25
26 =head1 NAME
27
28 Koha::ERM::EHoldings::Package - Koha ERM Package Object class
29
30 =head1 API
31
32 =head2 Class Methods
33
34 =head3 package_agreements
35
36 Returns the package agreements link for this package
37
38 =cut
39
40 sub package_agreements {
41     my ( $self, $package_agreements ) = @_;
42
43     if ( $package_agreements ) {
44         my $schema = $self->_result->result_source->schema;
45         $schema->txn_do(
46             sub {
47                 $self->package_agreements->delete;
48
49                 for my $package_agreement (@$package_agreements) {
50                     $self->_result->add_to_erm_eholdings_packages_agreements($package_agreement);
51                 }
52             }
53         );
54     }
55
56     my $agreements_rs = $self->_result->erm_eholdings_packages_agreements;
57     return Koha::ERM::EHoldings::Package::Agreements->_new_from_dbic($agreements_rs);
58 }
59
60 =head2 Internal methods
61
62 =head3 _type
63
64 =cut
65
66 sub _type {
67     return 'ErmEholdingsPackage';
68 }
69
70 1;