Migrated Lost Items

Migrated Lost Items

The returning of lost items by patrons can be a challenge, and especially so when the item was lost in a previous ILS and has now been migrated to Koha.  When migrating from another ILS to Koha with ByWater Solutions support, items that are lost prior to migration are imported with a  “Migrated Lost” status.  When a patron returns one of these items and it is checked in, you may notice these items are not clearing from a patron account. This is expected behavior. 


During the migration, items that were marked as lost in your legacy ILS get set to a unique lost status (usually Migrated lost, LOST=7).  Adding this value into the DefaultLongOverdueSkipLostStatuses system preference prevents Koha from charging the patron a second time.  Additionally, the migrated lost fee and the migrated checkout are not typically linked together in Koha. If a borrower returns an item that was lost in your legacy ILS, Koha has no way to clear the replacement cost from the patron’s account because the charge and the item are not linked together. 


Any items that are lost and returned in Koha will behave as expected: clearing the lost status automatically when returned and clearing any linked charges according to system preferences. Migrated lost fees do not clear because they are not linked to an item. To identify patrons who have returned migrated lost items so those charges can be cleared manually, add this report to your site: 


Info

SELECT issue_id, issues.borrowernumber, issues.itemnumber, date_due

FROM issues 

JOIN borrowers ON (borrowers.borrowernumber=issues.borrowernumber) 

JOIN items ON (items.itemnumber=issues.itemnumber) 

WHERE items.itemlost=7




    • Related Articles

    • How Long Overdue (Lost) Works

      When an item becomes sufficiently overdue, Koha can automatically assign a lost status with the longoverdue.pl cron. This article discusses its setup and customization options, as well as how it interacts with overdue notices. Further details are ...
    • Creating Bundles of Items in Koha

      In this tutorial, we will show you how to create bundles, or a group of items, in Koha. This allows libraries to create groups or kits, easier in Koha! If you are setting up a book club kit, binding journal volumes or even a group of Library of ...
    • Koha Item Status Reports

      In another article, there was a discussion of a variety of item statuses and how their behavior can be customized in Koha. That article covered everything that is a “status” in Koha: Withdrawn, Lost, Damaged, Restricted, and Not For Loan. However, ...
    • Koha Glossary of Terms

      Find the basics of Koha's vocabulary here This glossary is in alphabetical order. Use control+F to quickly search this page for specific terms. Authority Record: allows your library to control and search fields in your MARC records such as subject ...
    • Koha and Aspen Practice Exercises

      Whether your library is in implementation or you are training new staff, these exercises are a great place to start practicing procedures and workflows! For libraries in implementation, another effective way to learn is to keep track of what ...