[koha-commits] main Koha release repository branch master updated. v16.11.00-1072-gc636728

Git repo owner gitmaster at git.koha-community.org
Fri May 12 16:49:44 CEST 2017


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  c6367282dab65b788951d9bf10075503e8d12901 (commit)
       via  10b94f676d8150c8071d2c6593ece951a40257da (commit)
       via  1bc3fe4d916bce19bf3b604fc3352d18e42751a9 (commit)
       via  7fd8f44d71d8ba235fc3ca02847321895c76c887 (commit)
       via  6580be29637ea51c399bcc7697c0037738082aad (commit)
       via  97b43e633d658fee6020756d7e068415940a68cb (commit)
       via  ee53560da63af149815c876369b747f932ba397b (commit)
       via  14fb70aa01b59020f6d610d6b72c21f5a4d01c1b (commit)
      from  115d4f7d2fd8a3550eb6272d50f91f1d05a513a2 (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 c6367282dab65b788951d9bf10075503e8d12901
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Tue May 9 21:16:05 2017 +0000

    Bug 15705 - DBRev 16.12.00.035
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

commit 10b94f676d8150c8071d2c6593ece951a40257da
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Thu May 4 13:22:29 2017 -0400

    Bug 15705 (QA Followup) Remove unused variable, fix typo and add due date to notice
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

commit 1bc3fe4d916bce19bf3b604fc3352d18e42751a9
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Thu May 4 13:21:17 2017 -0400

    Bug 15705: DB Changes - Add [old_]issues.auto_renew_error and the AUTO_RENEWALS notice
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

commit 7fd8f44d71d8ba235fc3ca02847321895c76c887
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Wed May 3 04:17:30 2017 -0300

    Bug 15705: Add --send-notices to the cronjob script
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

commit 6580be29637ea51c399bcc7697c0037738082aad
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Wed May 3 04:17:12 2017 -0300

    Bug 15705: DBIC Schema changes
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

commit 97b43e633d658fee6020756d7e068415940a68cb
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Thu Mar 30 13:55:36 2017 -0300

    Bug 15705: Reset the last error when an auto renew successes
    
    The auto_renew_error has to be reset when an auto renew successes,
    otherwise the patron is not going to receive the correct notice.
    
    Test plan;
    - Checkin an item and mark it as auto renewal (specify a due date in the past to allow auto renewals)
    - Set OPACFineNoRenewalsBlockAutoRenew to 'Block' and 'OPACFineNoRenewals' to '1'
    - Execute the script
    => Auto renewed, column auto_renew_error is null
    - Add a fine of '2' to the patron
    - Execute the script
    => Not auto renewed, column auto_renew_error is 'auto_too_much_oweing'
    => On the interface youo see the correct message "Automatic renewal failed, patron has unpaid fines"
    - Pay the fine
    - Execute the script
    
    Without this patch the auto_renew_error is not reset and the patron is going to
    receive a letter telling him he own too much money to the library
    With this patch the patron will receive a letter to inform him the renew has been done!
    
    Signed-off-by: Jonathan Field <jonathan.field at ptfs-europe.com>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

commit ee53560da63af149815c876369b747f932ba397b
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Oct 24 11:43:31 2016 +0000

    Bug 15705: Add specific warning messages for auto_too_much_oweing
    
    Signed-off-by: Janet McGowan <janet.mcgowan at ptfs-europe.com>
    Signed-off-by: Jonathan Field <jonathan.field at ptfs-europe.com>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

commit 14fb70aa01b59020f6d610d6b72c21f5a4d01c1b
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Jan 29 16:57:21 2016 +0000

    Bug 15705: Notify the user on auto renewing
    
    When an issue is auto renewed, a notice will be sent to the patron.
    The notice will tell if the renewed has been successfully done.
    
    Note that this patch is not ready to be pushed yet, as it has some
    defects:
    - 1 notice per issue
    - no way to disable the notice generation
    - no way to specify patron categories to enable/disable the
      notifications
    
    Test plan:
    Use the automatic_renewals.pl script to auto renew issues.
    If the auto renew has failed or succeeded, a notice will be generated in the
    message_queue table.
    If the error is "too_soon" or is the same as the previous error, the
    notice won't be generated (we do not want to spam the patron).
    
    Signed-off-by: Janet McGowan <janet.mcgowan at ptfs-europe.com>
    Signed-off-by: Jonathan Field <jonathan.field at ptfs-europe.com>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

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

Summary of changes:
 Koha.pm                                            |    2 +-
 Koha/Schema/Result/Issue.pm                        |   12 ++-
 Koha/Schema/Result/OldIssue.pm                     |   12 ++-
 installer/data/mysql/kohastructure.sql             |    2 +
 installer/data/mysql/updatedatabase.pl             |   41 +++++++++
 .../intranet-tmpl/prog/en/includes/strings.inc     |    1 +
 koha-tmpl/intranet-tmpl/prog/js/checkouts.js       |    7 ++
 .../opac-tmpl/bootstrap/en/modules/opac-user.tt    |    3 +
 misc/cronjobs/automatic_renewals.pl                |   90 +++++++++++++++++---
 opac/opac-user.pl                                  |    1 +
 10 files changed, 152 insertions(+), 19 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list