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

(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tt (-3 / +3 lines)
Lines 177-183 var MSG_CONFIRM_RESUME_HOLDS = _("Are you sure you want to resume all suspended Link Here
177
177
178
</td>[% END %]
178
</td>[% END %]
179
179
180
                <td class="title"><a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% ISSUE.biblionumber %]">[% ISSUE.title |html %]</a><span class="item-details">
180
                <td class="title"><a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% ISSUE.biblionumber %]">[% ISSUE.title |html %][% FOREACH subtitl IN ISSUE.subtitle %] [% subtitl.subfield %][% END %]</a><span class="item-details">
181
                        [% ISSUE.author %]
181
                        [% ISSUE.author %]
182
                    </span></td>
182
                    </span></td>
183
                [% IF ( ISSUE.overdue ) %]
183
                [% IF ( ISSUE.overdue ) %]
Lines 323-329 var MSG_CONFIRM_RESUME_HOLDS = _("Are you sure you want to resume all suspended Link Here
323
[% END %]
323
[% END %]
324
</td>[% END %]
324
</td>[% END %]
325
325
326
<td><a href="/cgi-bin/koha/opac-detail.pl?bib=[% OVERDUE.biblionumber %]">[% OVERDUE.title |html %]</a> <span class="item-details">[% OVERDUE.author %]</span></td>
326
<td><a href="/cgi-bin/koha/opac-detail.pl?bib=[% OVERDUE.biblionumber %]">[% OVERDUE.title |html %][% FOREACH subtitl IN OVERDUE.subtitle %] [% subtitl.subfield %][% END %]</a> <span class="item-details">[% OVERDUE.author %]</span></td>
327
327
328
[% UNLESS ( item_level_itypes ) %]<td>[% IF ( OVERDUE.imageurl ) %]<img src="[% OVERDUE.imageurl %]" title="[% OVERDUE.description %]" alt="[% OVERDUE.description %]" />[% END %] [% OVERDUE.description %]</td>[% END %]
328
[% UNLESS ( item_level_itypes ) %]<td>[% IF ( OVERDUE.imageurl ) %]<img src="[% OVERDUE.imageurl %]" title="[% OVERDUE.description %]" alt="[% OVERDUE.description %]" />[% END %] [% OVERDUE.description %]</td>[% END %]
329
[% IF ( show_barcode ) %]<td>[% OVERDUE.barcode %]</td>[% END %]
329
[% IF ( show_barcode ) %]<td>[% OVERDUE.barcode %]</td>[% END %]
Lines 379-385 var MSG_CONFIRM_RESUME_HOLDS = _("Are you sure you want to resume all suspended Link Here
379
                    [% ELSE %]
379
                    [% ELSE %]
380
                            <tr>
380
                            <tr>
381
                    [% END %]
381
                    [% END %]
382
                <td class="title"><a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% RESERVE.biblionumber %]">[% RESERVE.reserves_title %]</a>
382
                <td class="title"><a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% RESERVE.biblionumber %]">[% RESERVE.reserves_title %][% FOREACH subtitl IN RESERVE.subtitle %] [% subtitl.subfield %][% END %]</a>
383
                    [% RESERVE.author %]
383
                    [% RESERVE.author %]
384
                </td>
384
                </td>
385
                <td class="reservedate"><span title="[% RESERVE.reservedate %]">[% RESERVE.reservedate | $KohaDates %]</span></td>
385
                <td class="reservedate"><span title="[% RESERVE.reservedate %]">[% RESERVE.reservedate | $KohaDates %]</span></td>
(-)a/opac/opac-user.pl (-3 / +2 lines)
Lines 176-182 if ($issues){ Link Here
176
            }
176
            }
177
        }
177
        }
178
        $issue->{'charges'} = $charges;
178
        $issue->{'charges'} = $charges;
179
179
        $issue->{'subtitle'} = GetRecordValue('subtitle', GetMarcBiblio($issue->{'biblionumber'}), GetFrameworkCode($issue->{'biblionumber'}));
180
        # check if item is renewable
180
        # check if item is renewable
181
        my ($status,$renewerror) = CanBookBeRenewed( $borrowernumber, $issue->{'itemnumber'} );
181
        my ($status,$renewerror) = CanBookBeRenewed( $borrowernumber, $issue->{'itemnumber'} );
182
        ($issue->{'renewcount'},$issue->{'renewsallowed'},$issue->{'renewsleft'}) = GetRenewCount($borrowernumber, $issue->{'itemnumber'});
182
        ($issue->{'renewcount'},$issue->{'renewsallowed'},$issue->{'renewsleft'}) = GetRenewCount($borrowernumber, $issue->{'itemnumber'});
Lines 256-262 foreach my $res (@reserves) { Link Here
256
    if ( $res->{'expirationdate'} eq '0000-00-00' ) {
256
    if ( $res->{'expirationdate'} eq '0000-00-00' ) {
257
      $res->{'expirationdate'} = '';
257
      $res->{'expirationdate'} = '';
258
    }
258
    }
259
259
    $res->{'subtitle'} = GetRecordValue('subtitle', GetMarcBiblio($res->{'biblionumber'}), GetFrameworkCode($res->{'biblionumber'}));
260
    $res->{'waiting'} = 1 if $res->{'found'} eq 'W';
260
    $res->{'waiting'} = 1 if $res->{'found'} eq 'W';
261
    $res->{'branch'} = $branches->{ $res->{'branchcode'} }->{'branchname'};
261
    $res->{'branch'} = $branches->{ $res->{'branchcode'} }->{'branchname'};
262
    my $biblioData = GetBiblioData($res->{'biblionumber'});
262
    my $biblioData = GetBiblioData($res->{'biblionumber'});
263
- 

Return to bug 10672