@@ -, +, @@ from opac-user.pl - Have a user with checkouts logged into the OPAC on the opac-user.pl - Set the SHOW_BCODE attribute to 'no' on the staff interface for the - Reload opac-user.pl - Set the SHOW_BCODE atttribute to 'yes' on the staff interface for the - Reload opac-user.pl - Delete the Patron attribute type SHOW_BCODE - Reload opac-user.pl - Sign off :-D --- opac/opac-user.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- a/opac/opac-user.pl +++ a/opac/opac-user.pl @@ -36,6 +36,7 @@ use C4::Letters; use Koha::DateUtils; use Koha::Holds; use Koha::Database; +use Koha::Patron::Attribute::Types; use Koha::Patron::Messages; use Koha::Patron::Discharge; use Koha::Patrons; @@ -268,7 +269,8 @@ $template->param( canrenew => $canrenew ); $template->param( OVERDUES => \@overdues ); $template->param( overdues_count => $overdues_count ); -my $show_barcode = C4::Members::AttributeTypes::AttributeTypeExists( ATTRIBUTE_SHOW_BARCODE ); +my $show_barcode = Koha::Patron::Attribute::Types->search( + { code => ATTRIBUTE_SHOW_BARCODE } )->count; if ($show_barcode) { my $patron_show_barcode = GetBorrowerAttributeValue($borrowernumber, ATTRIBUTE_SHOW_BARCODE); undef $show_barcode if defined($patron_show_barcode) && !$patron_show_barcode; --