[Koha-bugs] [Bug 31492] New: Patron image upload fails on first attempt with CSRF failure

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31492

Bug ID: 31492
   Summary: Patron image upload fails on first attempt with CSRF
failure
 Change sponsored?: ---
   Product: Koha
   Version: 22.05
  Hardware: All
OS: All
Status: NEW
  Severity: minor
  Priority: P5 - low
 Component: Patrons
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: matthew.lindfield-sea...@hope.edu.kh
QA Contact: testo...@bugs.koha-community.org
CC: gmcha...@gmail.com, kyle.m.h...@gmail.com

After upgrading to 22.05.004 (and after manually installing
`libmojolicious-plugin-openapi-perl` to get patron search to work - as per
https://www.mail-archive.com/koha@lists.katipo.co.nz/msg28885.html) we are now
seeing an issue uploading patron images.

After logging in to Koha, the first attempt to upload an individual patron
image (from the patron show screen) fails with a CSRF error:

> The form submission failed (Wrong CSRF token). Try to come back, refresh the 
> page, then try again.

Second and subsequent attempts succeed up until we log out and log back in
again. After that the first submission once again fails.

I tailed the logs to see if I could see any errors using `tail -f
/var/log/koha/library/*.log`. On one occasion I saw an error related to
`picture_upload.pl` in `/var/log/koha/library/intranet-error.log` but I can't
reproduce it.

In case it's relevant the error I saw once was:
> [Wed Aug 31 09:55:06.665314 2022] [cgi:error] [pid 288501] [client 
> 136.228.129.94:64313] AH01215: Use of uninitialized value $cardnumber in 
> concatenation (.) or string at 
> /usr/share/koha/intranet/cgi-bin/tools/picture-upload.pl line 66.: 
> /usr/share/koha/intranet/cgi-bin/tools/picture-upload.pl, referer: 
> https:///cgi-bin/koha/circ/circulation.pl?borrowernumber=1790

The CSRF error in the client is reproducible in up-to-date versions of Chrome
on Windows and Safari on macOS so it doesn't seem to be browser or OS specific.

-- 
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 26692] Add barcode image generator service for OPAC

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26692

--- Comment #39 from David Cook  ---
It would be cool to do an Etag header using a MD5 hash of the image bytes, but
the images are so small that it's probably not worth it.

-- 
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 26692] Add barcode image generator service for OPAC

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26692

--- Comment #38 from David Cook  ---
I have a library that is planning to replace physical borrower cards with this
barcode that can be scanned from the user's phone, when they log into their
Koha OPAC account on their phone.

We haven't gone live yet, but I'm sure that experience will teach me more about
anything missing here. 

If it goes well and no one disagrees, we could move the sample OPACUserJS code
into the plugin itself (or add plugin hooks for displaying content in the OPAC
account pages or whatever).

--

Curious to hear what you think, Kyle!

-- 
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 26692] Add barcode image generator service for OPAC

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26692

--- Comment #37 from David Cook  ---
Note that you can use any GD::Barcode supported barcode format by changing that
last path parameter.

And if you use something that doesn't exist like
/api/v1/contrib/opac_account_barcode/public/patrons/57/account_barcode/foo,
you'll get this error message:

{"errors":[{"message":"Not in enum list: COOP2of5, Code39, EAN13, EAN8,
IATA2of5, ITF, Industrial2of5, Matrix2of5, NW7, QRcode, UPCA,
UPCE.","path":"\/barcode_type"}],"status":400}

So that's cool. 

--

Other things to note... you can only get your own barcode. You must be
authenticated and you are only authorised to query based on your own patron_id
(which is available via Javascript in the OPAC).

-- 
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 26692] Add barcode image generator service for OPAC

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26692

--- Comment #36 from David Cook  ---
Created attachment 139994
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=139994=edit
Koha plugin proof-of-concept

This is still just a proof-of-concept but here is some sample code for
OPACUserJS:

$(document).ready(function(){
  let opac_user_views = $("body#opac-user div#opac-user-views");
  if (opac_user_views.length > 0 ){
let borrowernumber = window.borrowernumber;
let url =
`${location.origin}/api/v1/contrib/opac_account_barcode/public/patrons/${borrowernumber}/account_barcode/Code39`;
$.ajax({
type: 'HEAD',
url: url,
success: function(data,status,xhr){
opac_user_views.append(`Your barcode`);  
}
}); 
  }
});

-- 
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 31491] New: C4::Service scripts should be replaced with REST API

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31491

Bug ID: 31491
   Summary: C4::Service scripts should be replaced with REST API
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: Staff Client
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: dc...@prosentient.com.au
QA Contact: testo...@bugs.koha-community.org
CC: gmcha...@gmail.com

Here's a list of some users of C4::Service:

members/default_messageprefs.pl
opac/sco/sco-patron-image.pl
opac/svc/checkout_notes
svc/localization
svc/problem_reports
svc/cataloguing/control_num_sequences
svc/cataloguing/framework
svc/cataloguing/metasearch
svc/config/systempreferences
svc/letters/get
svc/checkout_notes
svc/authorised_values
svc/creator_batches
svc/split_callnumbers

-- 
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 31020] PassItemMarcToXSLT only applies on results pages

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31020

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 31464] Coce images don't always load in Firefox

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31464

