Bug 36618: Make biblio creation optional for ERM local titles
[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, $args ) = @_;
42
43     my $create_linked_biblio = $args->{create_linked_biblio} || 0;
44
45     # FIXME This is terrible and ugly, we need to:
46     # * Provide a mapping for each attribute of title
47     # * Create a txn
48
49     if ($create_linked_biblio) {
50
51         # If the 'title' is already linked to a biblio, then we update the title subfield only
52         if ( $self->biblio_id ) {
53             my $biblio = Koha::Biblios->find( $self->biblio_id );
54             my ( $title_tag, $title_subfield ) = GetMarcFromKohaField('biblio.title');
55             my $record      = $biblio->metadata->record();
56             my $title_field = $record->field($title_tag);
57             $title_field->update( $title_subfield => $self->publication_title );
58             C4::Biblio::ModBiblio( $record, $self->biblio_id, '' );
59         } else {
60
61             # If it's not linked, we create a simple biblio and save the biblio id to the 'title'
62             my $marc_record = TransformKohaToMarc(
63                 {
64                     'biblio.title' => $self->publication_title,
65                 }
66             );
67             my ($biblio_id) = C4::Biblio::AddBiblio( $marc_record, '' );
68             $self->biblio_id($biblio_id);
69         }
70     }
71
72     $self = $self->SUPER::store;
73     return $self;
74
75 }
76
77 =head3 resources
78
79 Returns the resources linked to this title
80
81 =cut
82
83 sub resources {
84     my ( $self, $resources ) = @_;
85
86     if ($resources) {
87         my $schema = $self->_result->result_source->schema;
88         $schema->txn_do(
89             sub {
90                 $self->resources->delete;
91
92                 # Cannot use the dbic RS, we need to trigger ->store overwrite
93                 for my $resource (@$resources) {
94                     Koha::ERM::EHoldings::Resource->new( { %$resource, title_id => $self->title_id } )->store;
95                 }
96             }
97         );
98     }
99     my $resources_rs = $self->_result->erm_eholdings_resources;
100     return Koha::ERM::EHoldings::Resources->_new_from_dbic($resources_rs);
101 }
102
103 =head2 Internal methods
104
105 =head3 _type
106
107 =cut
108
109 sub _type {
110     return 'ErmEholdingsTitle';
111 }
112
113 1;