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

2023-05-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23305

Andrew Fuerste-Henry  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---

--- Comment #9 from Andrew Fuerste-Henry  ---
I'm re-opening this bug to suggest a dedicated Append option in the item batch
mod tool -- the ability to check a box labeled "append" and have whatever text
is entered appended to the respective field rather than overwriting it. It'd
probably make sense to include this on all the LONGTEXT fields in the item
record.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


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

2023-05-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23305

Andrew Fuerste-Henry  changed:

   What|Removed |Added

 Status|Needs documenting   |RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


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

2023-05-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23305

--- Comment #8 from Sarah Cornell  ---
I've never filed a bug so I propose reopening this one!

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


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

2023-05-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23305

--- Comment #7 from Andrew Fuerste-Henry  ---
(In reply to Sarah Cornell from comment #6)
> I'm glad appending is possible, and I've used it a few times.  But it would
> be *so* wonderful if there were a checkbox that said "append?" and Koha
> would simply append if that was checked.  It's a lot to ask my staff to
> learn even that amount of regex in order to append to notes when batch
> editing.  
> 
> Would a checkbox like that be possible?

Seems like a reasonable enhancement, yeah! We could reopen this bug as a
request for a dedicated tool/checkbox/option or you could file a new one.

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


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

2023-05-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23305

Sarah Cornell  changed:

   What|Removed |Added

 CC||sbcornell@cityofportsmouth.
   ||com

--- Comment #6 from Sarah Cornell  ---
I'm glad appending is possible, and I've used it a few times.  But it would be
*so* wonderful if there were a checkbox that said "append?" and Koha would
simply append if that was checked.  It's a lot to ask my staff to learn even
that amount of regex in order to append to notes when batch editing.  

Would a checkbox like that be possible?

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


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

2023-05-29 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23305

Katrin Fischer  changed:

   What|Removed |Added

 Status|RESOLVED|Needs documenting
 Resolution|FIXED   |---

--- Comment #5 from Katrin Fischer  ---
(In reply to Andrew Fuerste-Henry from comment #4)
> 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.

This might make a great addition for the manual.

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


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

2023-05-26 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23305

Andrew Fuerste-Henry  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|NEW |RESOLVED

--- Comment #4 from Andrew Fuerste-Henry  ---
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


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

2019-07-12 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23305

Carolyn Hughesman  changed:

   What|Removed |Added

 CC||chughes...@cclslib.org

--- Comment #3 from Carolyn Hughesman  ---
I agree!  This would be very useful.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


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

2019-07-11 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23305

--- Comment #2 from Lisette Scheer  ---
This would be very helpful! 
Lisette

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


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

2019-07-11 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23305

Martha Fuerst  changed:

   What|Removed |Added

 CC||mfue...@hmcpl.org

--- Comment #1 from Martha Fuerst  ---
Ditto this! This would be incredibly useful.

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


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

2019-07-11 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23305

Lisette Scheer  changed:

   What|Removed |Added

 CC||lisettesla...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/