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

(-)a/circ/circulation.pl (+2 lines)
Lines 39-44 use C4::Context; Link Here
39
use CGI::Session;
39
use CGI::Session;
40
use C4::Members::Attributes qw(GetBorrowerAttributes);
40
use C4::Members::Attributes qw(GetBorrowerAttributes);
41
use Koha::DateUtils;
41
use Koha::DateUtils;
42
use Koha::Borrower::Modifications;
42
43
43
use Date::Calc qw(
44
use Date::Calc qw(
44
  Today
45
  Today
Lines 740-745 $template->param( Link Here
740
    export_remove_fields      => C4::Context->preference("ExportRemoveFields"),
741
    export_remove_fields      => C4::Context->preference("ExportRemoveFields"),
741
    export_with_csv_profile   => C4::Context->preference("ExportWithCsvProfile"),
742
    export_with_csv_profile   => C4::Context->preference("ExportWithCsvProfile"),
742
    canned_bor_notes_loop     => $canned_notes,
743
    canned_bor_notes_loop     => $canned_notes,
744
    borrower_modifications    => Koha::Borrower::Modifications->GetModifications({ borrowernumber => $borrowernumber }),
743
);
745
);
744
746
745
output_html_with_http_headers $query, $cookie, $template->output;
747
output_html_with_http_headers $query, $cookie, $template->output;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-2 / +8 lines)
Lines 569-575 No patron matched <span class="ex">[% message %]</span> Link Here
569
    [% IF ( DisplayClearScreenButton ) %]
569
    [% IF ( DisplayClearScreenButton ) %]
570
        <span id="clearscreen"><a href="/cgi-bin/koha/circ/circulation.pl" title="Clear screen">x</a></span>
570
        <span id="clearscreen"><a href="/cgi-bin/koha/circ/circulation.pl" title="Clear screen">x</a></span>
571
    [% END %]
571
    [% END %]
572
573
    <label for="barcode">Checking out to [% INCLUDE 'patron-title.inc' %]</label>
572
    <label for="barcode">Checking out to [% INCLUDE 'patron-title.inc' %]</label>
574
573
575
	<div class="hint">Enter item barcode:</div>
574
	<div class="hint">Enter item barcode:</div>
Lines 620-625 No patron matched <span class="ex">[% message %]</span> Link Here
620
		[% ELSE %]Attention:[% END %]</h3>
619
		[% ELSE %]Attention:[% END %]</h3>
621
		<ul>
620
		<ul>
622
621
622
			[% IF ( borrower_modifications ) %]
623
			<li><span class="circ-hlt">Pending modifications:</span> Patron has pending modifications.
624
                            [% IF ( CAN_user_borrowers ) %]
625
                                    <a href="/cgi-bin/koha/members/members-update.pl">View all pending patron modifications</a>
626
                            [% END %]
627
			</li>
628
			[% END %]
629
623
			[% IF ( warndeparture ) %]
630
			[% IF ( warndeparture ) %]
624
			<li><span class="circ-hlt">Expiration:</span> Patron's card will expire soon.
631
			<li><span class="circ-hlt">Expiration:</span> Patron's card will expire soon.
625
			Patron's card expires on [% expiry %] <a href="/cgi-bin/koha/members/setstatus.pl?borrowernumber=[% borrowernumber %]&amp;cardnumber=[% cardnumber %]&amp;destination=circ&amp;reregistration=y">Renew</a> or <a href="/cgi-bin/koha/members/memberentry.pl?op=modify&amp;destination=circ&amp;borrowernumber=[% borrowernumber %]&amp;categorycode=[% categorycode %]">Edit Details</a>
632
			Patron's card expires on [% expiry %] <a href="/cgi-bin/koha/members/setstatus.pl?borrowernumber=[% borrowernumber %]&amp;cardnumber=[% cardnumber %]&amp;destination=circ&amp;reregistration=y">Renew</a> or <a href="/cgi-bin/koha/members/memberentry.pl?op=modify&amp;destination=circ&amp;borrowernumber=[% borrowernumber %]&amp;categorycode=[% categorycode %]">Edit Details</a>
626
- 

Return to bug 7067