[Koha-bugs] [Bug 30230] Search for patrons in checkout should not require edit_borrowers permission

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

--- Comment #27 from Thibaud Guillot  ---
(In reply to Andrew Fuerste-Henry from comment #22)
> I feel like this permission should be grouped with the other borrowers
> permissions, rather than set off as its own top-level permission.
> 
> I created a user with only catalogue, circulate_remaining_permissions, and
> list_borrowers. I was able to check out to a patron using either their
> cardnumber or name to find them and when I entered a name which found more
> than one patron I was able to access the patron search screen to select the
> correct patron. So that all worked as desired.
> 
> A couple of minor things seem off, though, both on the member.pl search
> results page:
>  - clicking a patron name in the results list takes one to
> cgi-bin/koha/members/moremember.pl, a page one would otherwise not be able
> to access with only list_borrowers
> 
> - while on member.pl or moremember.pl as a user with only list_borrowers
> permission, the Search Patrons feature in the main search bar is only
> partially disabled -- the Search Patrons option still appears, but when it
> is selected the search box disappears, thereby preventing the search. This
> is a visually confusing approach and becomes more confusing if one clicks
> around between the options here, as the search box will reappear when
> something other than Search Patrons is selected. See the attached screenshot
> in which the interface is simultaneously indicating both Check Out and
> Search Patrons. Can we remove Search Patrons from this bar entirely if the
> user lacks that permission?

Hello ! 

Thanks for your comments Andrew and David, I've updated my patch to take them
into account.

I've grouped this permission under those linked to borrowers, and modified
access on the moremember.pl page. I'm divided on this point because, as David
says, it may be useful to see more detailed information on a member, but at the
same time, there's the view_borrower_infos_from_any_libraries permission which
allows it, it seems to me. The difference is that it's not limited to one
site... so I'm open to suggestions on this point, of course, as I don't know
what would be best.

As far as the search bar and the "Search patrons" tab are concerned, I did
indeed notice a bug when it appeared, so I modified the code to display this
tab only if the user had "circulate" permission... that's what I understood
from your example.

The patch can now be tested again :) Thanks to both of you

-- 
You are receiving this mail because:
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 30230] Search for patrons in checkout should not require edit_borrowers permission

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

Thibaud Guillot  changed:

   What|Removed |Added

 Attachment #159409|0   |1
is obsolete||

--- Comment #26 from Thibaud Guillot  ---
Created attachment 159427
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=159427=edit
Bug 30230: Add new 'list_borrowers' permission

When a patron search is performed only a user with edit_borrowers
permission can search by name. Search can works only with cardnumber but
it makes searching less intuitive I think.

So, as mentioned in the discussion, I've added a new 'list_borrowers'
permission,
completely independent of 'edit_borrowers', so that I can search for a member
via the interface
and get the results. In addition to the permission to perform check in and
checkouts, this no longer poses an obstacle to simple use.

Test plan:

1) Check with a user without 'edit_borrowers' permission that the patron search
can only be performed with cardnumber
2) Apply this patch
3) Make the updatedatabase to add new 'list_borrowers' permissions
4) Set 'list_borrowers' permission on one user and see the difference

-- 
You are receiving this mail because:
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 30230] Search for patrons in checkout should not require edit_borrowers permission

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

Thibaud Guillot  changed:

   What|Removed |Added

 Status|Failed QA   |Needs Signoff

-- 
You are receiving this mail because:
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 35425] Sortable prevents mouse selection of text inside child input/textarea elements

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

Marcel de Rooy  changed:

   What|Removed |Added

 QA Contact|testo...@bugs.koha-communit |m.de.r...@rijksmuseum.nl
   |y.org   |

-- 
You are receiving this mail because:
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 35425] Sortable prevents mouse selection of text inside child input/textarea elements

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

Marcel de Rooy  changed:

   What|Removed |Added

 Attachment #159379|0   |1
is obsolete||

--- Comment #3 from Marcel de Rooy  ---
Created attachment 159426
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=159426=edit
Bug 35425: Optimize UX when dragging a Tag or Subfield

To reproduce:
1. Open any biblio and edit that record.
   (select "Edit record" from the "Edit" drop-down menu).
2. Check that selecting the text in any draggable block input/textarea
   fields with a mouse is not possible - it starts dragging instantly.
3. Apply the patch
4. Make sure that draging is activated only when you click
   on the "::" icon in front of the dragged item. And text selection
   works correctly.

Signed-off-by: Phil Ringnalda 

Signed-off-by: Marcel de Rooy 

-- 
You are receiving this mail because:
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 35425] Sortable prevents mouse selection of text inside child input/textarea elements

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

Marcel de Rooy  changed:

   What|Removed |Added

 Status|Signed Off  |Passed QA

-- 
You are receiving this mail because:
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 34585] "When to charge" columns value not copied when editing circulation rule

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

--- Comment #5 from Emmi Takkinen  ---
Pressing "Cancel" button should set first select option as selected and it
does. However previous selection is never cleared. So every time rule row is
selected to be edited it's select options receive "selected" attribute which
persists. When new value is selected, it's select options still have previous
rules options as selected.

-- 
You are receiving this mail because:
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 35414] Silence warn related to number_of_copies

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

Marcel de Rooy  changed:

   What|Removed |Added

 Attachment #159365|0   |1
is obsolete||

--- Comment #4 from Marcel de Rooy  ---
Created attachment 159425
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=159425=edit
Bug 35414: Silence warn related to number_of_copies

To test in ktd:
- Tail the logs with "sudo tail -f /var/log/koha/kohadev/plack*.log"
- Find a record in the staff client
- Add an item to the record
- Observe "[WARN] Argument "" isn't numeric in subroutine entry ..."
  in /var/log/koha/kohadev/plack-intranet-error.log
