[koha-commits] main Koha release repository branch 18.11.x updated. v18.11.02-67-g52e13bf

Git repo owner gitmaster at git.koha-community.org
Fri Feb 1 14:15:06 CET 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, 18.11.x has been updated
       via  52e13bf70c68df255b241f248ec138b96cc41cf1 (commit)
       via  89212f37c75e8e161239945b77248955355e5f18 (commit)
       via  4c928041f1ee5ec4c21aab24dfd7f69399ae330f (commit)
       via  8756b9e2c08700300d6973df70869bd87dd93601 (commit)
       via  a4345d8af3b6e30d21d7cd310dc144fd50d04b8e (commit)
      from  6fe65f120ffcce7e182feb5bb7f9b425774857f7 (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 52e13bf70c68df255b241f248ec138b96cc41cf1
Author: Jasmine Amohia <jasmineamohia.student at wegc.school.nz>
Date:   Tue Jan 15 21:34:32 2019 +0000

    Bug 20569: Improved description of CheckPrevCheckout system preference
    
    The CheckPrevCheckout preference can be overriden by a setting in the
    patron categories, I've edited the options to reflect this.
    
    Test plan:
    1. Check the CheckPrevCheckout system preferences and confirm that the
    options are clear
    
    Signed-off-by: David Nind <david at davidnind.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit 9b69ceeac64850dce05b56c978856bd5d1c43b06)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 89212f37c75e8e161239945b77248955355e5f18
Author: Jasmine Amohia <jasmineamohia.student at wegc.school.nz>
Date:   Wed Jan 16 00:54:52 2019 +0000

    Bug 22138: updated tab names on members/paycollect.pl
    
    Test plan:
    1. Give patron outstanding fees
    2. Search patron and select 'Make payment'
    3. Select either 'Pay' or 'Write off'
    4. Confirm that first tab title remains as 'Transactions'
    5. Confirm that current tab title remains as 'Make a payment'
    
    Signed-off-by: David Nind <david at davidnind.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit 0584d96bc082b5a7ab2b80af69fe2b7cebcbd188)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 4c928041f1ee5ec4c21aab24dfd7f69399ae330f
Author: Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com>
Date:   Tue Jan 8 09:28:35 2019 -0500

    Bug 22083: Typo in circulation_batch_checkouts.tt
    
    There is a typo in circulation_batch_checkouts.tt that makes Koha skip
    a warning if the user cannot borrow due to circulation rules.
    
    This patch corrects this typo.
    
    To test:
    
    1. In Administration > Global system preferences, 'Allow'
       BatchCheckouts and enter patron categories in
       BatchCheckoutsValidCategories
    2. Go to Administration > Circulation and fines rules
    3. Enter a rule where a certain category of patrons (that is in
       BatchCheckoutsValidCategories) cannot take out a particular item type
    4. Search the catalog for an item of that item type
    5. Copy the barcode
    6. Go into patrons and find a patron of that category
    7. Click on the Batch checkout tab
    8. Paste the barcode in the box and click Check out
    9. It should say 'Too many checked out'
    10. Apply the patch
    11. Try the check out again, it should show both warnings ('Too many
        checked out' and 'This patron can't check out this item per library
        circulation policy')
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit 3ee95bd0213943b625ea5a35eb04e45835cf6f65)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 8756b9e2c08700300d6973df70869bd87dd93601
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Mon Jan 7 14:06:01 2019 -0300

    Bug 22066: Record library_id for manual credits
    
    On creating manual credits, the (newly introduced) branchcode should be
    set now. This trivial patch makes it work.
    
    To test:
    - Create a manual credit for a known patron
    - Using MySQL check the result:
      $ sudo mysql
      > SELECT * FROM accountlines WHERE borrowernumber=<known_id>;
    => FAIL: The created accountline row has NULL for the branchcode
    - Apply this patch
    - Create a manual credit for the patron
    - Run:
      > SELECT * FROM accountlines WHERE borrowernumber=<known_id>;
    => SUCCESS: branchcode is set correctly
    -Sign off :-D
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit 094a1cb0703b22d18c061cdc4879c1fc3c76ea80)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit a4345d8af3b6e30d21d7cd310dc144fd50d04b8e
Author: Lucas Gass <lucas at bywatersolutions.com>
Date:   Fri Jan 25 15:37:21 2019 +0000

    Bug 22207: course reserves page does not have unique <body> id
    
    Test plan: Go to cgi-bin/koha/opac-course-reserves.pl in the OPAC and
    make sure the body id is opac-course-reserves
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Mikaël Olangcay Brisebois <mikael.olangcay-brisebois at inLibro.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit 358adce2e75bdd317165c86a9b5064bc52d9e2ad)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

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

Summary of changes:
 .../intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref   |    4 ++--
 .../prog/en/modules/circ/circulation_batch_checkouts.tt            |    2 +-
 koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tt      |    4 ++--
 koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-course-reserves.tt   |    2 +-
 members/mancredit.pl                                               |    3 +++
 5 files changed, 9 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list