[koha-commits] main Koha release repository branch master updated. v19.05.00-353-gb2c34bd

Git repo owner gitmaster at git.koha-community.org
Mon Jul 15 14:12:13 CEST 2019


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  b2c34bde8bf7bd3ed7ab7167d6f0944759fb56df (commit)
       via  44a19e2d465ed26f190ba1e73f4e6e8d56548fd2 (commit)
       via  04745be7e2887ae2e1205d311841f20bd55edcf4 (commit)
       via  07af7b228f5513405e14281a9b082374c1c13519 (commit)
       via  bb3a0e5dbc16b4249b3eacae98a26d3479a76f5a (commit)
      from  08a86c233576323f3d347a43690124c6fc8a0073 (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 b2c34bde8bf7bd3ed7ab7167d6f0944759fb56df
Author: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
Date:   Thu Jul 11 10:16:35 2019 +0000

    Bug 23299: Switch address1 and streetnumber for German address format on opac-memberentry
    
    Test plan:
    Toggle value of pref AddressFormat and verify change on opac-memberentry.
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Maryse Simard <maryse.simard at inlibro.com>
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 44a19e2d465ed26f190ba1e73f4e6e8d56548fd2
Author: Katrin Fischer <katrin.fischer.83 at web.de>
Date:   Fri Jul 12 06:15:38 2019 +0000

    Bug 23219: (QA follow-up) Change wording of test slightly
    
    We no longer delete, but cancel the holds when deleting a patron.
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 04745be7e2887ae2e1205d311841f20bd55edcf4
Author: Emmi <emmi.takkinen at outlook.com>
Date:   Tue Jul 9 09:24:30 2019 +0300

    Bug 23219: (QA Follow up) Cancel patrons holds when patron delete
    
    Adds test for patrons holds cancelation when patron is deleted.
    
    Test plan:
    Run t/db_dependent/Koha/Patrons.t
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 07af7b228f5513405e14281a9b082374c1c13519
Author: Emmi <emmi.takkinen at outlook.com>
Date:   Tue Jul 2 11:05:36 2019 +0300

    Bug 23219: Cancel patrons holds when patron delete
    
    Currently deleting a patron deletes all their holds and leaves
    no record to the "old_reserves" table.
    
     Steps to reproduce:
    - Create a patron
    - Add holds for patron
    - Holds are recorded to "reserves" table
    - Delete patron
    - Confirm delete
    =>Patron and all holds are deleted and no record of holds is
    left in "old_reserves" table
    
    This patch displays alert text notifying user that deleting patron
    cancels all their holds. Holds are cancelled instead of deleting them.
    This patch also writes stringified datetime to holds cancel log instead
    of whole datetime object.
    
    To test:
    - Apply this patch
    - Create a patron
    - Add holds for patron
    - Holds are recorded to "reserves" table
    - Delete patron
    - Alert text of holds is displayed
    - Confirm patron delete
    => Patron is deleted, their holds are cancelled and moved to
    "old_reserves" table
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Nadine Pierre <nadine.pierre at inLibro.com>
    Signed-off-by: Arthur Bousquet <arthur.bousquet at inlibro.com>
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit bb3a0e5dbc16b4249b3eacae98a26d3479a76f5a
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Thu Apr 25 11:45:58 2019 +0000

    Bug 22768: Global search form keyboard navigation broken
    
    Bug 22045 made changes to the global staff client JavaScript which
    broken keyboard navigation for the most common forms in the resident
    search form("Check out, Check in, Renew, Search). This patch
    reimplements the tab selection code on the basic MARC editor page so
    that the keyboard shortcut behavior can be restored.
    
    To test, apply the patch go to Cataloging.
    
     - Search for an existing record and edit it in the basic MARC editor.
       - Test that the numbered tabs (0-9) at the top work correctly.
     - Select a tab other than 0 and choose Save -> Save and continue
       editing. When the page reloads you should be returned to the tab you
       were on when you saved.
     - Go to the Circulation home page. Test the keyboard shortcuts for
       switching tabs in header area:
    
       - Alt-u (Check out)
       - Alt-r (Check in)
       - Alt-w (Renew)
       - Alt-q (Search)
    
    Signed-off-by: Claire Gravely <claire.gravely at bsz-bw.de>
    Signed-off-by: Nadine Pierre <nadine.pierre at inLibro.com>
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

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

Summary of changes:
 Koha/Hold.pm                                       |    2 +-
 Koha/Patron.pm                                     |    7 +++--
 .../prog/en/modules/cataloguing/addbiblio.tt       |   19 ++++++++-----
 .../prog/en/modules/members/deletemem.tt           |    3 ++
 koha-tmpl/intranet-tmpl/prog/js/staff-global.js    |    2 +-
 .../bootstrap/en/modules/opac-memberentry.tt       |   29 ++++++++++++--------
 members/deletemem.pl                               |    5 +++-
 t/db_dependent/Koha/Patrons.t                      |    7 +++--
 8 files changed, 48 insertions(+), 26 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list