[koha-commits] main Koha release repository branch 19.11.x updated. v19.11.05-127-g071ba2e49b

Git repo owner gitmaster at git.koha-community.org
Sat May 9 00:37:44 CEST 2020


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "main Koha release repository".

The branch, 19.11.x has been updated
       via  071ba2e49bfd8eac30bd97f297d0b6ad62265d8c (commit)
       via  76ea2eb9b400072162ce51bb7269001bc57459b6 (commit)
       via  6879393681f89739970d0cb6bd30cbac3926bd19 (commit)
       via  fc836d6e3afa89c8bf4c1b54dd58f5736924a4db (commit)
       via  8f8d8effa61c966e9c85902d6dc600c769060488 (commit)
       via  e939e0e0dc4ec189fae8e863d5296eb60b36fc36 (commit)
       via  d04c97b2d78bbb3366a584fea87b372fd16c199d (commit)
      from  9d4aec3a2ba772d37f12e793216feb428bc14c62 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 071ba2e49bfd8eac30bd97f297d0b6ad62265d8c
Author: Didier Gautheron <didier.gautheron at biblibre.com>
Date:   Mon Apr 27 14:42:49 2020 +0200

    Bug 25291: Escape barcode in ReturnClaims table display
    
    Test Plan:
    
    1) Set ClaimReturnedLostValue
    2) Create a checkout
    3) Claim a return
    4) Change the barcode to something with html inside, </a> will do
    
    Without this patch cgi-bin/koha/members/moremember.pl claim tab barcode link is broken.
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 76ea2eb9b400072162ce51bb7269001bc57459b6
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Mon Apr 27 11:37:13 2020 +0000

    Bug 25229: (follow-up) Move QueryBuilder test to Elasticsearch dir
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 6879393681f89739970d0cb6bd30cbac3926bd19
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Tue Apr 21 13:47:59 2020 +0000

    Bug 25229: Return authid of record rather than 001
    
    Signed-off-by: Frédéric Demians <f.demians at tamil.fr>
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit fc836d6e3afa89c8bf4c1b54dd58f5736924a4db
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Mon Apr 27 11:28:51 2020 +0000

    Bug 25229: Unit test
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 8f8d8effa61c966e9c85902d6dc600c769060488
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Mon Apr 27 07:07:12 2020 -0400

    Bug 25227: Display correct message if item is withdrawn and withdrawn returns are allowed
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit e939e0e0dc4ec189fae8e863d5296eb60b36fc36
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Tue Apr 21 07:11:08 2020 -0400

    Bug 25227: Display correct message if item is lost and lost returns are allowed
    
    Even if a library allows returns of lost items, the SIP server returns the error message "Item lost, return not allowed" if the checkin was not ok for any reason other than it being withdrawn ( and withdrawn items not being returnable ).
    
    The most clear example of this is that when a lost item is not checked out to a patron and is returned. SIP returns that message even though lost items *can* be returned. The actual problem being that the item was not checked out.
    
    Test Plan:
    1) Ensure you can return lost items
    2) Mark an item as lost
    3) Check it in via SIP
    4) Note the message you get back is "Item lost, return not allowed"
    5) Apply this patch
    6) Restart your SIP server
    7) Repeat steps 2 and 3
    8) Note you no longer get the incorrect message!
    
    Signed-off-by: Frédéric Demians <f.demians at tamil.fr>
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit d04c97b2d78bbb3366a584fea87b372fd16c199d
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Mon Apr 27 08:04:07 2020 -0400

    Bug 25227: Add unit tests
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

-----------------------------------------------------------------------

Summary of changes:
 C4/SIP/ILS.pm                                      |  4 +-
 Koha/SearchEngine/Elasticsearch/Search.pm          | 10 ++-
 koha-tmpl/intranet-tmpl/prog/js/checkouts.js       |  8 ++-
 .../QueryBuilder.t                                 |  0
 t/Koha/SearchEngine/Elasticsearch/Search.t         | 65 ++++++++++++++++++
 t/db_dependent/SIP/Transaction.t                   | 78 +++++++++++++++++++++-
 6 files changed, 155 insertions(+), 10 deletions(-)
 rename t/Koha/SearchEngine/{ElasticSearch => Elasticsearch}/QueryBuilder.t (100%)
 create mode 100644 t/Koha/SearchEngine/Elasticsearch/Search.t


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list