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

(-)a/circ/returns.pl (-5 lines)
Lines 278-288 if ($barcode) { Link Here
278
        	);
278
        	);
279
    	}
279
    	}
280
    }
280
    }
281
    elsif($itemtype->checkinmsgtype eq 'question' && $accept == '1'){
282
	$template->param(
283
	checkinmsgtype	=> "accepted",
284
	);
285
    }
286
    elsif($itemtype->checkinmsgtype eq 'question' && $accept == '2'){
281
    elsif($itemtype->checkinmsgtype eq 'question' && $accept == '2'){
287
	$template->param(
282
	$template->param(
288
	checkinmsgtype	=> "rejected",
283
	checkinmsgtype	=> "rejected",
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-6 lines)
Lines 548-558 $(document).ready(function () { Link Here
548
           </form>
548
           </form>
549
        </div>
549
        </div>
550
[% END%]
550
[% END%]
551
[% IF checkinmsgtype == 'accepted' %]
552
	<div class="dialog alert">
553
		<p class="problem">Your item was checked in!</p>
554
	</div>
555
[% END %]
556
[% IF checkinmsgtype == 'rejected' %]
551
[% IF checkinmsgtype == 'rejected' %]
557
	<div class="dialog alert">
552
	<div class="dialog alert">
558
		<p class="problem">Your item was not checked in!</p>
553
		<p class="problem">Your item was not checked in!</p>
559
- 

Return to bug 17101