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

(-)a/Koha/Template/Plugin/KohaBranchName.pm (-1 / +1 lines)
Lines 1-4 Link Here
1
package Koha::Template::Plugin::KohaBranchName;
1
package Koha::Template::Plugin::BranchName;
2
2
3
# Copyright Bywater Solutions 2012
3
# Copyright Bywater Solutions 2012
4
4
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-3 / +2 lines)
Lines 1-5 Link Here
1
[% USE KohaDates %]
1
[% USE KohaDates %]
2
[% USE KohaBranchName %]
2
[% USE BranchName %]
3
3
4
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
5
<title>Koha &rsaquo; Circulation &rsaquo; Check in [% title |html %]</title>
5
<title>Koha &rsaquo; Circulation &rsaquo; Check in [% title |html %]</title>
Lines 92-98 $(document).ready(function () { Link Here
92
</div>
92
</div>
93
[% END %]
93
[% END %]
94
<!-- case of a mistake in transfer loop -->
94
<!-- case of a mistake in transfer loop -->
95
[% IF ( WrongTransfer ) %]<div id="return2" class="dialog message"><!-- WrongTransfer --><h3>Please return <a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&amp;biblionumber=[% itembiblionumber %]">[% title |html %]</a> to [% TransferWaitingAt | $KohaBranchName %]</h3><h3><a href="#" onclick="Dopop('transfer-slip.pl?transferitem=[% itemnumber %]&amp;&amp;branchcode=[% homebranch %]&amp;op=slip'); return true;">Print slip</a> or <a href="/cgi-bin/koha/circ/returns.pl?itemnumber=[% itemnumber %]&amp;canceltransfer=1">Cancel transfer</a></h3>
95
[% IF ( WrongTransfer ) %]<div id="return2" class="dialog message"><!-- WrongTransfer --><h3>Please return <a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&amp;biblionumber=[% itembiblionumber %]">[% title |html %]</a> to [% TransferWaitingAt | $BranchName %]</h3><h3><a href="#" onclick="Dopop('transfer-slip.pl?transferitem=[% itemnumber %]&amp;&amp;branchcode=[% homebranch %]&amp;op=slip'); return true;">Print slip</a> or <a href="/cgi-bin/koha/circ/returns.pl?itemnumber=[% itemnumber %]&amp;canceltransfer=1">Cancel transfer</a></h3>
96
[% IF ( wborcnum ) %]<h5>Hold for:</h5>
96
[% IF ( wborcnum ) %]<h5>Hold for:</h5>
97
        <ul><li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]">
97
        <ul><li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]">
98
            [% borsurname %], [% borfirstname %]</a> ([% borcnum %])</li>
98
            [% borsurname %], [% borfirstname %]</a> ([% borcnum %])</li>
99
- 

Return to bug 8004