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

(-)a/circ/returns.pl (-2 lines)
Lines 263-271 if ($barcode) { Link Here
263
    $template->param(
263
    $template->param(
264
        title            => $biblio->{'title'},
264
        title            => $biblio->{'title'},
265
        homebranch       => $biblio->{'homebranch'},
265
        homebranch       => $biblio->{'homebranch'},
266
        homebranchname   => GetBranchName( $biblio->{'homebranch'} ),
267
        returnbranch     => $returnbranch,
266
        returnbranch     => $returnbranch,
268
        returnbranchname => GetBranchName( $returnbranch ),
269
        author           => $biblio->{'author'},
267
        author           => $biblio->{'author'},
270
        itembarcode      => $biblio->{'barcode'},
268
        itembarcode      => $biblio->{'barcode'},
271
        itemtype         => $biblio->{'itemtype'},
269
        itemtype         => $biblio->{'itemtype'},
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-3 / +2 lines)
Lines 264-270 $(document).ready(function () { Link Here
264
    [% IF ( transfer ) %]
264
    [% IF ( transfer ) %]
265
    <!-- transfer: item with no reservation, must be returned according to home library circulation rules -->
265
    <!-- transfer: item with no reservation, must be returned according to home library circulation rules -->
266
	<div id="return1" class="dialog message">
266
	<div id="return1" class="dialog message">
267
            <h3>Please return <a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&amp;biblionumber=[% itembiblionumber %]">[% title or "item" |html %]</a> to [% returnbranchname %]<br/>( <a href="#" onclick="Dopop('transfer-slip.pl?transferitem=[% itemnumber %]&amp;branchcode=[% returnbranch %]&amp;op=slip'); return true;">Print slip</a> )</h3>
267
            <h3>Please return <a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&amp;biblionumber=[% itembiblionumber %]">[% title or "item" |html %]</a> to [% Branches.GetName( returnbranchname ) %]<br/>( <a href="#" onclick="Dopop('transfer-slip.pl?transferitem=[% itemnumber %]&amp;branchcode=[% returnbranch %]&amp;op=slip'); return true;">Print slip</a> )</h3>
268
        </div>
268
        </div>
269
        [% IF ( soundon ) %]
269
        [% IF ( soundon ) %]
270
        <audio src="[% interface %]/[% theme %]/sound/opening.ogg" autoplay="autoplay" autobuffer="autobuffer"></audio>
270
        <audio src="[% interface %]/[% theme %]/sound/opening.ogg" autoplay="autoplay" autobuffer="autobuffer"></audio>
Lines 276-282 $(document).ready(function () { Link Here
276
        [% IF ( soundon ) %]
276
        [% IF ( soundon ) %]
277
        <audio src="[% interface %]/[% theme %]/sound/opening.ogg" autoplay="autoplay" autobuffer="autobuffer"></audio>
277
        <audio src="[% interface %]/[% theme %]/sound/opening.ogg" autoplay="autoplay" autobuffer="autobuffer"></audio>
278
        [% END %]
278
        [% END %]
279
	<div id="item-transfer" class="dialog message"><h3> This item needs to be transferred to [% returnbranchname %]</h3>
279
	<div id="item-transfer" class="dialog message"><h3> This item needs to be transferred to [% Branches.GetName( returnbranchname ) %]</h3>
280
    Transfer now?<br />
280
    Transfer now?<br />
281
    <form method="post" action="returns.pl" name="mainform" id="mainform">
281
    <form method="post" action="returns.pl" name="mainform" id="mainform">
282
    [% IF itemnumber %]
282
    [% IF itemnumber %]
283
- 

Return to bug 7981