Alex Buckley  changed:

   What|Removed |Added

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

-- 
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 31034] Cover images hidden in some browsers

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31034

Alex Buckley  changed:

   What|Removed |Added

   See Also||https://bugs.koha-community
   ||.org/bugzilla3/show_bug.cgi
   ||?id=31464
 CC||alexbuck...@catalyst.net.nz

-- 
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 31464] Coce images don't always load in Firefox

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31464

--- Comment #3 from Alex Buckley  ---
Could bug 31034 be a possible duplicate of this bug 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 30958] OPAC Overdrive search result page broken for translations

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30958

--- Comment #14 from Alex Buckley  ---
(In reply to Victor Grousset/tuxayo from comment #13)
> Backported: Pushed to 21.05.x branch for 21.05.18

Thanks Victor!

-- 
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 31483] Minor UI problem in opac-reset-password.pl

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31483

Lucas Gass  changed:

   What|Removed |Added

 Attachment #139979|0   |1
is obsolete||

--- Comment #4 from Lucas Gass  ---
Created attachment 139993
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=139993=edit
Bug 31483: Fix breadcrumbs on password reset page

To test:
1) Enable EnableExpiredPasswordReset
2) Find a patron and change their password so you know what it is
   supposed to be
3) In the database, expire the patron's password, e.g.
   UPDATE borrowers SET password_expiration_date = '2022-08-22' where
   borrowernumber = 21;
4) Go to the OPAC, try to log in with the patron's credentials
5) Click Reset your password
   => Note that the form is in the grey breadcrumbs box, you can compare
   with any other OPAC page, the grey box should only contain the
   breadcrumbs
6) Apply patch
7) Try steps 4-5 again. The gray breadcrumbs box should be for
   breadcrumbs only!

-- 
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 31483] Minor UI problem in opac-reset-password.pl

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31483

Lucas Gass  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 29777] Fields 580 are wrong displayed in summary column

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29777

Joonas Kylmälä  changed:

   What|Removed |Added

 CC||joonas.kylm...@iki.fi

--- Comment #8 from Joonas Kylmälä  ---
The proposed change doesn't make sense for me, could you explain why it might
fix this issue? I'm unable to reproduce on master, the bug report is for 20.11
though, do you have the issue with master as well?

Also do you use Zebra or Elasticsearch? I used Zebra when trying to reproduce.

-- 
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 3935] Schedule tasks periodically

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3935

Maude  changed:

   What|Removed |Added

 CC||maude.boudr...@collecto.ca

-- 
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 3935] Schedule tasks periodically

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3935

Noémie Labine  changed:

   What|Removed |Added

 CC||noemie.lab...@collecto.ca

-- 
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 31490] Terminology: change "staff client" to "staff interface" in marc-overlay-rules

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31490

--- Comment #1 from Caroline Cyr La Rose  ---
Created attachment 139992
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=139992=edit
Bug 31490: Terminology: change 'staff client' to 'staff interface' in
marc-overlay-rule

This patch corrects the terminology for staff interface in the record overlay
rules administration page.

To test:
1) Apply patch
2) Enable the MARCOverlayRules system preference
3) Go to Administration > Record overlay rules
4) Open the 'Filter' drop-down menu
=> The second option should read 'Staff interface MARC editor'

-- 
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 31490] Terminology: change "staff client" to "staff interface" in marc-overlay-rules

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31490

Caroline Cyr La Rose  changed:

   What|Removed |Added

   Patch complexity|--- |Trivial patch
 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 31490] New: Terminology: change "staff client" to "staff interface" in marc-overlay-rules

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31490

Bug ID: 31490
   Summary: Terminology: change "staff client" to "staff
interface" in marc-overlay-rules
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: System Administration
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: caroline.cyr-la-r...@inlibro.com
QA Contact: testo...@bugs.koha-community.org
CC: gmcha...@gmail.com

When setting overlay rules in administration, one source option is "staff
client MARC editor". The terminology guide indicates we should use "staff
interface" https://wiki.koha-community.org/wiki/Terminology#S

To test:
1) Enable the MARCOverlayRules system preference
2) Go to Administration > Record overlay rules 
3) Open the "Filter" drop-down menu
=> Note that the second option is "Staff client MARC editor"

This should be changed to "Staff interface MARC editor"

-- 
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 31482] Label creator does not call item_barcode_transform plugin hook

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31482

Joonas Kylmälä  changed:

   What|Removed |Added

 CC||joonas.kylm...@iki.fi

--- Comment #3 from Joonas Kylmälä  ---
Shouldn't this actually be a call to C4::Circulation::barcodedecode ?

-- 
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 30661] Able to update more hold parameters via REST API

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30661

