[koha-commits] main Koha release repository branch 19.11.x updated. v19.11.02-52-ge72ca7ad70

Git repo owner gitmaster at git.koha-community.org
Fri Jan 31 22:57:05 CET 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  e72ca7ad7040c5d6bfab298cefd584b312bb7996 (commit)
       via  fe24132aefbc241788ea2d5f1e43c39a97eceed4 (commit)
       via  fb1e0114f9097f68ea1a4f29ccf513b2d2cfdae1 (commit)
       via  6734e347270eb23e24cf94231d51a31145aed278 (commit)
       via  cbe6dd4efeda6cc5e5fed13d26624b39dd55a013 (commit)
       via  0a4580afd6309cb0fcfa5fe43e7309d6be2f6ee8 (commit)
       via  0a0620d7e6930bba174601d42603d81abdcf80c7 (commit)
       via  b18b20239c5bd957c9b3b72d06d1ce3edb27cfa7 (commit)
      from  e901fb7842aeddd5ac68f5e8004ad3d186789bab (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 e72ca7ad7040c5d6bfab298cefd584b312bb7996
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Fri Dec 6 15:35:27 2019 +0000

    Bug 24146: Illustrate increasing and decreasing fine
    
    Signed-off-by: Nick Clemens <nick 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>

commit fe24132aefbc241788ea2d5f1e43c39a97eceed4
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Fri Dec 6 15:10:17 2019 +0000

    Bug 24146: Corrections to UpdateFine logic concerning maxFine
    
    The `maxFine` system preference actually refers to the amount of
    outsanding debt (in fines) a patron may have at a given time. This patch
    corrects the functionality of UpdateFine such that it properly respects
    that counter given the payment of accruing fines scenario.
    
    Signed-off-by: Nick Clemens <nick 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>

commit fb1e0114f9097f68ea1a4f29ccf513b2d2cfdae1
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Thu Dec 5 10:14:51 2019 +0000

    Bug 24146: Increment existing fine
    
    We should increment an existing fine even if it has been fully paid off
    whilst it is still incrementing and not create a new fine.
    
    Signed-off-by: Nick Clemens <nick 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>

commit 6734e347270eb23e24cf94231d51a31145aed278
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Wed Dec 4 14:23:14 2019 +0000

    Bug 24146: Add test cases
    
    This patch adds test cases for both checking amountoutstanding values
    are handled correctly and also that the paid down accruing fines do not
    add additional fines on increment.
    
    Test plan:
    Read the changeset and asses whether the changes/additional tests are
    correct as per the expected behaviour.
    
    Signed-off-by: Nick Clemens <nick 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>

commit cbe6dd4efeda6cc5e5fed13d26624b39dd55a013
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Thu Jan 2 18:06:20 2020 +0000

    Bug 9156: Clarify order in the syspref
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 0a4580afd6309cb0fcfa5fe43e7309d6be2f6ee8
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Thu Dec 19 19:05:36 2019 +0000

    Bug 9156: (follow-up) Simplify code
    
    The MARC::Field as_string method can join multiple subfield using a delimiter, this simplifies the code here
    
    Signed-off-by: Andrew Fuerste-Henry <andrew 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>

commit 0a0620d7e6930bba174601d42603d81abdcf80c7
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Tue Nov 19 14:56:05 2019 +0000

    Bug 9156: itemcallnumber not pulling more than 2 subfields
    
    When the itemcallnumber system preference is defined, the item add form
    pulls data from the specified tag and subfield(s) to pre-populate the
    call number field. This update makes it possible to build the
    prepopulated callnumber from more than just the first two subfields.
    
    To test, apply the patch and update the itemcallnumber system preference
    so that it includes more than two subfields. For instance, "092abef"
    
     - Edit a bibliographic record and populate the specified subfields.
       e.g. subfield a -> "One", b-> "Two", e-> "Three", f-> "Four".
     - Save the record and go to the add/edit items screen.
     - The call number field should contain a string which contains each of
       the subfields you populated, concatenated with spaces: "One Two Three
       Four."
     - Test with other numbers of subfields.
     - Test with an empty itemcallnumber preference.
    
    Signed-off-by: Andrew Fuerste-Henry <andrew 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>

commit b18b20239c5bd957c9b3b72d06d1ce3edb27cfa7
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Tue Jan 7 19:52:25 2020 +0000

    Bug 24373: Correct basic cataloging editor CSS
    
    This patch makes minor corrections to the basic MARC editor CSS, fixing
    an error caused by Bug 23259.
    
    To test, apply the patch and clear your browser cache if necessary.
    
    Open the basic MARC editor and check the numbered tabs. There should be
    no stripe of green background showing below the tabs.
    
    Signed-off-by: Lucas Gass <lucas at bywatersolutions.com>
    Signed-off-by: Guillaume Paquet <guillaume at inlibro.com>
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

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

Summary of changes:
 C4/Overdues.pm                                     |  23 +++--
 cataloguing/additem.pl                             |  12 +--
 koha-tmpl/intranet-tmpl/prog/css/addbiblio.css     |   2 +
 .../en/modules/admin/preferences/cataloguing.pref  |   2 +-
 t/db_dependent/Overdues.t                          | 115 +++++++++++++++++++--
 5 files changed, 129 insertions(+), 25 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list