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

(-)a/circ/branchtransfers.pl (-1 / +6 lines)
Lines 36-41 use Koha::AuthorisedValues; Link Here
36
use Koha::Holds;
36
use Koha::Holds;
37
use Koha::Items;
37
use Koha::Items;
38
use Koha::Patrons;
38
use Koha::Patrons;
39
use Koha::Checkouts;
39
40
40
###############################################
41
###############################################
41
#  Getting state
42
#  Getting state
Lines 228-233 foreach my $code ( keys %$messages ) { Link Here
228
229
229
# use Data::Dumper;
230
# use Data::Dumper;
230
# warn "FINAL ============= ".Dumper(@trsfitemloop);
231
# warn "FINAL ============= ".Dumper(@trsfitemloop);
232
233
my $pending_checkout_notes = Koha::Checkouts->search({ noteseen => 0 })->count;
234
231
$template->param(
235
$template->param(
232
    found                   => $found,
236
    found                   => $found,
233
    reserved                => $reserved,
237
    reserved                => $reserved,
Lines 242-248 $template->param( Link Here
242
    setwaiting              => $setwaiting,
246
    setwaiting              => $setwaiting,
243
    trsfitemloop            => \@trsfitemloop,
247
    trsfitemloop            => \@trsfitemloop,
244
    errmsgloop              => \@errmsgloop,
248
    errmsgloop              => \@errmsgloop,
245
    CircAutocompl           => C4::Context->preference("CircAutocompl")
249
    CircAutocompl           => C4::Context->preference("CircAutocompl"),
250
    pending_checkout_notes  => $pending_checkout_notes,
246
);
251
);
247
252
248
# Checking if there is a Fast Cataloging Framework
253
# Checking if there is a Fast Cataloging Framework
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/checkout-notes.tt (-3 / +2 lines)
Lines 131-137 Link Here
131
                                        <td>[% note.item.biblio.title %] - [% note.item.biblio.author %] (<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% note.item.biblionumber %]">[% note.item.barcode %]</a>)</td>
131
                                        <td>[% note.item.biblio.title %] - [% note.item.biblio.author %] (<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% note.item.biblionumber %]">[% note.item.barcode %]</a>)</td>
132
                                        <td>[% note.note %]</td>
132
                                        <td>[% note.note %]</td>
133
                                        <td>[% note.notedate | $KohaDates %]</td>
133
                                        <td>[% note.notedate | $KohaDates %]</td>
134
                                        <td>[% IF note.borrower.title %][% note.borrower.title [% END %][% note.borrower.firstname %] [% note.borrower.surname %] (<a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% note.borrower.borrowernumber %]">[% note.borrower.cardnumber %]</a>)</td>
134
                                        <td>[% IF note.patron.title %][% note.patron.title [% END %][% note.patron.firstname %] [% note.patron.surname %] (<a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% note.patron.borrowernumber %]">[% note.patron.cardnumber %]</a>)</td>
135
                                        <td>
135
                                        <td>
136
                                            [% IF ( note.noteseen == 0 ) %]
136
                                            [% IF ( note.noteseen == 0 ) %]
137
                                                <span id="status_[% note.issue_id %]">Not seen</span>
137
                                                <span id="status_[% note.issue_id %]">Not seen</span>
Lines 162-168 Link Here
162
162
163
            [% END %] <!-- selected_count -->
163
            [% END %] <!-- selected_count -->
164
164
165
        </div> <!-- yui-imain -->
165
        </div> <!-- yui-main -->
166
166
167
        [% IF Koha.Preference('CircSidebar') %]
167
        [% IF Koha.Preference('CircSidebar') %]
168
        </div>
168
        </div>
169
- 

Return to bug 17698