- Apply this patch
- restart_all
- Tail the logs again
- Add another item
- Observe the absence of the earlier warning

Thanks to Jonathan Druart for suggesting this particular solution!

Signed-off-by: Owen Leonard 

Signed-off-by: Marcel de Rooy 

-- 
You are receiving this mail because:
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 35414] Silence warn related to number_of_copies

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

Marcel de Rooy  changed:

   What|Removed |Added

 Status|Signed Off  |Passed QA

-- 
You are receiving this mail because:
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 35383] Dragging and dropping subfield of repeated tags doesn't work

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

--- Comment #6 from Marcel de Rooy  ---
(In reply to Slava Shishkin from comment #5)
> (In reply to Marcel de Rooy from comment #4)
> 
> thanks, that makes a sense,
> 
> I can wrap up it in "if",
> 
> if (typeof Sortable !== 'undefined') {
> $(clone).find("ul.sortable_subfield").each((i, e) => {
> Sortable.create(e, {
> animation: 150,
> });
> });
> }
> 
> but the best then is to make a callback option for CloneSubfield and leave
> Sortable.create code in files where it resides,
> 
> but that also leads to refactoring of onclick="CloneSubfield... to modern
> way how we doing that in our codebase by moving that listener to JS document
> ready block
> 
> Marcel, what do you think?

You are welcome to improve it. Please do so on a new report. I think that this
patch can go in now in its current form. Your commitment is appreciated.

-- 
You are receiving this mail because:
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 31575] Missing warning for holds where AllowHoldPolicyOverride can be used to force a hold to be placed

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

Jonathan Druart  changed:

   What|Removed |Added

 CC||jonathan.druart+koha@gmail.
   ||com

--- Comment #10 from Jonathan Druart  ---
I have been git bisect a selenium failure on 21.11.x

STRACE: /usr/share/perl5/Try/Tiny.pm:123 in Selenium::Remote::Driver::catch
{...} 
/usr/local/share/perl/5.32.1/Selenium/Remote/Driver.pm:361 in
Try::Tiny::try
(eval 1693):1 in Selenium::Remote::Driver::__ANON__
(eval 1695):2 in Selenium::Remote::Driver::__ANON__
/usr/local/share/perl/5.32.1/Selenium/Remote/Driver.pm:1335 in
Selenium::Remote::Driver::_execute_command
/usr/local/share/perl/5.32.1/Selenium/Remote/Driver.pm:1335 in (eval)
t/db_dependent/selenium/basic_workflow.t:263 in
Selenium::Remote::Driver::find_element

Error while executing command: unexpected alert open: Dismissed user prompt
dialog: 


And found this commit

7a88155fe13c3a4f71f1a8d09b170738e7d8cbb8 is the first bad commit

It's crazy that the failure has been ignored for so long...

-- 
You are receiving this mail because:
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 35438] Importing records can create too large transactions

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

--- Comment #4 from Jonathan Druart  ---
The idea of surrounding the whole job with a transaction was to be able to
"retry" it in case it fails. If we process only a subset it won't be possible
(unless parsing the "report").

-- 
You are receiving this mail because:
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 35456] New: The fine will not be displayed. And even if the expired book is not handed over, it will show as a checked out book.

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

Bug ID: 35456
   Summary: The fine will not be displayed. And even if the
expired book is not handed over, it will show as a
checked out book.
 Change sponsored?: ---
   Product: Koha
   Version: 22.11
  Hardware: PC
OS: Linux
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: Circulation
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: csuranjit...@gmail.com
QA Contact: testo...@bugs.koha-community.org
CC: gmcha...@gmail.com, kyle.m.h...@gmail.com

When a patron takes a book and it is overdue, the fine will not be displayed.
And even if the expired book is not handed over, it will show as a checked out
book.

-- 
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 35455] ICU does not strip = when indexing/searching

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

--- Comment #4 from David Cook  ---
Created attachment 159424
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=159424=edit
Record 2 for testing

Record 2 for testing

-- 
You are receiving this mail because:
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 35455] ICU does not strip = when indexing/searching

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

--- Comment #3 from David Cook  ---
Created attachment 159423
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=159423=edit
Record 1

Record 1 for testing

-- 
You are receiving this mail because:
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 35455] ICU does not strip = when indexing/searching

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

David Cook  changed:

   What|Removed |Added

  Text to go in the||This change fixes an issue
  release notes||with Zebra ICU searching
   ||where titles with colons
   ||aren't properly searchable,
   ||especially when used with
   ||Analytics.
   ||
   ||A full re-index
   ||of Zebra is needed for this
   ||change to take effect.
   Assignee|koha-b...@lists.koha-commun |dc...@prosentient.com.au
   |ity.org |

-- 
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 35455] ICU does not strip = when indexing/searching

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

--- Comment #2 from David Cook  ---
Created attachment 159422
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=159422=edit
Bug 35455: Remove = in ICU for indexing/searching

This change more closely aligns ICU and CHR so that ICU also
removes the = character. This fixes issues in ICU when searching
with a : which gets transformed into a =. Without this change,
the Analytics features won't work for titles with a colon in them.

Test plan:
0. Apply the patch and import bibs from Bugzilla (using Staged MARC tools)
1. cp ./etc/zebradb/etc/phrases-icu.xml /etc/koha/zebradb/etc/phrases-icu.xml
2. cp ./etc/zebradb/etc/words-icu.xml /etc/koha/zebradb/etc/words-icu.xml
3. vi /etc/koha/zebradb/etc/default.idx
Change "charmap word-phrase-utf.chr" to "icuchain words-icu.xml" for "index w"
and "icuchain phrases-icu.xml" for "index p"
4. koha-zebra --stop kohadev
5. pkill zebrasrv
6. koha-zebra --start kohadev
7. koha-rebuild-zebra -a -b -f -v kohadev