Joonas Kylmälä  changed:

   What|Removed |Added

 CC||joonas.kylm...@iki.fi

--- Comment #3 from Joonas Kylmälä  ---
Is it right to allow changing the reservedate after it has been set as you
cannot do that now either through staff or opac as far as I know? Did you
intend to use this to change the reservedate for a hold with reservedate in the
future? Other than that I cannot think of any use case for this. We would have
to probably add some checks to make sure the API user is only able to edit
reservedate in the future, not one that has already passed?

-- 
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 20844] Reset a hold when it is missing after allocation

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20844

Felicity Brown  changed:

   What|Removed |Added

 CC||felicity.brown@montgomeryco
   ||untymd.gov

--- Comment #51 from Felicity Brown  ---
Does this apply to setting a status to "missing" as well as lost?

-- 
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 10950] Add preferred pronoun field to patron record

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10950

Andrew Fuerste-Henry  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 10950] Add preferred pronoun field to patron record

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10950

ByWater Sandboxes  changed:

   What|Removed |Added

 Attachment #139968|0   |1
is obsolete||

--- Comment #72 from ByWater Sandboxes  ---
Created attachment 139991
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=139991=edit
Bug 10950: (follow-up) Change display of pronoun fields

Signed-off-by: Andrew Fuerste-Henry 

-- 
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 10950] Add preferred pronoun field to patron record

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10950

ByWater Sandboxes  changed:

   What|Removed |Added

 Attachment #139908|0   |1
is obsolete||

--- Comment #71 from ByWater Sandboxes  ---
Created attachment 139990
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=139990=edit
Bug 10950: (QA follow-up) Fix typo in hidden check in OPAC patron form

definded => defined

Signed-off-by: Andrew Fuerste-Henry 

-- 
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 10950] Add preferred pronoun field to patron record

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10950

ByWater Sandboxes  changed:

   What|Removed |Added

 Attachment #139621|0   |1
is obsolete||

--- Comment #70 from ByWater Sandboxes  ---
Created attachment 139989
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=139989=edit
Bug 10950: (QA follow-up) Exec

Signed-off-by: Andrew Fuerste-Henry 

Signed-off-by: Andrew Fuerste-Henry 

-- 
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 10950] Add preferred pronoun field to patron record

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10950

ByWater Sandboxes  changed:

   What|Removed |Added

 Attachment #139620|0   |1
is obsolete||

--- Comment #69 from ByWater Sandboxes  ---
Created attachment 139988
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=139988=edit
Bug 10950: (follow-up) fix typo in kohastructure.sql

Signed-off-by: Martin Renvoize 

Signed-off-by: Andrew Fuerste-Henry 

Signed-off-by: Andrew Fuerste-Henry 

-- 
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 10950] Add preferred pronoun field to patron record

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10950

ByWater Sandboxes  changed:

   What|Removed |Added

 Attachment #139619|0   |1
is obsolete||

--- Comment #68 from ByWater Sandboxes  ---
Created attachment 139987
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=139987=edit
Bug 10950: API spec update

Test plan:
1. Apply patch, restart_all, and updatedatabase
2. In the staff client go to a patron record or create a new patron.
3. Notice the pronouns field, make sure you add a value to it.
4. Now notice that the value should display in parentheses in places where the
patron name is displayed.
5. Go to the details page and you should see the value display in quotes. (
next to othernames )

6. Check to make sure you can hide the pronouns field via
BorrowerUnwantedField.
7. Check to make sure you can make the field required with
BorrowerMandatoryField

8. Go to the OPAC to self register. The pronouns field should appear in the
form.
9. Make sure you can make it required (
PatronSelfRegistrationBorrowerMandatoryField ) and that you can hide it (
PatronSelfRegistrationBorrowerUnwantedField ).
10. Once registered check 'your personal details'. Check that the field can be
required (PatronSelfModificationMandatoryField) or hidden (
PatronSelfModificationBorrowerUnwantedField ).

11. Try some notices like ISSUESLIP. You should be able to add either
<> or [% borrower.pronoun %] to the notice and have it
display when you generate the notice.

Signed-off-by: Martin Renvoize 

Signed-off-by: Andrew Fuerste-Henry 

Signed-off-by: Andrew Fuerste-Henry 

-- 
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 10950] Add preferred pronoun field to patron record

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10950

ByWater Sandboxes  changed:

   What|Removed |Added

 Attachment #139618|0   |1
is obsolete||

--- Comment #67 from ByWater Sandboxes  ---
Created attachment 139986
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=139986=edit
Bug 10950: Display pronouns field

Signed-off-by: Martin Renvoize 

Signed-off-by: Andrew Fuerste-Henry 

Signed-off-by: Andrew Fuerste-Henry 

-- 
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 10950] Add preferred pronoun field to patron record

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10950

ByWater Sandboxes  changed:

   What|Removed |Added

 Attachment #139617|0   |1
is obsolete||

--- Comment #66 from ByWater Sandboxes  ---
Created attachment 139985
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=139985=edit
Bug 10950: Add intranet/OPAC form fields

