Bug 38387 - Automatic item modification at checkin/checkout
Summary: Automatic item modification at checkin/checkout
Status: Needs Signoff
Alias: None
Product: Koha
Classification: Unclassified
Component: Cataloging (show other bugs)
Version: Main
Hardware: All All
: P5 - low new feature
Assignee: Julian Maurice
QA Contact: Testopia
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2024-11-07 11:24 UTC by Julian Maurice
Modified: 2024-11-13 18:14 UTC (History)
2 users (show)

See Also:
Change sponsored?: Sponsored
Patch complexity: ---
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:
Circulation function:


Attachments
Bug 38387: Automatic item modification at checkin/checkout (46.09 KB, patch)
2024-11-07 11:26 UTC, Julian Maurice
Details | Diff | Splinter Review
Bug 38387: Automatic item modification at checkin/checkout (46.42 KB, patch)
2024-11-07 11:36 UTC, Julian Maurice
Details | Diff | Splinter Review
Bug 38387: Remove remaining references to deleted system preferences (21.30 KB, patch)
2024-11-07 12:34 UTC, Julian Maurice
Details | Diff | Splinter Review

Note You need to log in before you can comment on or make changes to this bug.
Description Julian Maurice 2024-11-07 11:24:40 UTC
Same as UpdateLocationOnCheckin and UpdateLocationOnCheckout but more generic and with a UI
Comment 1 Julian Maurice 2024-11-07 11:26:50 UTC Comment hidden (obsolete)
Comment 2 Julian Maurice 2024-11-07 11:36:04 UTC
Created attachment 174117 [details] [review]
Bug 38387: Automatic item modification at checkin/checkout

This replaces system preferences UpdateItemLocationOnCheckin and
UpdateItemLocationOnCheckout by a new cataloguing tool

The new tool allows to modify any `items` column, based on "rules".
Each rule can have multiple conditions (or zero) and multiple
substitutions.
Conditions can be made on any `biblio`, `biblioitems` or `items` column.
The new value can be a fixed string (as with UpdateItemLocationOn*
sysprefs) or the value of another `items` column, using the syntax:
$items.<column> (for instance: $items.permanent_location)

The tool's UI is based on "automatic item modifications by age" so it
should feel very similar.

Test plan.
1. Set a value for UpdateItemLocationOnCheckin and
   UpdateItemLocationOnCheckout. They will be transferred to the new
   tool
2. Apply patch, run updatedatabase, update DBIC schema, restart
3. Go to "Cataloging > Item modifications by event"
4. Verify that UpdateItemLocationOn* sysprefs content has been
   transferred correctly:

   - If syspref content had a key '_ALL_', you should have only one rule
     with no conditions. Other keys are ignored. Otherwise, each
     key-value pair is transformed to a new rule with one condition
     ("items.location = <YAML key>") and one substitution
     ("items.location = <YAML value>")
   - The string '_BLANK_' is transformed to an empty string (''),
     whether it's a key or a value
   - The string '_PERM_' is transformed to '$items.permanent_location'
     when it's a value
   - For each created rule, another substitution is added
     ("items.permanent_location = <YAML value>") unless the value is
     'PROC' or 'CART'

    This should match the current behavior.
5. Add other rules if needed, check out/check in some items and see your
   modifications applied.
6. prove t/db_dependent/Koha/Item/trigger_automatic_modifications_by_event.t

Sponsored-by: Médiathèques Valence Romans Agglo
Comment 3 Julian Maurice 2024-11-07 12:34:32 UTC
Created attachment 174184 [details] [review]
Bug 38387: Remove remaining references to deleted system preferences

Namely, UpdateItemLocationOnCheckin and UpdateItemLocationOnCheckout