@@ -, +, @@ - Circulation -> Built-in offline circulation interface -> Submit the "Check out" form without entering number. Check the alert message which appears. - Go to Administration -> System preferences and enable the AutoMemberNum system preference and use the BorrowerMandatoryField preference to make card number mandatory. - Go to Patrons -> New patron. The hint under the "Card number" field should refer to "card number" instead of "cardnumber." - Go to Tools -> Import patrons. - Under the page heading, the note should read "If a card number exists..." - Under "Field to use for record matching" you should see a "Card number" option in the menu. - If you try to import a CSV with an invalid card number you'll see an error message, "Card number X is not a valid card number." - Under Tools -> Upload patron images, check the "image file" radio button. The card number field label should read "Enter patron card number." - Log in to the OPAC as a patron whose card has been marked lost. Try to place a hold. You should see a message containing "please take your library card to the circulation desk" - On the "your summary" page you should see a message, "Your library card has been marked as lost or stolen." - Try to check out an item to this patron in the self-checkout system. You should be shown a message, "This library card has been declared lost." --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/offline.tt | 2 +- .../intranet-tmpl/prog/en/modules/members/memberentrygen.tt | 4 ++-- .../intranet-tmpl/prog/en/modules/tools/import_borrowers.tt | 6 +++--- .../intranet-tmpl/prog/en/modules/tools/picture-upload.tt | 2 +- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt | 2 +- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt | 4 ++-- koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/offline.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/offline.tt @@ -246,7 +246,7 @@ var ALERT_ITEM_WITHDRAWN = _("Item has been withdrawn (transaction recorded anyway)"); var ALERT_ITEM_RESTRICTED = _("Item is restricted (transaction recorded anyway)"); var ALERT_ITEM_LOST = _("Item has been lost (transaction recorded anyway)"); - var ALERT_NO_MATCHING_PATRON = _("No patron cardnumber in offline database (proceeding anyway): %s"); + var ALERT_NO_MATCHING_PATRON = _("No patron card number in offline database (proceeding anyway): %s"); var ALERT_PATRON_GONE_NO_ADDRESS = _("Patron's address is in doubt (proceeding anyway)"); var ALERT_PATRON_CARD_LOST = _("Patron's card is lost"); var ALERT_PATRON_EXPIRED = _("Patron's card is expired (%s)"); --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt @@ -256,7 +256,7 @@ legend:hover { [% ELSE %] [% IF step == 4 || step == 5 || step == 6 || step == 2 || step == 1 || step == 7 %] - [%# Only put the cardnumber if we arent showing it in the form later %] + [%# Only put the card number if we arent showing it in the form later %] [% IF cardnumber %] [% END %] @@ -889,7 +889,7 @@ legend:hover { [% END %] [% IF autoMemberNum %] [% IF mandatorycardnumber %] -
AutoMemberNum is set to enabled, but cardnumber is marked as mandatory in BorrowerMandatoryField: auto calc has been disabled. +
AutoMemberNum is set to enabled, but card number is marked as mandatory in BorrowerMandatoryField: auto calc has been disabled. [% ELSE %]
Leave blank for auto calc during registration [% END %] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/import_borrowers.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/import_borrowers.tt @@ -135,7 +135,7 @@ [% IF e.invalid_cardnumber %]
  • - Cardnumber [% e.cardnumber | html %] is not a valid cardnumber + Card number [% e.cardnumber | html %] is not a valid card number [% IF e.borrowernumber %] (for patron with borrowernumber [% e.borrowernumber | html %])[% END %]
  • [% END %] @@ -203,7 +203,7 @@ [% ELSE %]
    @@ -229,7 +229,7 @@
    1. Required
    2. --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt @@ -43,7 +43,7 @@ [% IF ( lost ) %]
    3. Your library card has been marked as lost or stolen.
      - If this is an error, please take your card to the circulation desk at your local library and the error will be corrected. + If this is an error, please take your library card to the circulation desk at your local library and the error will be corrected.
    4. [% END %] --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt @@ -89,8 +89,8 @@ [% IF ( borrower.warndeparture ) %]
      - Please note: Your card will expire on [% borrower.warndeparture | $KohaDates %]. Please contact the library for more information. - [% IF ( borrower.returnbeforeexpiry ) %] Also note that you must return all checked out items before your card expires.[% END %] + Please note: Your library card will expire on [% borrower.warndeparture | $KohaDates %]. Please contact the library for more information. + [% IF ( borrower.returnbeforeexpiry ) %] Also note that you must return all checked out items before your library card expires.[% END %]
      [% END %] --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt @@ -84,7 +84,7 @@ [% ELSIF ( circ_error_DEBARRED ) %] Your account has been suspended. [% ELSIF ( circ_error_CARD_LOST ) %] - This card has been declared lost. + This library card has been declared lost. [% ELSIF ( circ_error_GNA ) %] Your contact information seems to be incomplete. [% ELSIF ( circ_error_INVALID_DATE ) %] --