8. Search for "Awesome title" and open the detail page
9. Note that the "Analytics: Show analytics" line shows up
10. Click that link
11. Note that it opens the "Cool article" record and it displays
"In: Awesome title: awesome subtitle"
12. Click that link
13. Note that it opens the "Awesome title" 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 35455] ICU does not strip = when indexing/searching

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

David Cook  changed:

   What|Removed |Added

 Status|NEW |Needs Signoff

-- 
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 35455] ICU does not strip = when indexing/searching

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

--- Comment #1 from David Cook  ---
For example:

Record 1:
245$a Awesome title: awesome subtitle

Record 2:
245$a Cool article
773$t Awesome title: awesome subtitle

--

At indexing time, this will be indexed as "Awesome title awesome subtitle" as
the ICU removes the punctuation. 

At search time, we can't use "Awesome title= awesome subtitle" because the
tokens "title" and "title=" won't match. We've got to remove the = since at
indexing time it was a :

-- 
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 35455] New: ICU does not strip = when indexing/searching

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

Bug ID: 35455
   Summary: ICU does not strip = when indexing/searching
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: P5 - low
 Component: Searching - Zebra
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: dc...@prosentient.com.au

The CHR config file /etc/koha/zebradb/etc/word-phrase-utf.chr replaces = with a
space, but the ICU config files /etc/koha/zebradb/etc/words-icu.xml and
/etc/koha/zebradb/etc/phrases-icu.xml do not transform the = character.

I encountered this problem because the "Show analytics" link wasn't appearing
for a journal record, but it will affect other search contexts too.

Note on https://unicode-org.github.io/icu/userguide/strings/regexp.html it
says:

"The property expression \p{punct} differs in what it matches. Java matches
matches any of !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~. From that list, ICU omits
$+<=>^`|~ ICU follows the recommendations from Unicode UTS-1"

Arguably we should remove <=>^`|~ during ICU normalization but I'm just
focusing on = for now, as the colon : gets changed to = during searches, and
subtitles frequently are introduced by : in English.

-- 
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 9729] Unable to use IT search terms such as C#, .NET, C++ in searching

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

--- Comment #12 from David Cook  ---
It would be interesting to look at this in an Elasticsearch context...

-- 
You are receiving this mail because:
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 5534] Koha mapping punctuation to space for indexing/searching can be confusing

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

--- Comment #19 from David Cook  ---
For folk using Zebra in English, QueryStemming can help with this, although
QueryStemming only works if automatic QueryTruncation isn't turned on.

-- 
You are receiving this mail because:
You are the QA Contact 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 27153] ElasticSearch should search keywords apostrophe blind

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

David Cook  changed:

   What|Removed |Added

   See Also||https://bugs.koha-community
   ||.org/bugzilla3/show_bug.cgi
   ||?id=5534

-- 
You are receiving this mail because:
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 5534] Koha mapping punctuation to space for indexing/searching can be confusing

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

David Cook  changed:

   What|Removed |Added

   See Also||https://bugs.koha-community
   ||.org/bugzilla3/show_bug.cgi
   ||?id=27153

-- 
You are receiving this mail because:
You are the QA Contact 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 35181] Can no longer edit sample records with advanced cataloguing editor

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

Lauren Denny  changed:

   What|Removed |Added

 CC||lauren_de...@sil.org

-- 
You are receiving this mail because:
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 30627] koha-run-backups delete the backup files after finished its job without caring days option

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

David Cook  changed:

   What|Removed |Added

 CC||dc...@prosentient.com.au

-- 
You are receiving this mail because:
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 30230] Search for patrons in checkout should not require edit_borrowers permission

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

--- Comment #25 from David Cook  ---
(In reply to Andrew Fuerste-Henry from comment #22)
> I feel like this permission should be grouped with the other borrowers
> permissions, rather than set off as its own top-level permission.

+1

This needs to be in "permissions" and not "userflags". This is important for
the UI and overall permission logic.

> A couple of minor things seem off, though, both on the member.pl search
> results page:
>  - clicking a patron name in the results list takes one to
> cgi-bin/koha/members/moremember.pl, a page one would otherwise not be able
> to access with only list_borrowers

It's a good point.

I think list_borrowers should be able to go to the moremember.pl page, since
"list_borrowers" basically means you can list all patrons and their
information. But they shouldn't be able to update/delete. 

In general, Koha doesn't have very nuanced authorization, but I suppose in this
case maybe we should be defining "flagsrequired" based on HTTP method. If it's
a GET, then "list_borrowers" can be included. But if it's a POST or something
else, it needs to only be "edit_borrowers". 

> - while on member.pl or moremember.pl as a user with only list_borrowers
> permission, the Search Patrons feature in the main search bar is only
> partially disabled -- the Search Patrons option still appears, but when it
> is selected the search box disappears, thereby preventing the search. This
> is a visually confusing approach and becomes more confusing if one clicks
> around between the options here, as the search box will reappear when
> something other than Search Patrons is selected. See the attached screenshot
> in which the interface is simultaneously indicating both Check Out and
> Search Patrons. Can we remove Search Patrons from this bar entirely if the
> user lacks that permission?

I'm not sure I understand what you're saying here...

-- 
You are receiving this mail because:
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 35449] Accessibility: No links on "here"

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

--- Comment #2 from Katrin Fischer  ---
You are right, copy and paste from a wrong tab. Only the 2 to fix.

-- 
You are receiving this mail because:
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 35436] Copy is not translatable in OPAC search history

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

--- Comment #5 from Katrin Fischer  ---
Hi Adolfo, I don't see a connection between your patch and the translatability
of the string, can you please explain?