Signed-off-by: Martin Renvoize 

Signed-off-by: Andrew Fuerste-Henry 

Signed-off-by: Andrew Fuerste-Henry 

-- 
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 10950] Add preferred pronoun field to patron record

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10950

ByWater Sandboxes  changed:

   What|Removed |Added

 Attachment #139616|0   |1
is obsolete||

--- Comment #65 from ByWater Sandboxes  ---
Created attachment 139984
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=139984=edit
Bug 10950: Schema update

Signed-off-by: Martin Renvoize 

Signed-off-by: Andrew Fuerste-Henry 

Signed-off-by: Andrew Fuerste-Henry 

-- 
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 10950] Add preferred pronoun field to patron record

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10950

ByWater Sandboxes  changed:

   What|Removed |Added

 Attachment #139615|0   |1
is obsolete||

--- Comment #64 from ByWater Sandboxes  ---
Created attachment 139983
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=139983=edit
Bug 10950: Database update

Signed-off-by: Martin Renvoize 

Signed-off-by: Andrew Fuerste-Henry 

Signed-off-by: Andrew Fuerste-Henry 

-- 
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 14957] Write protecting MARC fields based on source of import

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14957

--- Comment #452 from Caroline Cyr La Rose  
---
Ignore my comment! I saw that it was already merged sorry! I removed the Manual
keyword.

-- 
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 14957] Write protecting MARC fields based on source of import

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14957

Caroline Cyr La Rose  changed:

   What|Removed |Added

   Keywords|Manual  |
 CC||caroline.cyr-la-rose@inlibr
   ||o.com

--- Comment #451 from Caroline Cyr La Rose  
---
I'm not comfortable enough with gitlab to change the merge request to a merge
request to the community manual. Right now it is from David's own project to
David's own project.

-- 
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 25426] Allow return policy to be selected via syspref and not just home library

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25426

Joonas Kylmälä  changed:

   What|Removed |Added

 CC||joonas.kylm...@iki.fi

--- Comment #9 from Joonas Kylmälä  ---
Are all three options needed for the new syspref or just some of them?

-- 
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 31483] Minor UI problem in opac-reset-password.pl

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31483

Joonas Kylmälä  changed:

   What|Removed |Added

 Status|Signed Off  |Failed QA
 CC||joonas.kylm...@iki.fi

--- Comment #3 from Joonas Kylmälä  ---
Please close the ol tag explicitly with .

-- 
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 31489] Typo in EnableExpiredPasswordReset description

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31489

Joonas Kylmälä  changed:

   What|Removed |Added

 CC||joonas.kylm...@iki.fi
 QA Contact|testo...@bugs.koha-communit |joonas.kylm...@iki.fi
   |y.org   |
 Status|Signed Off  |Passed QA

--- Comment #3 from Joonas Kylmälä  ---
Trivial, straight to PQA.

-- 
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 31489] Typo in EnableExpiredPasswordReset description

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31489

Joonas Kylmälä  changed:

   What|Removed |Added

 Attachment #139981|0   |1
is obsolete||

--- Comment #2 from Joonas Kylmälä  ---
Created attachment 139982
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=139982=edit
Bug 31489: Typo in EnableExpiredPasswordReset description

This patch corrects a typo in the EnableExpiredPasswordReset system preference
description.

To test:
1) Apply patch
2) Go to Administration > Global system preferences
3) Search for EnableExpiredPasswordReset
4) Read the description and make sure there are no errors.

Signed-off-by: Joonas Kylmälä 

-- 
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 31489] Typo in EnableExpiredPasswordReset description

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31489

Joonas Kylmälä  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 29925] Add a 'set new password' page for patron's with expired passwords

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29925

Caroline Cyr La Rose  changed:

   What|Removed |Added

 Blocks||31489


Referenced Bugs:

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31489
[Bug 31489] Typo in EnableExpiredPasswordReset description
-- 
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 31489] Typo in EnableExpiredPasswordReset description

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31489

Caroline Cyr La Rose  changed:

   What|Removed |Added

 Depends on||29925
   Assignee|koha-b...@lists.koha-commun |caroline.cyr-la-rose@inlibr
   |ity.org |o.com


Referenced Bugs:

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29925
[Bug 29925] Add a 'set new password' page for patron's with expired passwords
-- 
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 31428] Shorten new button text "Configure this table"

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31428

Martin Renvoize  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 31489] Typo in EnableExpiredPasswordReset description

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31489

--- Comment #1 from Caroline Cyr La Rose  ---
Created attachment 139981
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=139981=edit
Bug 31489: Typo in EnableExpiredPasswordReset description

This patch corrects a typo in the EnableExpiredPasswordReset system preference
description.

To test:
1) Apply patch
2) Go to Administration > Global system preferences
3) Search for EnableExpiredPasswordReset
4) Read the description and make sure there are no errors.

-- 
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 31489] Typo in EnableExpiredPasswordReset description

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31489

