Bug 35115: (QA follow-up):
[koha.git] / Koha / ERM / EHoldings / Title.pm
1 package Koha::ERM::EHoldings::Title;
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 C4::Biblio qw( AddBiblio TransformKohaToMarc GetMarcFromKohaField );
25
26 use Koha::ERM::EHoldings::Resources;
27
28 =head1 NAME
29
30 Koha::ERM::EHoldings::Title - Koha ERM Title Object class
31
32 =head1 API
33
34 =head2 Class Methods
35
36 =head3 store
37
38 =cut
39
40 sub store {
41     my ($self) = @_;
42
43     # FIXME This is terrible and ugly, we need to:
44     # * Provide a mapping for each attribute of title
45     # * Create a txn
46
47     # If the 'title' is already linked to a biblio, then we update the title subfield only
48     if ( $self->biblio_id ) {
49         my $biblio = Koha::Biblios->find( $self->biblio_id );
50         my ( $title_tag, $title_subfield ) = GetMarcFromKohaField('biblio.title');
51         my $record      = $biblio->metadata->record();
52         my $title_field = $record->field($title_tag);
53         $title_field->update( $title_subfield => $self->publication_title );
54         C4::Biblio::ModBiblio( $record, $self->biblio_id, '' );
55     } else {
56
57         # If it's not linked, we create a simple biblio and save the biblio id to the 'title'
58         my $marc_record = TransformKohaToMarc(
59             {
60                 'biblio.title' => $self->publication_title,
61             }
62         );
63         my ($biblio_id) = C4::Biblio::AddBiblio( $marc_record, '' );
64         $self->biblio_id($biblio_id);
65     }
66
67     $self = $self->SUPER::store;
68     return $self;
69
70 }
71
72 =head3 resources
73
74 Returns the resources linked to this title
75
76 =cut
77
78 sub resources {
79     my ( $self, $resources ) = @_;
80
81     if ($resources) {
82         my $schema = $self->_result->result_source->schema;
83         $schema->txn_do(
84             sub {
85                 $self->resources->delete;
86
87                 # Cannot use the dbic RS, we need to trigger ->store overwrite
88                 for my $resource (@$resources) {
89                     Koha::ERM::EHoldings::Resource->new( { %$resource, title_id => $self->title_id } )->store;
90                 }
91             }
92         );
93     }
94     my $resources_rs = $self->_result->erm_eholdings_resources;
95     return Koha::ERM::EHoldings::Resources->_new_from_dbic($resources_rs);
96 }
97
98 =head2 Internal methods
99
100 =head3 _type
101
102 =cut
103
104 sub _type {
105     return 'ErmEholdingsTitle';
106 }
107
108 1;