-- 
You are receiving this mail because:
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 35436] Copy is not translatable in OPAC search history

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

Katrin Fischer  changed:

   What|Removed |Added

Summary|Copy is not translatable in |Copy is not translatable in
   |OPAC Search History |OPAC search history

-- 
You are receiving this mail because:
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 35434] Non-superlibrarians should not place holds in other libraries when IndependentBranches is enabled

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

--- Comment #3 from Katrin Fischer  ---
IIRC canreservefromotherbranches was also used in this context, but it seems
missing from the test plan.

-- 
You are receiving this mail because:
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 35433] Mark some strings as read-only

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

Katrin Fischer  changed:

   What|Removed |Added

Summary|mark some strings as|Mark some strings as
   |read-only   |read-only

-- 
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 35433] mark some strings as read-only

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

--- Comment #4 from Katrin Fischer  ---
(In reply to Magnus Enger from comment #1)
> There are a bunch of names from the "About" page that could be candidates,
> perhaps? For example: "Brimbank City Council, Australia".

Hm, I think we did translate the countries for these. But I am sure there are
other examples: ILS-DI documentation XML

-- 
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 35409] patrons.pref#MaxFine#

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

--- Comment #2 from Katrin Fischer  ---
Please report each separately. 

I don't think the first is a big problem and removing it would be more
problematic. We translate system preferences as sentences, so having a part/end
of the sentence missing would not be helpful. Sometimes we need to be able to
move words between the different parts as grammar can vary.

The second we could try to avoid.

-- 
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 35415] Rephrase: Some patrons have requested a privacy ...

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

--- Comment #2 from Katrin Fischer  ---
Sounds better to me :)

-- 
You are receiving this mail because:
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 35310] Current renewals 'view' link doesnt work if renewals correspond to an item no longer checked out

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

Victor Grousset/tuxayo  changed:

   What|Removed |Added

 Status|In Discussion   |Passed QA

--- Comment #28 from Victor Grousset/tuxayo  ---
(In reply to Martin Renvoize from comment #27)
> Is there actually any more discussion to take place here.. it looks like we
> reached a conclusion that the code all made "sense" given the history of the
> feature.

The only remaining thing is the following and your message might implicitly
mean "out of scope" for that point. At least that didn't strike you as an
immediate worthwhile issue ^^

>> After more testing of the current patches:
>> - Item details page of a record doesn't show "Current renewals:" if there
>> are only legacy renewals.

> The current patches introduce an inconsistency with the same feature 
> elsewhere in Koha 
> which has still the old behavior. By default I think that's in scope but 
> there are a lot 
> of case by case exceptions. What do you think? I don't have a strong opinion 
> on it.

And it didn't seem to have caught the eye of Katrin and Pedro either since the
18th. So it safely enough feels like this can move on.

Works, makes sense, QA script happy, code looks good, passing QA :)

-- 
You are receiving this mail because:
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 29291] Self Registration e-mail verification is not stored in notices

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

Katrin Fischer  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |INVALID

--- Comment #3 from Katrin Fischer  ---
There cannot be any password in the message thankfully. Maybe the
misunderstanding is that it's not linked to the patron yet via borrowernumber
and thus not showing on the notices tab. The patron doesn't have a
borrowernumber until they click the verification link.

-- 
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 26611] Required match checks don't work for authority records

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

--- Comment #12 from Katrin Fischer  ---
(In reply to ryszard.d79 from comment #11)
> Hello.
> Solution to the problem in version 22.11 (it worked for me)
> 
> /C4/Matcher.pm
> 
> line ~~33
> 
>  remove_spaces
>  upper_case
>  );
> +use C4::AuthoritiesMarc qw( GetAuthority );
>  
>  =head1 NAME
> 
> Line ~~703
>  
> foreach my $result (@$authresults) {
>  my $id = $result->{authid};
> - my $target_record = Koha::Authorities->find( $id )->record;
> + my $target_record = GetAuthority($id);
>  $matches->{$id}->{score} += $matchpoint->{'score'};
>  $matches->{$id}->{record} = $target_record;
> }
> 
> my first comment, sorry for the syntax

Thanks for sharing. The bug will be fixed with the next release in 22.11 with
the patches from 
Bug 35343 - record method, required for bug 26611, missing from Koha::Authority

-- 
You are receiving this mail because:
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 25835] Include overdue report (under circulation module) as a staff permission

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

Katrin Fischer  changed:

   What|Removed |Added

Summary|Include Overdue Report  |Include overdue report
   |(under Circulation Module)  |(under circulation module)
   |as a Staff Permission   |as a staff permission

-- 
You are receiving this mail because:
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 35449] Accessibility: No links on "here"

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

Lucas Gass  changed:

   What|Removed |Added

 CC||lu...@bywatersolutions.com

--- Comment #1 from Lucas Gass  ---
Is UpdateItemLocationOnCheckin correct? I don't see 'here' in that pref's
description.

However:

kohadev-koha@kohadevbox:preferences(master)$ git grep '>here'
opac.pref:- "NOTE: Library specific JS can be
defined from here."
opac.pref:- "NOTE: Library specific CSS can be
defined from here."


The two places I am seeing is OPACUserJS and OPACUserCSS.

-- 
You are receiving this mail because:
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 35443] Persistent encoding error message in Advanced Editor

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

--- Comment #2 from Katrin Fischer  ---
Hi Esther, this sounds like a duplicate of Bug 35181 - Can no longer edit
sample records with advanced cataloguing editor. Have you been testing in a
version lower than 23.05.06?

-- 
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 35434] Non-superlibrarians should not place holds in other libraries when IndependentBranches is enabled

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

Lucas Gass  changed:

   What|Removed |Added

 CC||lu...@bywatersolutions.com