Caroline Cyr La Rose  changed:

   What|Removed |Added

   Patch complexity|--- |String patch
 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 31489] New: Typo in EnableExpiredPasswordReset description

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31489

Bug ID: 31489
   Summary: Typo in EnableExpiredPasswordReset description
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: trivial
  Priority: P5 - low
 Component: System Administration
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: caroline.cyr-la-r...@inlibro.com
QA Contact: testo...@bugs.koha-community.org
CC: gmcha...@gmail.com

This was noticed in Bug 29925 (comment 4 by Andrew) but it was pushed as is.

The second sentence of the EnableExpiredPasswordReset system preference
description is currently:
If not enable patrons must either use the 'Forgot your password' feature or
have staff reset their password. 

It should be:
If not **enabled** patrons must either use the 'Forgot your password' feature
or have staff reset their password.

-- 
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 31428] Shorten new button text "Configure this table"

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31428

Owen Leonard  changed:

   What|Removed |Added

 Attachment #139569|0   |1
is obsolete||

--- Comment #3 from Owen Leonard  ---
Created attachment 139980
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=139980=edit
Bug 31428: 'Configure this table' -> 'Configure'

I agree, the shorter wording should be used.

Signed-off-by: Owen Leonard 

-- 
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 31428] Shorten new button text "Configure this table"

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31428

Owen Leonard  changed:

   What|Removed |Added

 Status|Needs Signoff   |Signed Off
   Patch complexity|--- |Trivial patch

-- 
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 29926] Add ability for superlibrarians to edit password expiration dates

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29926

Caroline Cyr La Rose  changed:

   What|Removed |Added

  Documentation||Caroline Cyr La Rose
contact||
  Documentation||https://gitlab.com/koha-com
 submission||munity/koha-manual/-/merge_
   ||requests/585
 CC||caroline.cyr-la-rose@inlibr
   ||o.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 31478] Standardize upload/download icons

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31478

Lucas Gass  changed:

   What|Removed |Added

 CC||lu...@bywatersolutions.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 31488] "You have checked out too many items"

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31488

Magnus Enger  changed:

   What|Removed |Added

   Keywords||Academy

-- 
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 31488] New: "You have checked out too many items"

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31488

Bug ID: 31488
   Summary: "You have checked out too many items"
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: trivial
  Priority: P5 - low
 Component: Self checkout
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: mag...@libriotech.no
QA Contact: testo...@bugs.koha-community.org

This is a tiny, tiny thing, but still...

koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt line 64 says: 

You have checked out too many items and can't
check out any more.

This makes it sound like the patron has done something wrong, and checked out
*too many* items. But they probably just have the maximum number of
items/loans, right? So we should not be accusing people of doing something
wrong, when they are just being very active patrons. :-)

-- 
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 31483] Minor UI problem in opac-reset-password.pl

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31483

Owen Leonard  changed:

   What|Removed |Added

 Attachment #139970|0   |1
is obsolete||

--- Comment #2 from Owen Leonard  ---
Created attachment 139979
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=139979=edit
Bug 31483: Correct tiny HTML error on password reset page

To test:
1) Enable EnableExpiredPasswordReset
2) Find a patron and change their password so you know what it is
   supposed to be
3) In the database, expire the patron's password, e.g.
   UPDATE borrowers SET password_expiration_date = '2022-08-22' where
   borrowernumber = 21;
4) Go to the OPAC, try to log in with the patron's credentials
5) Click Reset your password
   => Note that the form is in the grey breadcrumbs box, you can compare
   with any other OPAC page, the grey box should only contain the
   breadcrumbs
6) Apply patch
7) Try steps 4-5 again. The gray breadcrumbs box should be for
   breadcrumbs only!

Signed-off-by: Owen Leonard 

-- 
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 31483] Minor UI problem in opac-reset-password.pl

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31483

Owen Leonard  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 18064] Long overdue cronjob does not follow the library's calendar and skip closed days

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18064

--- Comment #25 from Thibaud Guillot  ---
If you are interested in this script, I have also opened a BZ
(https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31487) which can be
useful if someone can give me their opinion.

-- 
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 18064] Long overdue cronjob does not follow the library's calendar and skip closed days

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18064

--- Comment #24 from Thibaud Guillot  ---
(In reply to Kyle M Hall from comment #21)
> Comment on attachment 136213 [details] [review]
> Bug 18064 : Add syspref to launch longOverdue script with calendar support
> 
> Review of attachment 136213 [details] [review]:
> -
> 
> ::: misc/cronjobs/longoverdue.pl
> @@ +492,4 @@
> >  }
> >  }
> >  
> > +if (!( C4::Context->preference( 'LongOverdueNoticeCalendar' ) )) {
> 
> Why is this here? I don't understand the utility of suppressing the summary
> if using the calendar.

Yes you're right. I worked on this script again recently and realized that I
had misunderstood this part. We need this output to get the summary, it's my
mistake.

-- 
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 18064] Long overdue cronjob does not follow the library's calendar and skip closed days

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18064

