[koha-commits] main Koha release repository branch master updated. v19.11.00-680-gfb69268862

Git repo owner gitmaster at git.koha-community.org
Tue Feb 11 16:05:46 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, master has been updated
       via  fb6926886217de42b1b30bd16d5508924b1b866b (commit)
       via  1547e7c9921b78204a79e124c32453089bb5f963 (commit)
       via  339c27ca807de2966101ec9d2cafc30dccdea332 (commit)
       via  11b44869d95c47a7e6daec8dcb124762a9ee0026 (commit)
      from  987cbc606a1b46c418e7e19eba2f23f63abefbf3 (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 fb6926886217de42b1b30bd16d5508924b1b866b
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Tue Feb 11 14:36:55 2020 +0000

    Bug 8643: DBRev 19.12.00.020
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 1547e7c9921b78204a79e124c32453089bb5f963
Author: Maryse Simard <maryse.simard at inlibro.com>
Date:   Mon Jan 13 11:21:09 2020 -0500

    Bug 8643: Code cleanup
    
    Merges "AreMandatoriesNotOk" and new "AreImportantsNotOk" into one
    function "AreFieldsNotOk". It can search for mandatory or important
    fields depending on the value of it's boolean "mandatory"
    parameter.
    
    To test:
    This patch should not change current behavior.
    Follow the test plan from previous patch and check that saving is
    still prevented for unfilled mandatory fields.
    
    Signed-off-by: David Nind <david at davidnind.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 339c27ca807de2966101ec9d2cafc30dccdea332
Author: simith <simith at inlibro.com>
Date:   Fri Dec 18 11:40:02 2015 -0300

    Bug 8643: Add important constraint to marc subfields
    
    This fix permits to add an "Important" option to the marc structure pages.
    
    Testing:
    
    1) Apply the patch
    2) Run updatedatabase.pl
    3) Regenerate CSS
    4) Define 100 as an "important" field ( Administration » MARC bibliographic framework » MARC structure ( Default Frameword) » Edit )
    5) Define 100$a as an "important" subfield (Administration » MARC bibliographic framework » MARC structure (Default Frameword) » Subfield » Onglet a)
    6) Edit a record to clear the field 100 (subfields are all blank)
    7) Save the record.
    8) Validate the following message:
    
    A few important fields are not filled:
    
        * tag 100 subfield a Nom de personne in tab
        * Field 100 is important, at least one of its subfields should be filled.
    
    Are you sure you want to save?
    
    Sponsored by the CCSR ( http://www.ccsr.qc.ca )
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Signed-off-by: David Nind <david at davidnind.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 11b44869d95c47a7e6daec8dcb124762a9ee0026
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Thu Aug 16 14:41:37 2018 -0300

    Bug 14711: Change prototype for AddReserve - pass a hashref
    
    The number of parameters of AddReserve makes it hard to read and
    maintain.
    This patch replace it with a hashref, which will make the calls more
    readable.
    
    Moreover the bibitems has been removed as it was not used by the
    subroutine.
    
    Test plan:
    - Make sure the tests pass
    - Read the diff and search for typos
    - Place a hold on few items
    
    Note for QA: reservation_date and expiration_date do not match the DB column's names,
    should we?
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

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

Summary of changes:
 C4/Biblio.pm                                       |  12 +-
 C4/ILSDI/Services.pm                               |  26 +-
 C4/Reserves.pm                                     |  33 +-
 C4/SIP/ILS/Transaction/Hold.pm                     |   8 +-
 Koha.pm                                            |   2 +-
 Koha/Club/Hold.pm                                  |  24 +-
 Koha/REST/V1/Holds.pm                              |  25 +-
 Koha/Schema/Result/MarcSubfieldStructure.pm        |  12 +-
 Koha/Schema/Result/MarcTagStructure.pm             |  12 +-
 admin/marc_subfields_structure.pl                  |   8 +-
 admin/marctagstructure.pl                          |  16 +-
 cataloguing/addbiblio.pl                           |   9 +-
 cataloguing/additem.pl                             |   1 +
 installer/data/mysql/kohastructure.sql             |   2 +
 installer/data/mysql/updatedatabase.pl             |  12 +
 koha-tmpl/intranet-tmpl/prog/css/right-to-left.css |   4 +-
 .../intranet-tmpl/prog/css/src/staff-global.scss   |  10 +
 .../prog/en/includes/str/cataloging_additem.inc    |   2 +
 .../en/modules/admin/marc_subfields_structure.tt   |   9 +
 .../prog/en/modules/admin/marctagstructure.tt      |   9 +
 .../prog/en/modules/cataloguing/addbiblio.tt       |  97 ++++--
 .../prog/en/modules/cataloguing/additem.tt         |   5 +-
 koha-tmpl/intranet-tmpl/prog/js/cataloging.js      |  14 +-
 .../intranet-tmpl/prog/js/cataloging_additem.js    |  30 +-
 opac/opac-reserve.pl                               |  17 +-
 reserve/placerequest.pl                            |  54 +++-
 serials/routing-preview.pl                         |  11 +-
 t/db_dependent/Circulation.t                       |  82 +++--
 t/db_dependent/Circulation/issue.t                 |  12 +-
 t/db_dependent/Holds.t                             | 149 ++++++---
 t/db_dependent/Holds/HoldFulfillmentPolicy.t       |  90 +++++-
 t/db_dependent/Holds/HoldItemtypeLimit.t           |  30 +-
 t/db_dependent/Holds/LocalHoldsPriority.t          |  17 +-
 t/db_dependent/Holds/RevertWaitingStatus.t         |  16 +-
 t/db_dependent/HoldsQueue.t                        | 231 +++++++++++---
 t/db_dependent/Items/GetItemsForInventory.t        |  37 ++-
 t/db_dependent/Koha/Acquisition/Order.t            |  36 ++-
 t/db_dependent/Koha/Biblios.t                      |  17 +-
 t/db_dependent/Koha/Holds.t                        |  85 +++---
 t/db_dependent/Koha/Patrons.t                      |  19 +-
 t/db_dependent/Letters/TemplateToolkit.t           |  21 +-
 t/db_dependent/Reserves.t                          | 339 +++++++++++++++------
 t/db_dependent/Reserves/GetReserveFee.t            |  18 +-
 t/db_dependent/Reserves/MultiplePerRecord.t        |  18 +-
 t/db_dependent/SIP/Transaction.t                   |  29 +-
 t/db_dependent/UsageStats.t                        |  10 +-
 t/db_dependent/api/v1/holds.t                      |  49 ++-
 47 files changed, 1339 insertions(+), 430 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list