[koha-commits] main Koha release repository branch master updated. v19.11.00-624-gc0f3170c44

Git repo owner gitmaster at git.koha-community.org
Tue Feb 4 15:04:33 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  c0f3170c44897a200cbf00d3e6026df6f152949c (commit)
       via  88315db11aeb9e567353e755616e169031eaef90 (commit)
       via  07968fc5f68d7bf7c3ae1674489cebab6bea3817 (commit)
       via  fc7d7eece8c64a20305c6efc935128ce55b31f3a (commit)
       via  9b5ff17d79a61156426433bdd2e3c248e63d7431 (commit)
       via  ca511ad957e090832dec4c4370180fd92bd331ae (commit)
       via  9ddb78f0d36910139a6dea4b0375a760f77d65c4 (commit)
       via  eae2dfce063e0b39046f3fffaa460441d2d79060 (commit)
       via  6ac19e02ed1349f93303a3f24b655f38bf70fa5d (commit)
       via  127a92d8ab7dfe21fb216ba4dd6fa6be4ff77acf (commit)
       via  5638a2f731e7d23df696fbb657d8ffdd46de8f49 (commit)
       via  14d1804652daf9c0b83139c3373f4cdaf46b5863 (commit)
      from  87f20fd5fe7f4c67963498f42252bf09bf7a317d (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 c0f3170c44897a200cbf00d3e6026df6f152949c
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Feb 4 12:09:00 2020 +0100

    Bug 19008: Replace issues with checkouts in print statement
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 88315db11aeb9e567353e755616e169031eaef90
Author: Magnus Enger <magnus at libriotech.no>
Date:   Fri Aug 2 13:57:13 2019 +0200

    Bug 19008: More database cleanups - QA followup
    
    This patch tries to change the POD as suggested in the QA process.
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 07968fc5f68d7bf7c3ae1674489cebab6bea3817
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Fri Jul 28 16:09:14 2017 +0200

    Bug 19008: More database cleanups - item transfers
    
    misc/cronjobs/cleanup_database.pl provides some database cleanup.
    Yet some tables that could need cleanup are not in this script.
    
    This patch adds cleanup for branchtransfers table.
    
    Test plan :
    - Count : select count(*),datearrived from branchtransfers group by datearrived;
    - Run cleanup : misc/cronjobs/cleanup_database.pl -v --transfers 30
    - Recount
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    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>

commit fc7d7eece8c64a20305c6efc935128ce55b31f3a
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Fri Jul 28 16:01:51 2017 +0200

    Bug 19008: More database cleanups - old reserves
    
    misc/cronjobs/cleanup_database.pl provides some database cleanup.
    Yet some tables that could need cleanup are not in this script.
    
    This patch adds cleanup for old_reserves table.
    
    Test plan :
    - Count : select count(*),date(timestamp) from old_reserves group by date(timestamp);
    - Run cleanup : misc/cronjobs/cleanup_database.pl -v --old-reserves 30
    - Recount
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    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>

commit 9b5ff17d79a61156426433bdd2e3c248e63d7431
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Fri Jul 28 14:57:33 2017 +0200

    Bug 19008: More database cleanups - old issues
    
    misc/cronjobs/cleanup_database.pl provides some database cleanup.
    Yet some tables that could need cleanup are not in this script.
    
    This patch adds cleanup for old_issues table.
    
    Test plan :
    - Count : select count(*),date(timestamp) from old_issues group by date(timestamp);
    - Run cleanup : misc/cronjobs/cleanup_database.pl -v --old-issues 30
    - Recount
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    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>

commit ca511ad957e090832dec4c4370180fd92bd331ae
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Fri Jul 28 14:43:45 2017 +0200

    Bug 19008: More database cleanups - deleted patrons
    
    misc/cronjobs/cleanup_database.pl provides some database cleanup.
    Yet some tables that could need cleanup are not in this script.
    
    This patch adds cleanup for deletedborrowers table.
    
    Test plan :
    - Count : select count(*),date(updated_on) from deletedborrowers group by date(updated_on);
    - Run cleanup : misc/cronjobs/cleanup_database.pl -v --deleted-patrons 30
    - Recount
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    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>

commit 9ddb78f0d36910139a6dea4b0375a760f77d65c4
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Fri Jul 28 14:05:03 2017 +0200

    Bug 19008: More database cleanups - deleted catalog
    
    misc/cronjobs/cleanup_database.pl provides some database cleanup.
    Yet some tables that could need cleanup are not in this script.
    
    This patch adds cleanup for deleted catalog tables.
    Note that deletedbiblio_metadata is managed by foreign key on biblionumber.
    
    Test plan :
    - Count :
    select count(*),year(timestamp) from deleteditems group by year(timestamp);
    select count(*),year(timestamp) from deletedbiblio group by year(timestamp);
    select count(*),year(timestamp) from deletedbiblioitems group by year(timestamp);
    - Run cleanup : misc/cronjobs/cleanup_database.pl -v --deleted-catalog 30
    - Recount
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    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>

commit eae2dfce063e0b39046f3fffaa460441d2d79060
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Fri Jul 28 14:12:22 2017 +0200

    Bug 19008: More database cleanups - statistics
    
    misc/cronjobs/cleanup_database.pl provides some database cleanup.
    Yet some tables that could need cleanup are not in this script.
    
    This patch adds cleanup for statistics table.
    
    Test plan :
    - Count statistics : select count(*),date(datetime) from statistics group by date(datetime);
    - Run cleanup : misc/cronjobs/cleanup_database.pl -v --statistics 30
    - Recount statistics
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    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>

commit 6ac19e02ed1349f93303a3f24b655f38bf70fa5d
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Feb 4 11:17:11 2020 +0100

    Bug 20708: Add Withdrawn status when placing a request in staff
    
    Same as bug 22021 for the withdrawn status.
    
    1. Withdraw an item
    2. Place an hold on this item
    Notice the new "withdrawn" status in the information column
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 127a92d8ab7dfe21fb216ba4dd6fa6be4ff77acf
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Tue Feb 4 12:36:18 2020 +0000

    Bug 24569: (QA follow-up) Fix closing <a> tag
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 5638a2f731e7d23df696fbb657d8ffdd46de8f49
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Feb 4 10:44:39 2020 +0100

    Bug 24569: Fix "add to basket" link (bug 23031 regression)
    
    The modal needs to be defined in both cases.
    
    Test plan:
    Repeat test plan from bug 23031 and click on the buttons!
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 14d1804652daf9c0b83139c3373f4cdaf46b5863
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Wed Jan 29 12:44:57 2020 +0100

    Bug 21466: Keep all AVs for a given framework
    
    There was a major (and silly) issue in the previous version, only one AV
    was kept as we erased the hash value at the end of each iteration:
    $invalid_locations_per_framework->{$framework->frameworkcode } =
      { items => $items, av_category => $mss->authorised_value, kohafield => $kohafield };
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

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

Summary of changes:
 .../prog/en/modules/acqui/booksellers.tt           |  30 +++---
 .../prog/en/modules/reserve/request.tt             |   4 +
 misc/cronjobs/cleanup_database.pl                  | 114 ++++++++++++++++++++-
 .../maintenance/search_for_data_inconsistencies.pl |  59 ++++++-----
 4 files changed, 167 insertions(+), 40 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list