[koha-commits] main Koha release repository branch 19.11.x updated. v19.11.00-21-g17eabbf

Git repo owner gitmaster at git.koha-community.org
Thu Dec 19 23:17:03 CET 2019


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  17eabbf4bf4b48f0ff938f3ac05bcbe40f5970d2 (commit)
       via  1bf0904d2817c250ec7ef70667c7631e4f24d12f (commit)
       via  c589da3c2931bbe0cc1c4f31899b71044c860082 (commit)
       via  5a3056e2a68ac8ab8b47405468dbf86b5a0d2220 (commit)
       via  81403f461278d41b107589fa261247b6e37f581a (commit)
      from  588f67a26da3c649e6ef966004b76e0c46fa2431 (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 17eabbf4bf4b48f0ff938f3ac05bcbe40f5970d2
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Nov 29 14:45:25 2019 +0100

    Bug 24138: Fix calculation of suspension days when a limit is set
    
    If there is a limit for the number of suspension days
    (maxsuspensiondays), the calculation is wrong. We are reducing the
    number of days before taking into account the suspension charging
    interval.
    
    For instance, a checkin is 1 year late and the circ rules are defined to
    charge 7 days every 15 days.
    It results in 365 * 7 / 15 days of suspension => 170 days
    
    Before this patch the calculation was:
    365 * 7 limited to 333, 333 / 15 => 22 days
    
    Test plan:
    Given the examples in the commit messages and the description of the bug
    report, setup complex circulation rules and confirm that the debarment
    dates are calculated correctly
    
    Signed-off-by: Hugo Agud <hagud at orex.es>
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 1bf0904d2817c250ec7ef70667c7631e4f24d12f
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Nov 29 13:55:27 2019 +0100

    Bug 24138: Move the calculation out of the sub
    
    No changes expected here. For the next patch we are going to need to add
    test and calculate the new debarment date. To ease the writing of these
    tests the calculation is moved out of the existing subroutine.
    
    Signed-off-by: Hugo Agud <hagud at orex.es>
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit c589da3c2931bbe0cc1c4f31899b71044c860082
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Nov 25 13:35:25 2019 +0100

    Bug 23970: Make search with "Publication date" field work at any position
    
    The changes made in the following commit:
      commit 0d2e83bca5b91376e9262b6cb0b993f09b919018
      Bug 14636: Item search - fix search and sort by publication date for MARC21
    was put at the wrong place. It was inside a "if $i == 1" test that
    impacts the first field only.
    
    Test plan:
    0/ Use a MARC21 installation
    1/ Search items by publication date, use twice the field using different
    values.
    For instance:
      publication date: 2005 OR
      publication date: 2006
    => Without this patch you only get results for 2005
    => With this patch applied you get results for both years.
    
    Signed-off-by: Joonas Kylmälä <joonas.kylmala at helsinki.fi>
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 5a3056e2a68ac8ab8b47405468dbf86b5a0d2220
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Tue Dec 10 11:44:44 2019 -0300

    Bug 24177: (QA follow-up) Fix warning
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 81403f461278d41b107589fa261247b6e37f581a
Author: Josef Moravec <josef.moravec at gmail.com>
Date:   Tue Dec 10 07:56:55 2019 +0000

    Bug 24177: Import Koha::Account::CreditTypes to cash_register_stats.pl
    
    Test plan:
    0) Do not apply the patch
    1) Confirm the bug - go to Reports -> Cash register
    --> You will see ISE
    2) Apply the patch, and restart_all
    3) Confirm the ISE is gone and you see the form for Cash register report
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

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

Summary of changes:
 C4/Circulation.pm                                  |  142 +++++++++++---------
 catalogue/itemsearch.pl                            |    7 +-
 reports/cash_register_stats.pl                     |    5 +-
 .../Circulation/IssuingRules/maxsuspensiondays.t   |   57 +++++++-
 4 files changed, 140 insertions(+), 71 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list