Floating collections in Koha

Floating

There are two places where libraries can define whether an item floats

The first is the Default checkout, hold and return policy. The second is the Default holds policy by item type. The Default holds policy by item type overrides the Default checkout, hold and return policy.
  1. Default checkout, hold and return policy
    1. You can set a default maximum number of checkouts, a default maximum number of holds, and a hold policy that will be used if none is defined below for a particular item type or category. This is the fallback rule for defaults.
    2. Under the column Return Policy, you have 3 options to choose from.
      1. Item returns home
      2. Item returns to issuing branch
      3. Item floats (when an item floats, it stays where it was checked in and does not return to its home library unless for a hold or manual transfer)
  2. Default holds policy by item type
    1. You can edit hold and return policies for a given item type, regardless of the patron’s category.
    2. Under the column Return Policy, you have 3 options to choose from.
      1. Item returns home
      2. Item returns to issuing branch
      3. Item floats (when an item floats, it stays where it was checked in and does not return to its home library unless for a hold or manual transfer)

Example

For example, you might allow Books or DVDs to float at your library (meaning they can stay at the library they were returned to) but not want New Books or New DVDs to float, instead returning to their home library. You would set the Return Policy in Default holds policy by item type for BOOK or DVD to item floats and NEWBOOK or NEWDVD to item returns home.

Report

If you want to run a report to see where things have floated (i.e. where the item's home library and holding library differ) you can run the report below.

Quote
SELECT *
FROM items
WHERE homebranch != holdingbranch

Library Groups and Floating

In 24.05, you can set up floating rules by library group.

Tutorial Video: How to Float Items in Koha


    • Related Articles

    • Changing Circulation Rules

      Let's take a look at what happens when you change your circulation and fine rules and discuss how Koha receives the data and processes a circulation transaction. At checkout When you scan a barcode into the checkout box, Koha zips through a lot of ...
    • Circulation Rules Default Policies

      In addition to the circulation and fine matrix, the Default Policies control other aspects of circulation. Koha reads the Default Policies from the bottom of the page to the top. Default checkout, hold, and return policy You can set a default maximum ...
    • Grouping Item Types in Circulation Rules

      Parent and Child item types allow you to create combined rules to incorporate several item type rules together. In the circulation and fine rule matrix, there is the ability to limit the number of checkouts by item type. However, a further option ...
    • Circulation and Fine Rule Matrix

      Koha reads the circulation matrix from the top to the bottom. The bottom rule is usually (and recommended) to have what is called an ALL/ALL rule. This rule will capture any combination of patron category/item type that does not have its own specific ...
    • Koha Offline Circulation Tool

      The Koha Offline Circulation Tool that was created by Kyle Hall for Windows. The offline circulation tool for Windows will generate a KOC (koha offline circulation) file that you can upload into Koha once your system comes back up. This tool works ...