--- Comment #2 from Lucas Gass  ---
Emily, can we have a unit test for this?

-- 
You are receiving this mail because:
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 35441] Typo 'UniqueItemsFields' system preference

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

Lucas Gass  changed:

   What|Removed |Added

 Attachment #159372|0   |1
is obsolete||

--- Comment #4 from Lucas Gass  ---
Created attachment 159421
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=159421=edit
Bug 35441: Fix typo 'UniqueItemsFields' system preference

Typo in message :
NOTE: Fields listed in the 'UniqueItemsFields' system preference will not be
copied

The preference is Item without 's' : 'UniqueItemFields'

Test plan :
1) Check system preference 'UniqueItemFields' contains values
2) Go to acquisition to create a new order from new record
3) Check the note you see with the system preference

Signed-off-by: David Nind 
Signed-off-by: Lucas Gass 

-- 
You are receiving this mail because:
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 35441] Typo 'UniqueItemsFields' system preference

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

Lucas Gass  changed:

   What|Removed |Added

 Status|Signed Off  |Passed QA

-- 
You are receiving this mail because:
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 30230] Search for patrons in checkout should not require edit_borrowers permission

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

Andrew Fuerste-Henry  changed:

   What|Removed |Added

 Status|Needs Signoff   |Failed QA

-- 
You are receiving this mail because:
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 35430] Add endpoints for managing stock rotation rota's

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

David Nind  changed:

   What|Removed |Added

 CC||da...@davidnind.com
  Text to go in the||This enhancement adds API
  release notes||endpoints for managing
   ||stock rotation rotas.

--- Comment #12 from David Nind  ---
Testing notes (using KTD):

1. After apply the patch, run the new tests - these should pass: 
   prove t/db_dependent/api/v1/stockrotation_rotas.t

-- 
You are receiving this mail because:
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 35430] Add endpoints for managing stock rotation rota's

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

David Nind  changed:

   What|Removed |Added

 Attachment #159362|0   |1
is obsolete||

--- Comment #11 from David Nind  ---
Created attachment 159420
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=159420=edit
Bug 35430: Add rota endpoints for stockrotation

This patch adds the CRUD endpoints for stock rotation rota's.

Signed-off-by: David Nind 

-- 
You are receiving this mail because:
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 35430] Add endpoints for managing stock rotation rota's

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

David Nind  changed:

   What|Removed |Added

 Attachment #159361|0   |1
is obsolete||

--- Comment #10 from David Nind  ---
Created attachment 159419
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=159419=edit
Bug 35430: Add unit tests for new stockrotation endpoints

Signed-off-by: David Nind 

-- 
You are receiving this mail because:
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 35430] Add endpoints for managing stock rotation rota's

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

David Nind  changed:

   What|Removed |Added

 Attachment #159360|0   |1
is obsolete||

--- Comment #9 from David Nind  ---
Created attachment 159418
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=159418=edit
Bug 35430: Move 'Stage' into StockRotation directory

Cleaning up a little, I opt to move the 'Stage' controller under a new
StockRotation parent directory.

Signed-off-by: David Nind 

-- 
You are receiving this mail because:
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 35430] Add endpoints for managing stock rotation rota's

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

David Nind  changed:

   What|Removed |Added

 Status|Needs Signoff   |Signed Off

-- 
You are receiving this mail because:
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 30627] koha-run-backups delete the backup files after finished its job without caring days option

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

David Nind  changed:

   What|Removed |Added

 CC||da...@davidnind.com
   Assignee|koha-b...@lists.koha-commun |andreas.jons...@kreablo.se
   |ity.org |

--- Comment #5 from David Nind  ---
Added assignee.

-- 
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 34900] The translation of the string "The " should depend on context

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

David Nind  changed:

   What|Removed |Added

   Assignee|koha-b...@lists.koha-commun |oleon...@myacpl.org
   |ity.org |
 CC||da...@davidnind.com

--- Comment #12 from David Nind  ---
Added assignee.

-- 
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 35453] Wrong 'Laserdisc)' string on 007 builder (MARC21)

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

David Nind  changed:

   What|Removed |Added

 Attachment #159396|0   |1
is obsolete||

--- Comment #2 from David Nind  ---
Created attachment 159417
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=159417=edit
Bug 35453: Fix wrong 'Laserdisc)' string on 007 builder (MARC21)

Steps to reproduce:
1. On cataloguing, open the 007 builder.
2. Choose material type 'Video recording'
3. On 04 choose g - Laserdisc
4. Click save
=> SUCCESS: 'g' correctly shows on the 007
5. Edit the 007 again
=> FAIL: on 04, 'g - Laserdisc)' is displayed
6. Apply this patch
7. Repeat 4 and 5
=> SUCCESS: no trailing ')'
8. Sign off :-D

Signed-off-by: Tomas Cohen Arazi 
Signed-off-by: David Nind 

-- 
You are receiving this mail because:
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 35453] Wrong 'Laserdisc)' string on 007 builder (MARC21)

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

David Nind  changed:

   What|Removed |Added

 Status|Needs Signoff   |Signed Off

-- 
You are receiving this mail because:
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 35452] Provide more info when using Link authorities automatically

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