Thibaud Guillot  changed:

   What|Removed |Added

 Attachment #136263|1   |0
is obsolete||

-- 
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 18064] Long overdue cronjob does not follow the library's calendar and skip closed days

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18064

Thibaud Guillot  changed:

   What|Removed |Added

 Attachment #135888|0   |1
is obsolete||

-- 
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 18064] Long overdue cronjob does not follow the library's calendar and skip closed days

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18064

Thibaud Guillot  changed:

   What|Removed |Added

 Attachment #136214|1   |0
is obsolete||

-- 
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 18064] Long overdue cronjob does not follow the library's calendar and skip closed days

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18064

Thibaud Guillot  changed:

   What|Removed |Added

 Attachment #136213|1   |0
is obsolete||

-- 
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 18064] Long overdue cronjob does not follow the library's calendar and skip closed days

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18064

Thibaud Guillot  changed:

   What|Removed |Added

 Attachment #135888|1   |0
is obsolete||

-- 
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 18064] Long overdue cronjob does not follow the library's calendar and skip closed days

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18064

Thibaud Guillot  changed:

   What|Removed |Added

 Attachment #130363|0   |1
is obsolete||

-- 
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 18064] Long overdue cronjob does not follow the library's calendar and skip closed days

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18064

Thibaud Guillot  changed:

   What|Removed |Added

 Attachment #130363|1   |0
is obsolete||

-- 
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 18064] Long overdue cronjob does not follow the library's calendar and skip closed days

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18064

Thibaud Guillot  changed:

   What|Removed |Added

 Attachment #136213|0   |1
is obsolete||
 Attachment #136214|0   |1
is obsolete||
 Attachment #136263|0   |1
is obsolete||

--- Comment #23 from Thibaud Guillot  ---
Created attachment 139978
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=139978=edit
Bug 18064: (follow-up) Remove statement for summary & reorder sysprefs

-- 
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 18064] Long overdue cronjob does not follow the library's calendar and skip closed days

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18064

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 31487] Add emails to message queue by longoverdue script options

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31487

--- Comment #5 from Thibaud Guillot  ---
(In reply to Thibaud Guillot from comment #1)
> Created attachment 139975 [details]
> Bug 24857: No words
> 
> Signed-off-by: Tomas Cohen Arazi 

Sorry for this mistake I missed my attachment

-- 
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 31487] Add emails to message queue by longoverdue script options

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31487

Thibaud Guillot  changed:

   What|Removed |Added

 Attachment #139976|0   |1
is obsolete||

--- Comment #4 from Thibaud Guillot  ---
Created attachment 139977
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=139977=edit
Bug 31487: Add an option to send by mail longoverdue items to borrowers

Test plan:
1) You must have longoverdue items to one or many borrowers
2) You must create a notice template (Notices & slips section)
3) You can run the script misc/cronjobs/longoverdue.pl manually without
--mail option first (see -h or --help for more info about the script)
4) You must see an output with some longoverdues (step 1 required)
5) Now you can run the script with --mail option but like its specify in
"help" option you must add option --code="" (relative to your code
template) and --branchcode="".
6) Normally you will see after the classic output a new block with
emails added to the message queue and it will be sent on the next
misc/cronjobs/process_message_queue.pl script iteration

-- 
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 31487] Add emails to message queue by longoverdue script options

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31487

--- Comment #3 from Thibaud Guillot  ---
Created attachment 139976
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=139976=edit
Bug 31487: Add an option to send by mail longoverdue items to borrowers

Test plan:
1) You must have longoverdue items to one or many borrowers
2) You must create a notice template (Notices & slips section)
3) You can run the script misc/cronjobs/longoverdue.pl manually without
--mail option first (see -h or --help for more info about the script)
4) You must see an output with some longoverdues (step 1 required)
5) Now you can run the script with --mail option but like its specify in
"help" option you must add option --code="" (relative to your code
template) and --branchcode="".
6) Normally you will see after the classic output a new block with
emails added to the message queue and it will be sent on the next
misc/cronjobs/process_message_queue.pl script iteration

-- 
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 31487] Add emails to message queue by longoverdue script options

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31487

Thibaud Guillot  changed:

   What|Removed |Added

 Attachment #139975|0   |1
is obsolete||
 Attachment #139975|1   |0
   is patch||

--- Comment #2 from Thibaud Guillot  ---
Comment on attachment 139975
  --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=139975
Bug 24857: No words

