[koha-commits] main Koha release repository branch 19.05.x updated. v19.05.07-23-ged9f1fcfad

Git repo owner gitmaster at git.koha-community.org
Wed Feb 5 23:16:18 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.05.x has been updated
       via  ed9f1fcfad127df6816394e24361030a3a7325c6 (commit)
       via  e0b5464e9ab406bd5c83bd82a4039f18bf2fb913 (commit)
       via  34024213e08540970f7bdc8bbf37ed0fe5c16fd6 (commit)
       via  91122f420524b64fcbf7e112e6692963cc4f1f05 (commit)
      from  8bcafbe3cfa15974b34c8bb8dc9d10f72205283e (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 ed9f1fcfad127df6816394e24361030a3a7325c6
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Fri Dec 13 17:08:58 2019 +0000

    Bug 10352: Get add operations too
    
    When an add for biblio or item is recorded there is no space in the info field
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    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>
    (cherry picked from commit 428fc6fcc1dc029bed3d85acac1570e964c66c9a)
    
    Signed-off-by: Lucas Gass <lucas at bywatersolutions.com>

commit e0b5464e9ab406bd5c83bd82a4039f18bf2fb913
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Mon Nov 25 12:09:45 2019 +0000

    Bug 10352: (follow-up) Show the biblionumber for items in modification logs
    
    This patch adds a link to the the biblio that shows the biblionumber of the item. It makes things a little more obvious
    
    To test:
    1 - Find a biblio with an item where an itemnumber on another biblio is equal to that biblionumber
       i.e. In the sample data:
            biblionumber 59 with item with itemnumber 127
            item with itemnumber  59 on biblionumber 23
    2 - Edit both items however you wish
    3 - On biblionumber 59 click the modification log
    4 - You should see "Item 127"
    5 - Click "Submit" on the form - this searches as itemnumber
    6 - You should see "Item 59"
    7 - Apply patch
    8 - On biblionumber 59 click the modification log
    9 - You should see "Item 127 from Biblio 59"
    10 - Click "Submit" on the form - this searches as itemnumber
    11 - You should see "Item 59 from Biblio 23"
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    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>
    (cherry picked from commit ec9e2cbd1e54880d1671e3ce2f9b6e30d4aefbfe)
    
    Signed-off-by: Lucas Gass <lucas at bywatersolutions.com>

commit 34024213e08540970f7bdc8bbf37ed0fe5c16fd6
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Nov 25 11:28:40 2019 +0100

    Bug 10352: Use a new object_type parameter instead of the module's name
    
    To dissociate a search on biblio and item, we pass a new "object_type"
    parameter to viewlog.pl. If equals 'biblio' we will assume that "object"
    contains a biblionumber
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    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>
    (cherry picked from commit 346ff47491d3fe0e8768c7fa334e0d8fe4a55e1f)
    
    Signed-off-by: Lucas Gass <lucas at bywatersolutions.com>

commit 91122f420524b64fcbf7e112e6692963cc4f1f05
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon May 13 10:36:14 2019 -0500

    Bug 10352: Display the correct modification logs for bibliographic records
    
    The 'Modification log" link in the cataloguing module returns confusing
    results. The 'object' parameter is the biblionumber, but the all log
    from itemnumber=biblionumber will be displayed as well.
    Since bug 11473 we have the action_logs.info column that is prefixed by
    'item ' or 'biblio ' to disociated an item modification from a biblio
    modif.
    This patch suggests a quick and dirty approach, use this column to make
    sure we are searching for the correct logs.
    /!\ As bug 11473 did not update the existing rows, we will no longer display
    the logs created prior to this change.
    
    Test plan:
    Make sure you have at least 2 bibliographic records with some items
    Make sure you have the biblionumbers of those records that match
    existing itemnumbers
    Edit them (no matter what you change)
    Go to the bibliographic detail page (staff) and click "Modification log"
    You should see the correct changes.
    
    Signed-off-by: hc <hc at interleaf.ie>
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    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>
    (cherry picked from commit 536053d468d87a94544eb013cb7d4d9effae9445)
    
    Signed-off-by: Lucas Gass <lucas at bywatersolutions.com>

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

Summary of changes:
 .../intranet-tmpl/prog/en/includes/biblio-view-menu.inc  |  2 +-
 koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt |  3 ++-
 tools/viewlog.pl                                         | 16 ++++++++++++++--
 3 files changed, 17 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list