David Nind  changed:

   What|Removed |Added

   Assignee|koha-b...@lists.koha-commun |adolfo.rodrig...@xercode.es
   |ity.org |
  Text to go in the||This enhancement adds more
  release notes||useful information to the
   ||automatic authority link
   ||results when editing a
   ||record and using "Link
   ||authorities automatically".
   ||It now includes the value
   ||you used for each authority
   ||entry (such as 650$a and
   ||$700$a), so you know which
   ||ones to look at.
   ||Previously, it only
   ||included the field number,
   ||such as 650, and not the
   ||term.
   ||
   ||Example of new
   ||automatic authority link
   ||results:
   ||- 650 - Biologie.
   ||- More than one local match
   ||found. Possibly a duplicate
   ||authority!
   ||- 650 - Biology.
   ||- More than one local match
   ||found. Possibly a duplicate
   ||authority!
   ||- 700 -
   ||Aristophanes. - More than
   ||one local match found.
   ||Possibly a duplicate
   ||authority!
   ||- 700 - Beckett,
   ||Samuel, 1906-1989. - More
   ||than one local match found.
   ||Possibly a duplicate
   ||authority!
 CC||da...@davidnind.com

--- Comment #3 from David Nind  ---
This is a nice enhancement!

I've added an assignee and some release notes.

Testing notes (using koha-testing-docker (KTD)):

1. Paste these terms in new 650$a or 700$a fields for a record, instead of
using the tag editor:
   - 650$a: Biologie.
   - 650$a: Biology.
   - 700$a: Aristophanes.
   - 700$a: Beckett, Samuel, 1906-1989.

2. After the patch is applied, you get a more useful message of where to look
to fix things up:

   Automatic authority link results:
   - 650 - Biologie. - More than one local match found. Possibly a duplicate
authority!
   - 650 - Biology. - More than one local match found. Possibly a duplicate
authority!
   - 700 - Aristophanes. - More than one local match found. Possibly a
duplicate authority!
   - 700 - Beckett, Samuel, 1906-1989. - More than one local match found.
Possibly a duplicate authority!

-- 
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 35452] Provide more info when using Link authorities automatically

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

David Nind  changed:

   What|Removed |Added

 Attachment #159408|0   |1
is obsolete||

--- Comment #2 from David Nind  ---
Created attachment 159416
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=159416=edit
Fix - Bug 35452 - Provide more info when using Link authorities automatically

Test plan
1 Edit a record and add several 7xx and 6xx
2 Click on Link authorities automatically and check that the result only shows
the field numbers
3 Apply patch, restart services
4 Click on Link authorities automatically and check that the result shows the
field numbers and the info of the entry

Signed-off-by: David Nind 

-- 
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 35452] Provide more info when using Link authorities automatically

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

David Nind  changed:

   What|Removed |Added

 Status|Needs Signoff   |Signed Off

-- 
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 30230] Search for patrons in checkout should not require edit_borrowers permission

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

David Nind  changed:

   What|Removed |Added

 CC||da...@davidnind.com
   Assignee|koha-b...@lists.koha-commun |thibaud.guil...@biblibre.co
   |ity.org |m

--- Comment #24 from David Nind  ---
Added assignee.

-- 
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 35438] Importing records can create too large transactions

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

David Nind  changed:

   What|Removed |Added

 Attachment #159413|0   |1
is obsolete||

--- Comment #3 from David Nind  ---
Created attachment 159415
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=159415=edit
Bug 35438: Transact each record import separately

When importing a staged file we commit every 50 records
For an authority import we are also merging, which can affect many more
biblios, and these all end up in the transaction.
This can cause tables locks and issues across Koha

Test Plan:
1) Apply this patch
2) prove t/db_dependent/ImportBatch.t

Signed-off-by: David Nind 

-- 
You are receiving this mail because:
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 35438] Importing records can create too large transactions

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

David Nind  changed:

   What|Removed |Added

 Status|Needs Signoff   |Signed Off

-- 
You are receiving this mail because:
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 30645] Patron search not building the query correctly for extended attributes if several terms passed

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

Pedro Amorim  changed:

   What|Removed |Added

 Status|NEW |In Discussion
   Assignee|koha-b...@lists.koha-commun |pedro.amo...@ptfs-europe.co
   |ity.org |m
 CC||katrin.fisc...@bsz-bw.de,
   ||matt.blenkinsop@ptfs-europe
   ||.com, tomasco...@gmail.com

-- 
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 30645] Patron search not building the query correctly for extended attributes if several terms passed

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

--- Comment #6 from Pedro Amorim  ---
Created attachment 159414
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=159414=edit
Bug 30645: Consider multiple instances of extended_attributes in query params

This is a POC but its fully functional afaik.

Im not 100% happy with the code as Im addressing the 3 possible related
metadata tables individually.
Im also not sure if this is the best place to put this code, please advise.

Testing in the UI, this is fixing the patron search and the licenses additional
fields search (requires bug 35287 applied)

ILL is still not working, but I think its because the query builder in the
javascript is not breaking apart multiple search words, in other words, this
fix should also fix ILL illrequestattributes once the javascript is looked at.

Joubu can you please rebase your test patch?

-- 
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 8367] How long is a hold waiting for pickup at a more granular level

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

David Nind  changed:

   What|Removed |Added

  Text to go in the|This patch adds a new value |This enhancement adds a new
  release notes|to the circulation rules:   |value to the circulation
   |'holds pickup period'. It   |rules: 'holds pickup
   |overrides the value set in  |period'. It overrides the
   |the |value set in the
   |`ReservesMaxPickUpDelay`|`ReservesMaxPickUpDelay`
   |system preference and   |system preference and
   |allows to set different |allows setting different
   |delays for specific item|delays for specific item
   |type, patron category and   |type, patron category, and
   |library combinations.   |library combinations.

-- 
You are receiving this mail because:
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 35184] Consolidate UNIMARC value builders for 100, 124, 125, 126

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

David Nind  changed:

   What|Removed |Added

   See Also||https://bugs.koha-community
   ||.org/bugzilla3/show_bug.cgi
   ||?id=35443

-- 
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 34014] There is no way to fix records with broken MARCXML

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

David Nind  changed:

   What|Removed |Added

   See Also||https://bugs.koha-community
   ||.org/bugzilla3/show_bug.cgi
   ||?id=35443

