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

(-)a/circ/branchtransfers.pl (-1 / +6 lines)
Lines 35-40 use Koha::AuthorisedValues; Link Here
35
use Koha::Holds;
35
use Koha::Holds;
36
use Koha::Items;
36
use Koha::Items;
37
use Koha::Patrons;
37
use Koha::Patrons;
38
use Koha::Checkouts;
38
39
39
###############################################
40
###############################################
40
#  Getting state
41
#  Getting state
Lines 220-225 foreach my $code ( keys %$messages ) { Link Here
220
221
221
# use Data::Dumper;
222
# use Data::Dumper;
222
# warn "FINAL ============= ".Dumper(@trsfitemloop);
223
# warn "FINAL ============= ".Dumper(@trsfitemloop);
224
225
my $pending_checkout_notes = Koha::Checkouts->search({ noteseen => 0 })->count;
226
223
$template->param(
227
$template->param(
224
    found                   => $found,
228
    found                   => $found,
225
    reserved                => $reserved,
229
    reserved                => $reserved,
Lines 234-240 $template->param( Link Here
234
    setwaiting              => $setwaiting,
238
    setwaiting              => $setwaiting,
235
    trsfitemloop            => \@trsfitemloop,
239
    trsfitemloop            => \@trsfitemloop,
236
    errmsgloop              => \@errmsgloop,
240
    errmsgloop              => \@errmsgloop,
237
    CircAutocompl           => C4::Context->preference("CircAutocompl")
241
    CircAutocompl           => C4::Context->preference("CircAutocompl"),
242
    pending_checkout_notes  => $pending_checkout_notes,
238
);
243
);
239
244
240
# Checking if there is a Fast Cataloging Framework
245
# 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