View | Details | Raw Unified | Return to bug 35497
Collapse All | Expand All

(-)a/Koha/Import/Record.pm (+15 lines)
Lines 24-29 use C4::Context; Link Here
24
use C4::Biblio qw(ModBiblio);
24
use C4::Biblio qw(ModBiblio);
25
use C4::AuthoritiesMarc qw(GuessAuthTypeCode ModAuthority);
25
use C4::AuthoritiesMarc qw(GuessAuthTypeCode ModAuthority);
26
use Koha::Database;
26
use Koha::Database;
27
use Koha::ImportBatch;
27
use Koha::Import::Record::Biblios;
28
use Koha::Import::Record::Biblios;
28
use Koha::Import::Record::Auths;
29
use Koha::Import::Record::Auths;
29
use Koha::Import::Record::Matches;
30
use Koha::Import::Record::Matches;
Lines 61-66 sub get_marc_record { Link Here
61
    return $record;
62
    return $record;
62
}
63
}
63
64
65
=head3 import_batch
66
67
Returns the import batch object for this import record
68
69
    my $import_batch = $import_record->import_batch()
70
71
=cut
72
73
sub import_batch {
74
    my ( $self ) = @_;
75
    my $import_batch_rs = $self->_result->import_batch;
76
    return Koha::ImportBatch->_new_from_dbic( $import_batch_rs );
77
}
78
64
=head3 import_biblio
79
=head3 import_biblio
65
80
66
Returns the import biblio object for this import record
81
Returns the import biblio object for this import record
(-)a/Koha/Import/Record/Biblio.pm (+17 lines)
Lines 20-25 use Modern::Perl; Link Here
20
use Carp;
20
use Carp;
21
21
22
use Koha::Database;
22
use Koha::Database;
23
use Koha::Import::Record;
23
24
24
use base qw(Koha::Object);
25
use base qw(Koha::Object);
25
26
Lines 29-34 Koha::Import::Record::Biblio - Koha Import Record Biblio Object class Link Here
29
30
30
=head1 API
31
=head1 API
31
32
33
=head2 Class methods
34
35
=head3 import_record
36
37
Returns the import record object for this import biblio
38
39
    my $import_record = $import_biblio->import_record()
40
41
=cut
42
43
sub import_record {
44
    my ( $self ) = @_;
45
    my $import_record_rs = $self->_result->import_record;
46
    return Koha::Import::Record->_new_from_dbic( $import_record_rs );
47
}
48
32
=head2 Internal methods
49
=head2 Internal methods
33
50
34
=head3 _type
51
=head3 _type
(-)a/catalogue/detail.pl (+14 lines)
Lines 51-56 use Koha::Biblio::ItemGroups; Link Here
51
use Koha::CoverImages;
51
use Koha::CoverImages;
52
use Koha::DateUtils;
52
use Koha::DateUtils;
53
use Koha::Illrequests;
53
use Koha::Illrequests;
54
use Koha::Import::Record::Biblios;
54
use Koha::Items;
55
use Koha::Items;
55
use Koha::ItemTypes;
56
use Koha::ItemTypes;
56
use Koha::Patrons;
57
use Koha::Patrons;
Lines 303-308 if ( C4::Context->preference('AcquisitionDetails') ) { Link Here
303
    );
304
    );
