@@ -, +, @@ itemBarcodeFallbackSearch and that your itemBarcodeFallbackSearch syspref is set to 'Enable'. patron to Check out. Notice how the text above the textbox reads "Enter item barcode:". get at least one item as a result. Notice how the text in the yellow warning box reads "The barcode was not found: Fast cataloging". "Enter item barcode or keyword:". "The barcode was not found: Add record using fast cataloging". --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -432,7 +432,7 @@ $(document).ready(function() {
  • The barcode was not found: [% barcode |html %] [% IF ( fast_cataloging ) %] [% IF ( CAN_user_editcatalogue_fast_cataloging ) %] - Fast cataloging + Add record using fast cataloging [% END %] [% END %] @@ -591,7 +591,11 @@ No patron matched [% message | html %] -
    Enter item barcode:
    + [% IF Koha.Preference('itemBarcodeFallbackSearch') %] +
    Enter item barcode or keyword:
    + [% ELSE %] +
    Enter item barcode:
    + [% END %] [% IF NEEDSCONFIRMATION %] --