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

(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (+8 lines)
Lines 227-232 $(document).ready(function() { Link Here
227
                                  title += " " + value.subfield;
227
                                  title += " " + value.subfield;
228
                        });
228
                        });
229
229
230
                        if ( oObj.enumchron ) {
231
                            title += ' ' + oObj.enumchron;
232
                        }
233
230
                        title += "</a></span>";
234
                        title += "</a></span>";
231
235
232
                        if ( oObj.author ) {
236
                        if ( oObj.author ) {
Lines 499-504 $(document).ready(function() { Link Here
499
                                      title += " " + value.subfield;
503
                                      title += " " + value.subfield;
500
                            });
504
                            });
501
505
506
                            if ( oObj.enumchron ) {
507
                                title += ' ' + oObj.enumchron;
508
                            }
509
502
                            title += "</a></span>";
510
                            title += "</a></span>";
503
511
504
                            if ( oObj.author ) {
512
                            if ( oObj.author ) {
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (-1 / +2 lines)
Lines 221-226 Using this account is not recommended because some parts of Koha will not functi Link Here
221
221
222
                                                <td class="title">
222
                                                <td class="title">
223
                                                    <a class="title" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% ISSUE.biblionumber %]">[% ISSUE.title |html %] [% FOREACH subtitl IN ISSUE.subtitle %] [% subtitl.subfield %][% END %]</a>
223
                                                    <a class="title" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% ISSUE.biblionumber %]">[% ISSUE.title |html %] [% FOREACH subtitl IN ISSUE.subtitle %] [% subtitl.subfield %][% END %]</a>
224
                                                    [% IF ( ISSUE.enumchron ) %] [% ISSUE.enumchron %][% END %]
224
                                                    <span class="item-details">[% ISSUE.author %]</span>
225
                                                    <span class="item-details">[% ISSUE.author %]</span>
225
                                                </td>
226
                                                </td>
226
                                                [% IF ( ISSUE.overdue ) %]
227
                                                [% IF ( ISSUE.overdue ) %]
Lines 382-388 Using this account is not recommended because some parts of Koha will not functi Link Here
382
                                                <tr>
383
                                                <tr>
383
                                                    <td>
384
                                                    <td>
384
                                                        <a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% i.item.biblio.biblionumber %]">
385
                                                        <a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% i.item.biblio.biblionumber %]">
385
                                                            [% i.item.biblio.title %]
386
                                                            [% i.item.biblio.title %][% IF ( i.item.enumchron ) %] [% i.item.enumchron %][% END %]
386
                                                        </a>
387
                                                        </a>
387
                                                    </td>
388
                                                    </td>
388
389
(-)a/svc/checkouts (-1 / +2 lines)
Lines 97-102 my $sql = ' Link Here
97
        itemlost,
97
        itemlost,
98
        damaged,
98
        damaged,
99
        location,
99
        location,
100
        items.enumchron,
100
101
101
        DATEDIFF( issuedate, CURRENT_DATE() ) AS not_issued_today
102
        DATEDIFF( issuedate, CURRENT_DATE() ) AS not_issued_today
102
    FROM issues
103
    FROM issues
Lines 173-178 while ( my $c = $sth->fetchrow_hashref() ) { Link Here
173
        date_due_overdue    => $c->{date_due_overdue} ? JSON::true : JSON::false,
174
        date_due_overdue    => $c->{date_due_overdue} ? JSON::true : JSON::false,
174
        timestamp           => $c->{timestamp},
175
        timestamp           => $c->{timestamp},
175
        onsite_checkout     => $c->{onsite_checkout},
176
        onsite_checkout     => $c->{onsite_checkout},
177
        enumchron           => $c->{enumchron},
176
        renewals_count      => $renewals_count,
178
        renewals_count      => $renewals_count,
177
        renewals_allowed    => $renewals_allowed,
179
        renewals_allowed    => $renewals_allowed,
178
        renewals_remaining  => $renewals_remaining,
180
        renewals_remaining  => $renewals_remaining,
179
- 

Return to bug 14668