[koha-commits] main Koha release repository branch master updated. v19.05.00-698-g8d8d002

Git repo owner gitmaster at git.koha-community.org
Fri Sep 27 15:30:25 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  8d8d002eecee3ca78bf44c64b20bf2b91ea8a201 (commit)
       via  bfb798386057b3d3c8847815931bfe7a7f8a302b (commit)
       via  ed2390f999121cd210651d81021f090b6aaada23 (commit)
       via  1001eb3384e7cd9d784d3082d67d2711fd1c20a8 (commit)
       via  e043ba36938e5025a2b39d6f7dc15101da9047d4 (commit)
       via  4ca44685bb56c6e172ec5d9ad3dd769fe2eabfa2 (commit)
      from  d8187991a40f58ab815fd1e75d6a3671ca72a668 (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 8d8d002eecee3ca78bf44c64b20bf2b91ea8a201
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Fri Sep 27 13:13:05 2019 +0100

    Bug 23602: (follow-up) Improve tooltip formatting
    
    This follow-up changes the formatting of the tooltip to add a newline for
    library limit.
    
    To test, apply the patch and go to Administration -> Item types.
    
    In the table of item types, find one with library limitations. Hovering
    over the "# library limitations" test should trigger a Bootstrap-styled
    tooltip showing the library name and code, one per line.
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit bfb798386057b3d3c8847815931bfe7a7f8a302b
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Fri Sep 13 16:13:33 2019 +0000

    Bug 23602: (follow-up) Correct terminology, add tooltip
    
    This follow-up changes the use of "branch" to the Koha standard
    "library." The patch also adds the use of a Bootstrap tooltip for
    showing an item type's library limitations in the main table of item
    types.
    
    To test, apply the patch and go to Administration -> Item types.
    
    In the table of item types, find one with library limitations. Hovering
    over the "# library limitations" test should trigger a Bootstrap-styled
    tooltip showing the library name and code.
    
    Signed-off-by: Maryse Simard <maryse.simard at inlibro.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit ed2390f999121cd210651d81021f090b6aaada23
Author: Agustin Moyano <agustinmoyano at theke.io>
Date:   Fri Sep 13 10:55:30 2019 -0300

    Bug 23602: Display branch limitations in itemtype table
    
    This patch adds a column in itemtype table to display branch limitations.
    
    To test:
    1) Open item types admin page.
    CHECK => there is no column for branch limitations, even if you add a limitation in an item type.
    2) Apply this patch
    SUCCESS => A new column appears that displays branch limitations per item type
    3) Sign off
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Maryse Simard <maryse.simard at inlibro.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 1001eb3384e7cd9d784d3082d67d2711fd1c20a8
Author: Agustin Moyano <agustinmoyano at theke.io>
Date:   Wed Jun 26 02:02:39 2019 -0300

    Bug 23213: Enable minimum payment threshold check in OPAC
    
    This patch enables OPAC to check for the miminum payment threshold per payment method.
    
    If the total amount to pay is less than the threshold, payment for that method is disabled.
    
    To test:
    1) apply dependencies
    2) get 2 payment plugins, one with threshold as https://gitlab.com/thekesolutions/plugins/koha-plugin-pay-via-paypal/uploads/4c66444ff697586dff3d8759c1e5746c/koha-plugin-pay-via-paypal-v1.0.0.kpz and one without threshold as https://github.com/bywatersolutions/koha-plugin-pay-via-paygov/releases/download/v1.0.5/koha-plugin-pay-via-paygov-v1.0.5.kpz
    3) install both plugins
    4) Configure both plugins to work correctly (can be invented data.. we are not interested in the actual payment page, but to test if payment method is allowed)
    5) In plugin with threshold, set minimum threshold to 10
    6) Fetch any user, and create 2 manual invoices, both for the amount of 5
    7) Enter OPAC as user, and go to "my fines" tab
    CHECK => both plugins appear as payment method
    8) Check the checkbox of one of the fines
    SUCCESS => plugin with threshold is now disabled, and has a warning message that says "Minimum amount needed by this service is 10.00"
            => plugin without threshold is enabled
            => if plugin with threshold was selected, "Make payment" button is disabled until an enabled payment method is selected
    9) Check the second checkbox
    SUCCESS => both payment methods are now enabled
    10) Sign off
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit e043ba36938e5025a2b39d6f7dc15101da9047d4
Author: Agustin Moyano <agustinmoyano at theke.io>
Date:   Thu Jun 13 02:57:52 2019 -0300

    Bug 23214: Modify account-table.inc to enable payment of guarantees fines
    
    This patch enables a guarantor to pay guarantees fines in OPAC
    
    To test:
    1. Apply dependencies
    2. On intranet, search for AllowStaffToSetFinesVisibilityForGuarantor preference and set to "Allow"
    3. Enable some payment method
    4. Find a patron with guarantor and edit
    5. Change "Show fines to guarantor" select to "Yes" and save
    6. Create a manual invoice for the patron (guarantee)
    7. Enter OPAC with guarantor user
    8. Go to "your fines" tab
    SUCCESS => Guarantees fines appear, and is selectable to pay
    9. Sign off
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>
    Signed-off-by: Liz Rea <wizzyrea at gmail.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 4ca44685bb56c6e172ec5d9ad3dd769fe2eabfa2
Author: caroline <caroline at inlibro.com>
Date:   Tue Sep 17 17:59:21 2019 -0400

    Bug 23631: fr-CA translation of NEW_SUGGESTION notice
    
    This patch provides the fr-CA translation for the NEW_SUGGESTION notice.
    
    Signed-off-by: Bin Wen <bin.wen 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:
 admin/itemtypes.pl                                 |   10 ++-
 .../mysql/fr-CA/obligatoire/sample_notices.sql     |   30 ++++----
 .../prog/en/modules/admin/itemtypes.tt             |   24 +++++-
 .../bootstrap/en/includes/account-table.inc        |   79 ++++++++++++--------
 .../opac-tmpl/bootstrap/en/modules/opac-account.tt |   29 ++++++-
 5 files changed, 119 insertions(+), 53 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list