>From 31ab4940449cec56bdb164e34c140b2f80c4c36a Mon Sep 17 00:00:00 2001
>From: Tomas Cohen Arazi 
>Date: Tue, 9 Aug 2022 14:00:40 -0300
>Subject: [PATCH] Bug 24857: No words
>
>Signed-off-by: Tomas Cohen Arazi 
>
>https://bugs.koha-community.org/show_bug.cgi?id=31487
>---
> api/v1/swagger/swagger.yaml | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
>diff --git a/api/v1/swagger/swagger.yaml b/api/v1/swagger/swagger.yaml
>index b152a6f7df..597af62166 100644
>--- a/api/v1/swagger/swagger.yaml
>+++ b/api/v1/swagger/swagger.yaml
>@@ -584,7 +584,7 @@ tags:
>   - description: "Manage import batches\n"
> name: import_batches
> x-display-name: Import batches
>-  - description: "Manate item groups\n"
>+  - description: "Manage item groups\n"
> name: item_groups
> x-displayName: Item groups
>   - description: "Manage items\n"
>-- 
>2.25.1

-- 
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 31487] Add emails to message queue by longoverdue script options

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31487

--- Comment #1 from Thibaud Guillot  ---
Created attachment 139975
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=139975=edit
Bug 24857: No words

Signed-off-by: Tomas Cohen Arazi 

-- 
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 30658] (Bug 29496 follow-up) CheckMandatorySubfields don't work properly with select field in serials-edit.tt for Supplemental issue

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30658

Arthur Suzuki  changed:

   What|Removed |Added

 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12
 CC||arthur.suz...@biblibre.com
 Status|Pushed to stable|Pushed to oldstable

--- Comment #8 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 31186] Search result numbering in OPAC got suppressed

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31186

Arthur Suzuki  changed:

   What|Removed |Added

 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12
 Status|Pushed to stable|Pushed to oldstable
 CC||arthur.suz...@biblibre.com

--- Comment #7 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 27045] Exports using CSV profiles with tab as separator don't work correctly

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27045

Arthur Suzuki  changed:

   What|Removed |Added

 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12
 CC||arthur.suz...@biblibre.com
 Status|Pushed to stable|Pushed to oldstable

--- Comment #24 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 30268] When creating an order from a staged file, mandatory item subfields that are empty do not block form submission

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30268

Arthur Suzuki  changed:

   What|Removed |Added

 Status|Pushed to stable|Pushed to oldstable
 CC||arthur.suz...@biblibre.com
 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12

--- Comment #7 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 7660] Enhanced messaging preferences are not set when creating a child patron from the adult

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7660

Arthur Suzuki  changed:

   What|Removed |Added

 Status|Pushed to stable|Pushed to oldstable
 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12
 CC||arthur.suz...@biblibre.com

--- Comment #19 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 31020] PassItemMarcToXSLT only applies on results pages

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31020

Arthur Suzuki  changed:

   What|Removed |Added

 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12
 CC||arthur.suz...@biblibre.com
 Status|Pushed to stable|Pushed to oldstable

--- Comment #7 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 30935] Holds to pull shows wrong first patron

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30935

Arthur Suzuki  changed:

   What|Removed |Added

 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12
 CC||arthur.suz...@biblibre.com
 Status|Pushed to stable|Pushed to oldstable

--- Comment #11 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 27683] Bind results of GetAnalyticsCount to the EasyAnalyticalRecords pref

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27683

Arthur Suzuki  changed:

   What|Removed |Added

 CC||arthur.suz...@biblibre.com
 Status|Pushed to stable|Pushed to oldstable
 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12

--- Comment #18 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 30447] pendingreserves.pl is checking too many transfers

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30447

Arthur Suzuki  changed:

   What|Removed |Added

 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12
 CC||arthur.suz...@biblibre.com
 Status|Pushed to stable|Pushed to oldstable

--- Comment #19 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 29922] Group of libraries are now displayed in alphabetical order

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29922

Arthur Suzuki  changed:

   What|Removed |Added

 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12
 CC||arthur.suz...@biblibre.com
 Status|Pushed to stable|Pushed to oldstable

--- Comment #26 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 31163] Sort cashup history so that newest entries are first

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31163

Arthur Suzuki  changed:

   What|Removed |Added

 Status|Pushed to stable|Pushed to oldstable
 CC||arthur.suz...@biblibre.com
 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12

--- Comment #7 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 29114] Can not add barcodes with whitespaces at the beginning to the list

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29114

Arthur Suzuki  changed:

   What|Removed |Added

 CC||arthur.suz...@biblibre.com
 Status|Pushed to stable|Pushed to oldstable
 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12

--- Comment #29 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 27667] Display the number of non-indexed records

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27667

Arthur Suzuki  changed:

   What|Removed |Added

 CC||arthur.suz...@biblibre.com
 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12
 Status|Pushed to stable|Pushed to oldstable

--- Comment #15 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 20439] SMS provider sorting

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20439

Arthur Suzuki  changed:

   What|Removed |Added

 Status|Pushed to stable|Pushed to oldstable
 CC||arthur.suz...@biblibre.com
 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12

--- Comment #13 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 31144] When modifying an order we should not load the vendor default discount

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31144

Arthur Suzuki  changed:

   What|Removed |Added

 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12
 Status|Pushed to stable|Pushed to oldstable
 CC||arthur.suz...@biblibre.com

--- Comment #7 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 29105] Add effective_item_type_id to the api items responses

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29105

