Koha ILS

How Koha 3.12 Handles Lost Statuses

One of the most common questions we get about Koha is how lost statuses are handled. Hopefully this handy guide will be of use in that area.

If the long overdue cron job is running with these settings:

misc/cronjobs/longoverdue.pl --lost 60=2 --charge 2 --confirm

The following actions are taken:

  • charges the patron the replacement price from the item
  • marks the item ‘long overdue’
  • keeps the item listed on the patron’s check out history
  • when checked in the item is marked ‘not lost’
  • when checked in the patron is refunded the lost fee (if the RefundLostItemFeeOnReturn preference says so)
  • when checked in the item is removed from patron record

If the long overdue cron job is running with these settings:

misc/cronjobs/longoverdue.pl --lost 60=2 --charge 2 --mark-returned --confirm

The following actions are taken:

  • charges the patron the replacement price from the item
  • marks the item ‘long overdue’
  • item removed from patron’s checkouts
  • when checked in the item is marked ‘not lost’
  • when checked in the patron is refunded the lost fee (if the RefundLostItemFeeOnReturn preference says so)

If you go to the detail page and click on the items tab on the left and then mark the item lost the following happens:

  • item marked ‘lost’
  • charges the patron the replacement price from the item
  • item removed from patron’s checkouts
  • patron refunded when item checked in (if the RefundLostItemFeeOnReturn preference says so)
  • item status changed when checked in

If you go to the detail page and click on the items tab on the left and then mark the item lost and paid for the following happens:

  • item marked ‘lost and paid for’
  • charges the patron the replacement price from the item
  • item removed from patron’s checkouts
  • patron refunded when item checked in (if the RefundLostItemFeeOnReturn preference says so)
  • item status changed when checked in

If you go to the detail page and click on the items tab on the left and then mark the item missing the following happens:

  • item marked ‘missing’
  • charges the patron the replacement price from the item
  • item removed from patron’s checkouts
  • patron refunded when item checked in (if the RefundLostItemFeeOnReturn preference says so)
  • item status changed when checked in

If you go to the detail page, click on the Edit > Edit items button, click Edit next to the item you want to edit and then mark the item with any lost status the following happens:

  • item marked with the lost status
  • the patron record remains untouched

Read more by Nicole C.

Tags circulation tutorial