-- 
You are receiving this mail because:
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 35443] Persistent encoding error message in Advanced Editor

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

David Nind  changed:

   What|Removed |Added

 CC||da...@davidnind.com
   See Also||https://bugs.koha-community
   ||.org/bugzilla3/show_bug.cgi
   ||?id=34014,
   ||https://bugs.koha-community
   ||.org/bugzilla3/show_bug.cgi
   ||?id=35184

--- Comment #1 from David Nind  ---
Hi Esther.

Thanks for providing a sample record!

I had a go at testing the sample record you provided in Koha 23.05.05.

I didn't encounter any errors importing, viewing, or editing with the standard
and advanced editor (apart from needing to change 942$c).

Tested using koha-testing-docker (KTD).

David

-- 
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 35438] Importing records can create too large transactions

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

Kyle M Hall  changed:

   What|Removed |Added

   Assignee|koha-b...@lists.koha-commun |k...@bywatersolutions.com
   |ity.org |

-- 
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 35438] Importing records can create too large transactions

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

--- Comment #2 from Kyle M Hall  ---
Created attachment 159413
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=159413=edit
Bug 35438: Transact each record import separately

When importing a staged file we commit every 50 records
For an authority import we are also merging, which can affect many more
biblios, and these all end up in the transaction.
This can cause tables locks and issues across Koha

Test Plan:
1) Apply this patch
2) prove t/db_dependent/ImportBatch.t

-- 
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 35438] Importing records can create too large transactions

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

Kyle M Hall  changed:

   What|Removed |Added

 Status|NEW |Needs Signoff

-- 
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 35443] Persistent encoding error message in Advanced Editor

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

Lauren Denny  changed:

   What|Removed |Added

 CC||lauren_de...@sil.org

-- 
You are receiving this mail because:
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 34955] One Koha manual

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

--- Comment #6 from Jonathan Druart  ---
(In reply to Martin Renvoize from comment #4)
> Jonathans set symlinks at the manual hosting end to ensure that koha help
> links continue to work going forward.

For the sake of completeness: symlinks have been created starting from 23.11.
Older versions are preserved.

-- 
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 33547] Print slips from the preservation module

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

Katrin Fischer  changed:

   What|Removed |Added

  Component|Notices |Preservation

-- 
You are receiving this mail because:
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 35387] Capitalization: 'name' label in preservation module

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

Martin Renvoize  changed:

   What|Removed |Added

 CC||martin.renvoize@ptfs-europe
   ||.com
  Component|Templates   |Preservation

-- 
You are receiving this mail because:
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 34030] Print slips in a batch from the preservation module

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

Katrin Fischer  changed:

   What|Removed |Added

  Component|Tools   |Preservation

-- 
You are receiving this mail because:
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 30708] Creation of a new 'Preservation' module

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

Martin Renvoize  changed:

   What|Removed |Added

 CC||martin.renvoize@ptfs-europe
   ||.com
  Component|Tools   |Preservation

-- 
You are receiving this mail because:
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 34955] One Koha manual

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

Martin Renvoize  changed:

   What|Removed |Added

   Keywords||rel_23_11_candidate

-- 
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 34955] One Koha manual

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

--- Comment #5 from Martin Renvoize  ---
Suggest we push an empty commit for this one to ensure it appears in the
release notes :)

git commit --allow-empty -s -m "Bug 34955: One Koha 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 34188] Require library selection when logging in

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

Katrin Fischer  changed:

   What|Removed |Added

  Text to go in the||When the new system
  release notes||preference
   ||`ForceLibrarySelection` is
   ||activated, staff users will
   ||have to choose a library
   ||when logging into the staff
   ||interface.

-- 
You are receiving this mail because:
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 34955] One Koha manual

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

Martin Renvoize  changed:

   What|Removed |Added

 Status|Signed Off  |Passed QA

-- 
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 34955] One Koha manual

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

Martin Renvoize  changed:

   What|Removed |Added

 Status|Needs Signoff   |Signed Off

-- 
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 34955] One Koha manual

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

Martin Renvoize  changed:

   What|Removed |Added

 Status|NEW |Needs Signoff

-- 
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 33662] Add link to order search to acq module navigation

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

Katrin Fischer  changed:

   What|Removed |Added

  Component|Staff interface |Acquisitions

-- 
You are receiving this mail because:
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 33499] Make interface URL clickable on vendor details

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

Katrin Fischer  changed:

   What|Removed |Added

  Component|Staff interface |Acquisitions

-- 
You are receiving this mail because:
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 32986] Add ability to generate custom slips for patrons

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

Katrin Fischer  changed:

   What|Removed |Added

  Text to go in the||This feature makes it
  release notes||possible to create custom
   ||slips that will appear in
   ||the 'Print' menu in the
   ||patron's user account in
   ||staff. For this purpose a
   ||new module was added to the
   ||pull down in the notices
   ||and slips tool: 'Patrons
   ||(custom slip)'.
   Keywords|rel_23_11_candidate |

-- 
You are receiving this mail because:
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 34955] One Koha manual

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

Martin Renvoize  changed:

   What|Removed |Added

  Text to go in the|From 23.11, there is one|From 23.11, there is one
  release notes|Koha manual for all Koha|Koha manual for all Koha
   |versions. Notes are used in |versions.
   |the manual to indicate in   |
   |which Koha version a|Notes are used
   |feature has appeared or |in the manual to indicate
   |changed. Previous manual|in which Koha version a
   |versions (23.05 and older)  |feature has appeared or
   |are not affected.   |changed.
   ||
   ||Previous manual
   ||versions (23.05 and older)
   ||are not affected.

-- 
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 32986] Add ability to generate custom slips for patrons

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

