[koha-commits] main Koha release repository branch master updated. v19.11.00-1825-geed7aa216c

Git repo owner gitmaster at git.koha-community.org
Fri Apr 17 15:18:37 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, master has been updated
       via  eed7aa216c2096f2ac329d143b7ccbcb2c81139c (commit)
       via  54630c842e800efefd95a4facf9907cd29a5b9cb (commit)
       via  ca452f07d5a04eb0159b35b3dc97173241a78f82 (commit)
       via  66135bc4c5e805b6b525a5dacbb208f696ee6b39 (commit)
       via  9a65730c0fdae9c1c866a5e4b6471fc3bb6754c6 (commit)
       via  8e4bf7608e233a7e6284b39262a77b23867b6f67 (commit)
       via  7d15ff34043aeb2a812a1139aba084cf4c1bc136 (commit)
       via  6229b51d663b868532102e60a4517ae2d4fb44cd (commit)
       via  27716ceef8b5b97405bb4807eac2b58fe3d5e11b (commit)
       via  e08eae728ce36b0ee6913501fd44a4a3b5ae976b (commit)
      from  96bc0afee25f16953279c4c91f21c9cf2fc62f4b (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 eed7aa216c2096f2ac329d143b7ccbcb2c81139c
Author: Katrin Fischer <katrin.fischer.83 at web.de>
Date:   Sat Apr 11 10:36:36 2020 +0000

    Bug 24768: Add 'Return claims' to column configuration for checkouts tables
    
    The checkouts tables on the checkouts and details tabs in the staff
    patron account support column confiugration, but the new column
    "Return claims" was missing.
    
    This patch adds the column to the column configuration.
    
    To test:
    - Make sure to test with a patron having return claims and without
    - Verify cou can toggle the visibility of the return claims column
      from top of the tables in the checkouts and details tabs
    - Go to administrastion > column configuration
    - Change the settings for the issues tables in the Patrons and
      Circulation sections
    - Verify the changes have been applied to the tables as configured
    
    Signed-off-by: David Roberts <david at koha-ptfs.co.uk>
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 54630c842e800efefd95a4facf9907cd29a5b9cb
Author: Devinim <kohadevinim at devinim.com.tr>
Date:   Thu Apr 16 11:09:54 2020 +0000

    Bug 25138: (follow-up) Terminology: Point of sale should use library instead of branch
    
    Signed-off-by: Devinim <kohadevinim at devinim.com.tr>
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit ca452f07d5a04eb0159b35b3dc97173241a78f82
Author: Katrin Fischer <katrin.fischer.83 at web.de>
Date:   Sun Apr 12 02:25:48 2020 +0000

    Bug 25138: Terminology: Point of sale should use library instead of branch
    
    This fixes the navigation on the Point of sale page:
    Branch details => Library details
    
    And the heading and the 'no register defined for this branch/library'
    message on the page it links to.
    
    To test:
    - Activate cash registers and point of sales features
    - Go to the point of sales page
    - Verify text on the menu to the left
    - Click on the Branch/library details - verify text and heading
    
    Signed-off-by: Devinim <kohadevinim at devinim.com.tr>
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 66135bc4c5e805b6b525a5dacbb208f696ee6b39
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Fri Apr 17 13:48:47 2020 +0100

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

commit 9a65730c0fdae9c1c866a5e4b6471fc3bb6754c6
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Thu Feb 20 17:15:57 2020 +0000

    Bug 23727: (QA follow-up) Fix for boolean flags
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 8e4bf7608e233a7e6284b39262a77b23867b6f67
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Thu Feb 20 17:10:49 2020 +0000

    Bug 23727: (QA follow-up) Fix script tags
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 7d15ff34043aeb2a812a1139aba084cf4c1bc136
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Fri Feb 14 15:22:17 2020 -0500

    Bug 23727: Editing course reserve items is broken
    
    Adding an item to course reserves and trying to edit any values in a second step does not work. Values are not saved and the table shows all values as "Unchanged".
    
    This patch set adds two new sets of columns to the course_items table.
    
    The first set determines if the specified column should be swapped or
    not. The was previously 'implied' by the column being set to undef which
    has been the root problem with that way of knowing if a column should
    swap or not.
    
    The second set of new columns are for storing the item field values
    while the item is on course reserve. Previously, the column values
    were swapped between the items table and the course_items table,
    which leaves ambiguity as to what each value is. Now, the original
    columns *always* store the value when the item is on course reserve,
    and the new storage columns store the original item value while the
    item is on reserve, and are NULL when an item is *not* on reserve.
    
    Test Plan:
    1) Apply this patch
    2) Add and edit course items, not the new checkboxes for enabling fields
    3) Everything should function as before
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 6229b51d663b868532102e60a4517ae2d4fb44cd
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Fri Feb 14 08:57:05 2020 -0500

    Bug 23727: Add Koha Object(s) related to course reserves
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 27716ceef8b5b97405bb4807eac2b58fe3d5e11b
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Fri Feb 14 08:45:11 2020 -0500

    Bug 23727: Update Schema
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit e08eae728ce36b0ee6913501fd44a4a3b5ae976b
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Fri Feb 14 08:41:28 2020 -0500

    Bug 23727: Add new columns
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

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

Summary of changes:
 C4/CourseReserves.pm                               | 181 +++++++++++----------
 Koha.pm                                            |   2 +-
 Koha/{Desk.pm => Course.pm}                        |  17 +-
 Koha/{Desk.pm => Course/Instructor.pm}             |  17 +-
 Koha/{Desks.pm => Course/Instructors.pm}           |  22 +--
 .../V1/CirculationRules.pm => Course/Item.pm}      |  57 +++++--
 Koha/{Desks.pm => Course/Items.pm}                 |  22 +--
 Koha/{Desk.pm => Course/Reserve.pm}                |  17 +-
 Koha/{Desks.pm => Course/Reserves.pm}              |  22 +--
 Koha/{Desks.pm => Courses.pm}                      |  22 +--
 Koha/Schema/Result/CourseItem.pm                   |  74 ++++++++-
 admin/columns_settings.yml                         |   5 +
 course_reserves/add_items.pl                       |  32 +++-
 course_reserves/batch_add_items.pl                 |  19 ++-
 installer/data/mysql/kohastructure.sql             |   8 +
 installer/data/mysql/updatedatabase.pl             |  69 ++++++++
 .../intranet-tmpl/prog/en/includes/pos-menu.inc    |   2 +-
 .../en/modules/course_reserves/add_items-step2.tt  |  89 ++++++++--
 .../en/modules/course_reserves/batch_add_items.tt  |  39 ++++-
 .../en/modules/course_reserves/course-details.tt   |  24 ++-
 .../intranet-tmpl/prog/en/modules/pos/register.tt  |   2 +-
 .../intranet-tmpl/prog/en/modules/pos/registers.tt |   4 +-
 t/db_dependent/CourseReserves/CourseItems.t        | 101 +++++++-----
 23 files changed, 576 insertions(+), 271 deletions(-)
 copy Koha/{Desk.pm => Course.pm} (74%)
 copy Koha/{Desk.pm => Course/Instructor.pm} (70%)
 copy Koha/{Desks.pm => Course/Instructors.pm} (67%)
 copy Koha/{REST/V1/CirculationRules.pm => Course/Item.pm} (53%)
 copy Koha/{Desks.pm => Course/Items.pm} (69%)
 copy Koha/{Desk.pm => Course/Reserve.pm} (71%)
 copy Koha/{Desks.pm => Course/Reserves.pm} (68%)
 copy Koha/{Desks.pm => Courses.pm} (71%)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list