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

(-)a/circ/circulation.pl (+1 lines)
Lines 296-301 if ($barcode) { Link Here
296
        unless($issueconfirmed){
296
        unless($issueconfirmed){
297
            #  Get the item title for more information
297
            #  Get the item title for more information
298
            my $getmessageiteminfo  = GetBiblioFromItemNumber(undef,$barcode);
298
            my $getmessageiteminfo  = GetBiblioFromItemNumber(undef,$barcode);
299
	    $template->{VARS}->{'additional_materials'} = $getmessageiteminfo->{'materials'};
299
            $template->param( itemhomebranch => $getmessageiteminfo->{'homebranch'} );
300
            $template->param( itemhomebranch => $getmessageiteminfo->{'homebranch'} );
300
301
301
            # pass needsconfirmation to template if issuing is possible and user hasn't yet confirmed.
302
            # pass needsconfirmation to template if issuing is possible and user hasn't yet confirmed.
(-)a/circ/returns.pl (+1 lines)
Lines 238-243 if ($barcode) { Link Here
238
        itemtype         => $biblio->{'itemtype'},
238
        itemtype         => $biblio->{'itemtype'},
239
        ccode            => $biblio->{'ccode'},
239
        ccode            => $biblio->{'ccode'},
240
        itembiblionumber => $biblio->{'biblionumber'},    
240
        itembiblionumber => $biblio->{'biblionumber'},    
241
	additional_materials => $biblio->{'materials'}
241
    );
242
    );
242
243
243
    my %input = (
244
    my %input = (
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (+7 lines)
Lines 226-231 function refocus(calendar) { Link Here
226
</div>
226
</div>
227
227
228
[% IF ( dateexpiry ) %]<div class="dialog message">Patron's account has been renewed until [% dateexpiry %]</div>[% END %]
228
[% IF ( dateexpiry ) %]<div class="dialog message">Patron's account has been renewed until [% dateexpiry %]</div>[% END %]
229
230
[% IF additional_materials %]
231
    <div class="dialog message">This item contains multiple parts: <br />
232
    [% additional_materials %]
233
    </div>
234
[% END %]
235
229
[% IF ( NEEDSCONFIRMATION ) %]
236
[% IF ( NEEDSCONFIRMATION ) %]
230
<div class="yui-g">
237
<div class="yui-g">
231
238
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-1 / +6 lines)
Lines 54-59 function Dopop(link) { Link Here
54
54
55
<div class="yui-g">
55
<div class="yui-g">
56
56
57
[% IF additional_materials %]
58
    <div class="dialog message">This item contains multiple parts: <br />
59
    [% additional_materials %]
60
    </div>
61
[% END %]
62
57
[% IF ( collectionItemNeedsTransferred ) %]
63
[% IF ( collectionItemNeedsTransferred ) %]
58
	<div class="dialog message">This item is part of a Rotating Collection and needs to be Transferred to [% collectionBranch %]</div>
64
	<div class="dialog message">This item is part of a Rotating Collection and needs to be Transferred to [% collectionBranch %]</div>
59
[% END %]
65
[% END %]
60
- 

Return to bug 7278