304
}
305
}
305
306
307
if ( C4::Context->preference('ShowImportsOnDetails') || 1 ){
308
    my $import_biblios = Koha::Import::Record::Biblios->search(
309
        {
310
            matched_biblionumber => $biblionumber,
311
        },
312
        { prefetch => 'import_record' }
313
    );
314
315
    $template->param(
316
        import_biblios => $import_biblios,
317
    );
318
}
319
306
if ( C4::Context->preference('suggestion') ) {
320
if ( C4::Context->preference('suggestion') ) {
307
    my $suggestions = Koha::Suggestions->search(
321
    my $suggestions = Koha::Suggestions->search(
308
        {
322
        {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-1 / +31 lines)
Lines 303-308 Link Here
303
[% IF ComponentParts && ComponentParts.size %]<li id="components_tab" role="presentation"><a href="#components"  aria-controls="components" role="tab" data-toggle="tab">Components ([% ComponentParts.size | html %])</a></li>[% END %]
303
[% IF ComponentParts && ComponentParts.size %]<li id="components_tab" role="presentation"><a href="#components"  aria-controls="components" role="tab" data-toggle="tab">Components ([% ComponentParts.size | html %])</a></li>[% END %]
304
[% IF ( subscriptionsnumber ) %]<li role="presentation"><a href="#subscriptions"  aria-controls="subscriptions" role="tab" data-toggle="tab">Subscriptions</a></li>[% END %]
304
[% IF ( subscriptionsnumber ) %]<li role="presentation"><a href="#subscriptions"  aria-controls="subscriptions" role="tab" data-toggle="tab">Subscriptions</a></li>[% END %]
305
[% IF Koha.Preference('AcquisitionDetails') %]<li role="presentation"><a href="#acq_details"  aria-controls="acq_details" role="tab" data-toggle="tab">Acquisition details</a></li>[% END %]
305
[% IF Koha.Preference('AcquisitionDetails') %]<li role="presentation"><a href="#acq_details"  aria-controls="acq_details" role="tab" data-toggle="tab">Acquisition details</a></li>[% END %]
306
[% IF Koha.Preference('ShowImportOnDetails') || 1 %]<li role="presentation"><a href="#import_biblios"  aria-controls="import_biblios" role="tab" data-toggle="tab">Imported records</a></li>[% END %]
306
[% IF suggestions.count %]<li role="presentation"><a href="#suggestion_details"  aria-controls="suggestion_details" role="tab" data-toggle="tab">Suggestion details</a></li>[% END %]
307
[% IF suggestions.count %]<li role="presentation"><a href="#suggestion_details"  aria-controls="suggestion_details" role="tab" data-toggle="tab">Suggestion details</a></li>[% END %]
307
[% IF ( FRBRizeEditions ) %][% IF ( XISBNS ) %]<li role="presentation"><a href="#editions"  aria-controls="editions" role="tab" data-toggle="tab">Editions</a></li>[% END %][% END %]
308
[% IF ( FRBRizeEditions ) %][% IF ( XISBNS ) %]<li role="presentation"><a href="#editions"  aria-controls="editions" role="tab" data-toggle="tab">Editions</a></li>[% END %][% END %]
308
[% IF ( ( Koha.Preference('CatalogConcerns') || Koha.Preference('OpacCatalogConcerns') ) && CAN_user_editcatalogue_edit_catalogue ) %]<li role="presentation"><a href="#concerns" aria-controls="concerns" role="tab" data-toggle="tab">Concerns ([% biblio.tickets.count | html %])</a></li>[% END %]
309
[% IF ( ( Koha.Preference('CatalogConcerns') || Koha.Preference('OpacCatalogConcerns') ) && CAN_user_editcatalogue_edit_catalogue ) %]<li role="presentation"><a href="#concerns" aria-controls="concerns" role="tab" data-toggle="tab">Concerns ([% biblio.tickets.count | html %])</a></li>[% END %]
Lines 920-925 Link Here
920
</div>
921
</div>
921
[% END %]
922
[% END %]
922
923
924
[% IF Koha.Preference('ShowImportsOnDetails') || 1 %]
925
<div role="tabpanel" class="tab-pane" id="import_biblios">
926
  [% IF import_biblios.count || 1 %]
927
    <table id="impots">
928
      <thead>
929
        <tr>
930
          <th>Batch</th>
931
          <th>Record</th>
932
        </tr>
933
      </thead>
934
      <tbody>
935
      [% FOR import_biblio IN import_biblios %]
936
        [% SET import_record = import_biblio.import_record %]
937
          <tr>
938
            <td>
939
                <a href="/cgi-bin/koha/tools/manage-marc-import.pl?import_batch_id=[% import_record.import_batch_id | uri %]" title="Import batch">[% import_record.import_batch.file_name | html %]</a>
940
            </td>
941
            <td>
942
                [% import_biblio.title | html %]
943
            </td>
944
          </tr>
945
      [% END %]
946
      </tbody>
947
    </table>
948
  [% ELSE %]
949
    <span class="noorder">There is no order for this bibliographic record.</span>
950
  [% END %]
951
</div>
952
[% END %]
953
923
[% IF suggestions.count %]
954
[% IF suggestions.count %]
924
    <div role="tabpanel" class="tab-pane" id="suggestion_details">
955
    <div role="tabpanel" class="tab-pane" id="suggestion_details">
925
        [% IF nb_archived_suggestions > 0 %]
956
        [% IF nb_archived_suggestions > 0 %]
926
- 

Return to bug 35497