[Koha-bugs] [Bug 23305] Add ability to append to item notes in batch item modification

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri May 26 16:25:27 CEST 2023


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23305

Andrew Fuerste-Henry <andrewfh at dubcolib.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|NEW                         |RESOLVED

--- Comment #4 from Andrew Fuerste-Henry <andrewfh at dubcolib.org> ---
This is possible since bug 29781. Using capturing groups in a regex
substitution, one can basically say "replace the current note with the current
note plus these new words."

A very basic example, if one wanted to append the text "Disc cleaned 5-26-23"
to all notes on a group of items, one could put "(.*)" in the Regex Pattern and
"$1 Disc Cleaned 5-26-23" in the Regex Replacement in the item batch mod
interface.

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.


More information about the Koha-bugs mailing list