Katrin Fischer  changed:

   What|Removed |Added

  Component|Staff interface |Notices

-- 
You are receiving this mail because:
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 31477] Switch icon for inventory

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

Katrin Fischer  changed:

   What|Removed |Added

  Component|Staff interface |Cataloging

-- 
You are receiving this mail because:
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 34230] Add part_name and part_number to subscription result list

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

Katrin Fischer  changed:

   What|Removed |Added

  Text to go in the||**Sponsored by** *The
  release notes||Research University in the
   ||Helmholtz Association
   ||(KIT)*

-- 
You are receiving this mail because:
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 34199] Add part_name and part_number to subscription detail page

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

Katrin Fischer  changed:

   What|Removed |Added

  Text to go in the||**Sponsored by** *The
  release notes||Research University in the
   ||Helmholtz Association
   ||(KIT)*

-- 
You are receiving this mail because:
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 33926] Add ability to specify fields allowed in a response

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

Martin Renvoize  changed:

   What|Removed |Added

 CC||martin.renvoize@ptfs-europe
   ||.com
  Text to go in the||**Sponsored by** *ByWater
  release notes||Solutions*

-- 
You are receiving this mail because:
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 33217] Allow different default sorting when click author links

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

Katrin Fischer  changed:

   What|Removed |Added

  Text to go in the||Authors and contributors in
  release notes||the detail pages are linked
   ||to search for more
   ||materials of the same
   ||persons or institutions.
   ||Before this patch, these
   ||would use the normal
   ||default sorting, like
   ||relevancy, which isn't as
   ||helpful for these results.
   ||The new system preferences
   ||`AuthorLinkSortBy` and
   ||`AuthorLinkSortOrder` now
   ||allow to change the sort
   ||order for these links
   ||specifically.

-- 
You are receiving this mail because:
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 34868] Add ability for SIP2 to distinguish missing item from other lost types

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

Martin Renvoize  changed:

   What|Removed |Added

  Text to go in the||**Sponsored by** *ByWater
  release notes||Solutions*
 CC||martin.renvoize@ptfs-europe
   ||.com

-- 
You are receiving this mail because:
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 34955] One Koha manual

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

Aude Charillon  changed:

   What|Removed |Added

Summary|One Koha manual (to rule|One Koha manual
   |them all)   |

-- 
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 34737] Enhance SIP2SortBinMapping to support additional match conditions

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

Martin Renvoize  changed:

   What|Removed |Added

  Text to go in the||**Sponsored by** *PTFS
  release notes||Europe Ltd*

-- 
You are receiving this mail because:
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 34955] One Koha manual (to rule them all)

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

--- Comment #4 from Martin Renvoize  ---
Jonathans set symlinks at the manual hosting end to ensure that koha help links
continue to work going forward.

Links will still take the form /version_number/language/page.html.. but the
actual content will all just be the same as /latest.

-- 
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 34456] Add the ability to download a template rendered report as a file

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

Katrin Fischer  changed:

   What|Removed |Added

  Text to go in the||This allows to create new
  release notes||download formats for
   ||reports using notice
   ||templates. You can create
   ||different file formats,
   ||specifying the file name
   ||and ending in the
   ||accordingly labelled field
   ||when setting up the notice.

-- 
You are receiving this mail because:
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 32335] Allow stock rotation items to be moved several stages ahead

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

Martin Renvoize  changed:

   What|Removed |Added

  Component|Circulation |Cataloging

-- 
You are receiving this mail because:
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 34955] One Koha manual (to rule them all)

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

Aude Charillon  changed:

   What|Removed |Added

  Text to go in the||From 23.11, there is one
  release notes||Koha manual for all Koha
   ||versions. Notes are used in
   ||the manual to indicate in
   ||which Koha version a
   ||feature has appeared or
   ||changed. Previous manual
   ||versions (23.05 and older)
   ||are not affected.

-- 
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 34136] Add ability to render a report using a notice template

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

Katrin Fischer  changed:

   What|Removed |Added

  Text to go in the||With this feature you can
  release notes||use a notice template for
   ||rendering the results of a
   ||report in the reports
   ||module. As you can use
   ||Template Toolkit and HTML
   ||in notices, this gives you
   ||a lot of flexibility to
   ||create for example a nice
   ||print format for your data.
   ||
   ||Once a notice has been
   ||created with the module
   ||'Reports' selected, you
   ||will have the option to run
   ||your report using the
   ||template.

-- 
You are receiving this mail because:
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 27378] Enable compliance with EU Cookie Legislation via cookie consent

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

Martin Renvoize  changed:

   What|Removed |Added

  Text to go in the|This new features adds  |This new features adds
  release notes|proper handling of tracking |proper handling of tracking
   |cookies into Koha.
 |cookies into Koha.
   |
   |
   |An  |An
   |administrator can now   |administrator can now
   |enable the option for end   |enable the option for end
   |users to accept or deny |users to accept or deny
   |non-essential cookies being |non-essential cookies being
   |stored in their browser |stored in their browser
   |using the new system|using the new system
   |preference `CookieConsent`. |preference `CookieConsent`.
   |
   |
   |Once enabled, the   |Once enabled, the
   |administrator should add|administrator should add
   |their non-essential cookie  |their non-essential cookie
   |code into   |code into
   |`CookieConsentedJS` as  |`CookieConsentedJS` as
   |aposed to `OPACUserJS` and  |opposed to `OPACUserJS` and
   |`IntranetUserJS`.   |`IntranetUserJS`.
   ||
   ||This
   ||will enable a cookie banner
   ||to appear at the bottom of
   ||the screen with options to
   ||allow all, allow essential
   ||and view more information.

-- 
You are receiving this mail because:
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/


  1   2   3   >