Self checkout ============= Evergreen includes a self check interface designed for libraries that simply want to record item circulation without worrying about security mechanisms like magnetic strips or RFID tags. Initializing the self check --------------------------- The self check interface runs in a web browser. Before patrons can use the self check station, a staff member must initialize the interface by logging in. . Open your self check interface page in a web browser. By default, the URL is `https://[hostname]/eg/circ/selfcheck/main`, where _[hostname]_ represents the host name of your Evergreen web server. . Log in with a staff account with circulation permissions. image::media/self-check-admin-login.png[Self Check Admin Login] Setting library hours of operation ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ When the self check prints a receipt, the default template includes the library's hours of operation in the receipt. If the library has no configured hours of operation, the attempt to print a receipt fails and the browser hangs. Configuring self check behavior ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Several library settings control the behavior of the self check: * *Audio Alerts*: Plays sounds when events occur in the self check. These events are defined in the `templates/circ/selfcheck/audio_config.tt2` template. To use the default sounds, you could run the following command from your Evergreen server as the *root* user (assuming that `/openils/` is your install prefix): + [source, bash] ------------------------------------------------------------------------------ cp -r /openils/var/web/xul/server/skin/media/audio /openils/var/web/. ------------------------------------------------------------------------------ + * *Block copy checkout status*: Prevent the staff user's permission override from enabling patrons to check out items that they would not normally be able to check out, such as the "On reservation shelf" status. The status IDs are found in the `config.copy_status` database table. * *Patron Login Timeout*: Automatically logs the patron out of the self check after a certain period of inactivity. *NOT CURRENTLY SUPPORTED* * *Pop-up alert for errors*: In addition to displaying an alert message on the screen, this setting raises patron awareness of possible problems by raising an alert box that the patron must dismiss before they can check out another item. * *Require Patron Password*: By default, users can enter either their user name or barcode, without having to enter their password, to access their account. This setting requires patrons to enter their password for additional security. * *Workstation Required*: If set, the URL must either include a `?ws=[workstation]` parameter, where _[workstation]_ is the name of a registered Evergreen workstation, or the staff member must register a new workstation when they login. The workstation parameter ensures that check outs are recorded as occurring at the correct library. Basic Check Out --------------- . Patron scans their barcode. + image::media/self_check_check_out_1.png[self check] + . _Optional_ Patron enters their account password. + image::media/self_check_check_out_2.png[self check] + . Patron scans the barcodes for their items _OR_ Patron places items, one at a time, on the RFID pad. + image::media/self_check_check_out_3.png[self check] + . Items will be listed below with a check out confirmation message. + image::media/self_check_check_out_4.png[self check] + . If a check out fails a message will advise patrons. + image::media/self_check_error_1.png[self check] + . Patron clicks *Logout* to print a checkout receipt and logout. _OR_ Patron clicks *Logout (No Receipt)* to logout with no receipt. + image::media/self_check_check_out_5.png[self check] + [NOTE] ========== If the patron forgets to logout the system will automatically log out after the time period specified in the library setting *Patron Login Timeout (in seconds)*. An inactivity pop-up will appear to warn patrons 20 seconds before logging out. image::media/self_check_check_out_6.png[self check] ========== View Items Out -------------- . Patrons are able to view the items they currently have checked out by clicking *View Items Out* + image::media/self_check_view_items_out_1.png[self check] + . The items currently checked out will display with their due dates. Using the *Print List* button patrons can print out a receipt listing all of the items they currently have checked out. image::media/self_check_view_items_out_2.png[self check] View Holds ---------- . Patrons are able to view their current holds by clicking *View Holds* + image::media/self_check_view_holds_1.png[self check] + . Items currently on hold display. Patrons can also see which, if any, items are ready for pickup. + Using the *Print List* button patrons can print out a receipt listing all of the items they currently have on hold. + image::media/self_check_view_holds_2.png[self check] View Fines ---------- . Patrons are able to view the fines they currently owe by clicking *View Details* + image::media/self_check_view_fines_1.png[self check] + . Current fines owed by the patron display. image::media/self_check_view_fines_2.png[self check]