@@ -, +, @@ set the duedate in the past (2001-01-01) to make this item overdue note a warning message - with no option to return item :/ -------------------------------------- Item cannot be checked out. Sorry, this item cannot be checked out at this station. -------------------------------------- note a warning message - now *with* a check-in button --- .../opac-tmpl/prog/en/modules/sco/sco-main.tt | 4 ++-- opac/sco/sco-main.pl | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) --- a/koha-tmpl/opac-tmpl/prog/en/modules/sco/sco-main.tt +++ a/koha-tmpl/opac-tmpl/prog/en/modules/sco/sco-main.tt @@ -149,7 +149,7 @@ $(document).ready(function(){ [% END %] Please see a member of the library staff.

-[% IF ( returnitem ) %] + [% IF ( AllowSelfCheckReturns ) %]
@@ -158,7 +158,7 @@ $(document).ready(function(){
[% END %] -[% END %] +
--- a/opac/sco/sco-main.pl +++ a/opac/sco/sco-main.pl @@ -152,6 +152,7 @@ elsif ( $op eq "checkout" ) { "circ_error_$issue_error" => 1, title => $item->{title}, hide_main => 1, + barcode => $barcode, ); if ($issue_error eq 'DEBT') { $template->param(amount => C4::Budgets->GetCurrency()->{symbol}.$impossible->{DEBT}); --