Arthur Suzuki  changed:

   What|Removed |Added

 Status|Pushed to stable|Pushed to oldstable
 CC||arthur.suz...@biblibre.com
 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12

--- Comment #20 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 30882] Add max_result_window to index config

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30882

Arthur Suzuki  changed:

   What|Removed |Added

 Status|Pushed to stable|Pushed to oldstable
 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12
 CC||arthur.suz...@biblibre.com

--- Comment #17 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 14680] When creating orders from a staged file discounts supplied in the form are added

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14680

Arthur Suzuki  changed:

   What|Removed |Added

 Status|Pushed to stable|Pushed to oldstable
 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12
 CC||arthur.suz...@biblibre.com

--- Comment #15 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 31036] Cash management doesn't take SIP00 (Cash via SIP2) transactions into account

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31036

Arthur Suzuki  changed:

   What|Removed |Added

 Status|Pushed to stable|Pushed to oldstable
 CC||arthur.suz...@biblibre.com
 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12

--- Comment #14 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 31137] Error editing label template

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31137

Arthur Suzuki  changed:

   What|Removed |Added

 Status|Pushed to stable|Pushed to oldstable
 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12
 CC||arthur.suz...@biblibre.com

--- Comment #9 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 31129] Number of restrictions is always "0" on the "Check out" tab

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31129

Arthur Suzuki  changed:

   What|Removed |Added

 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12
 CC||arthur.suz...@biblibre.com
 Status|Pushed to stable|Pushed to oldstable

--- Comment #7 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 31139] basic_workflow.t is failing

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31139

Arthur Suzuki  changed:

   What|Removed |Added

 CC||arthur.suz...@biblibre.com
 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12
 Status|Pushed to stable|Pushed to oldstable

--- Comment #9 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 31145] Add some defaults for acquisitions in TestBuilder

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31145

Arthur Suzuki  changed:

   What|Removed |Added

 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12
 CC||arthur.suz...@biblibre.com
 Status|Pushed to stable|Pushed to oldstable

--- Comment #9 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 25669] ElasticSearch 6: [types removal] Specifying types in put mapping requests is deprecated (incompatible with 7)

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25669

Arthur Suzuki  changed:

   What|Removed |Added

 Version(s)|22.11.00, 22.05.04, |22.11.00, 22.05.04,
released in|21.05.18|21.11.12, 21.05.18

--- Comment #56 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 31141] We can remove 'select_column' from waiting_holds.inc

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31141

Arthur Suzuki  changed:

   What|Removed |Added

 CC||arthur.suz...@biblibre.com
 Status|Pushed to stable|Pushed to oldstable
 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12

--- Comment #10 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 30661] Able to update more hold parameters via REST API

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30661

Johanna Räisä  changed:

   What|Removed |Added

  Change sponsored?|--- |Sponsored

-- 
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 30661] Able to update more hold parameters via REST API

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30661

--- Comment #2 from Johanna Räisä  ---
Created attachment 139974
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=139974=edit
Bug 30661: [FOLLOW-UP] add separate endpoints

This patch adds separate endpoints for updating hold_date and expiration_date.

Test plan:
1) prove t/db_dependent/api/v1/holds.t

Sponsored-by: Koha-Suomi Oy

-- 
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 31054] Manual importing for EDIFACT invoices fails with a 500 error page

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31054

Arthur Suzuki  changed:

   What|Removed |Added

 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12
 Status|Pushed to stable|Pushed to oldstable
 CC||arthur.suz...@biblibre.com

--- Comment #6 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 30661] Able to update more hold parameters via REST API

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30661

Johanna Räisä  changed:

   What|Removed |Added

 Status|NEW |Needs Signoff
   Assignee|koha-b...@lists.koha-commun |johanna.ra...@koha-suomi.fi
   |ity.org |

--- Comment #1 from Johanna Räisä  ---
Created attachment 139973
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=139973=edit
Bug 30661: Allow to update more hold parameters via REST

This patch adds hold_date and expiration_date to holds edit endpoint

Test plan:

1) prove t/db_dependent/api/v1/holds.t

Sponsored-by: Koha-Suomi Oy

-- 
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 31039] Rebase issues lead to duplicate JS for cash summary modal printing

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31039

Arthur Suzuki  changed:

   What|Removed |Added

 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12
 CC||arthur.suz...@biblibre.com
 Status|Pushed to stable|Pushed to oldstable

--- Comment #21 from Arthur Suzuki  ---
thx pushed to 21.11.x for 21.11.12

-- 
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 29333] Importing UNIMARC authorities in MARCXML UTF-8 breaks the encoding

2022-08-30 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29333

Arthur Suzuki  changed:

   What|Removed |Added

 CC||arthur.suz...@biblibre.com
 Version(s)|22.11.00, 22.05.05  |22.11.00, 22.05.05,
released in||21.11.12
 Status|Pushed to stable|Pushed to oldstable

--- Comment #19 from Arthur Suzuki  ---
thx, pushed to 21.11.x for 21.11.12

-- 
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   >