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

(-)a/circ/returns.pl (-2 lines)
Lines 272-280 if ($barcode) { Link Here
272
    $template->param(
272
    $template->param(
273
        title            => $biblio->{'title'},
273
        title            => $biblio->{'title'},
274
        homebranch       => $biblio->{'homebranch'},
274
        homebranch       => $biblio->{'homebranch'},
275
        homebranchname   => GetBranchName( $biblio->{'homebranch'} ),
276
        returnbranch     => $returnbranch,
275
        returnbranch     => $returnbranch,
277
        returnbranchname => GetBranchName( $returnbranch ),
278
        author           => $biblio->{'author'},
276
        author           => $biblio->{'author'},
279
        itembarcode      => $biblio->{'barcode'},
277
        itembarcode      => $biblio->{'barcode'},
280
        itemtype         => $biblio->{'itemtype'},
278
        itemtype         => $biblio->{'itemtype'},
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-3 / +2 lines)
Lines 277-283 $(document).ready(function () { Link Here
277
    [% IF ( transfer ) %]
277
    [% IF ( transfer ) %]
278
    <!-- transfer: item with no reservation, must be returned according to home library circulation rules -->
278
    <!-- transfer: item with no reservation, must be returned according to home library circulation rules -->
279
	<div id="return1" class="dialog message">
279
	<div id="return1" class="dialog message">
280
            <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>
280
            <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>
281
        </div>
281
        </div>
282
        [% IF ( soundon ) %]
282
        [% IF ( soundon ) %]
283
        <audio src="[% interface %]/[% theme %]/sound/opening.ogg" autoplay="autoplay" autobuffer="autobuffer"></audio>
283
        <audio src="[% interface %]/[% theme %]/sound/opening.ogg" autoplay="autoplay" autobuffer="autobuffer"></audio>
Lines 289-295 $(document).ready(function () { Link Here
289
        [% IF ( soundon ) %]
289
        [% IF ( soundon ) %]
290
        <audio src="[% interface %]/[% theme %]/sound/opening.ogg" autoplay="autoplay" autobuffer="autobuffer"></audio>
290
        <audio src="[% interface %]/[% theme %]/sound/opening.ogg" autoplay="autoplay" autobuffer="autobuffer"></audio>
291
        [% END %]
291
        [% END %]
292
	<div id="item-transfer" class="dialog message"><h3> This item needs to be transferred to [% returnbranchname %]</h3>
292
	<div id="item-transfer" class="dialog message"><h3> This item needs to be transferred to [% Branches.GetName( returnbranchname ) %]</h3>
293
    Transfer now?<br />
293
    Transfer now?<br />
294
    <form method="post" action="returns.pl" name="mainform" id="mainform">
294
    <form method="post" action="returns.pl" name="mainform" id="mainform">
295
    [% IF itemnumber %]
295
    [% IF itemnumber %]
296
- 

Return to bug 7981