[koha-commits] main Koha release repository branch master updated. v3.14.00-1021-g81064f4

Git repo owner gitmaster at git.koha-community.org
Sat May 3 00:31:22 CEST 2014


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  81064f4e2a524b7807a424a320b72a3f21707e7d (commit)
       via  9ab9686250a31b6027d57a294739893ff31ca833 (commit)
       via  80c68171bdefeebf90a958af330d43514a687c5f (commit)
       via  b3f5867bb70d8aa66d9cbecab760dcec12b3faae (commit)
       via  0b2e9dbf620afeca2ec4a82b583c6787d8f1208b (commit)
       via  892111c84d5bbfbc16b39ea93f734a200a8694f7 (commit)
       via  1b618cac3dc1436ba38c78ea5219afc6822f5f5a (commit)
      from  e50bccb9fb6aa4e97021c3cef622f8a548b67bc6 (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 81064f4e2a524b7807a424a320b72a3f21707e7d
Author: Galen Charlton <gmc at esilibrary.com>
Date:   Fri May 2 22:48:02 2014 +0000

    Bug 10694: (follow-up) display the note about restricted patrons consistently
    
    This patch ensures that the note displayed when checking in a loan
    to a restricted patron (and setting the return date) is displayed
    whether or not the circulation staffer has chosen the make the return
    date override sticky.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 9ab9686250a31b6027d57a294739893ff31ca833
Author: Galen Charlton <gmc at esilibrary.com>
Date:   Fri May 2 22:46:23 2014 +0000

    Bug 10694: (follow-up) fix problems with the new Borrowers plugin
    
    TT plugins should *not* be duplicating business logic found
    in other modules.  This patch replaces the copy-and-paste of the
    old IsDebarred logic with a call to the appropriate routine and
    updates the POD.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 80c68171bdefeebf90a958af330d43514a687c5f
Author: Galen Charlton <gmc at esilibrary.com>
Date:   Fri May 2 22:00:45 2014 +0000

    Bug 10694: (follow-up) remove truncate table from test case
    
    Doing a truncate of a table in MySQL causes an implicit commit.
    Consequently, they should not be used in DB-dependent test cases,
    as they will cause the changes to NOT be rolled back.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit b3f5867bb70d8aa66d9cbecab760dcec12b3faae
Author: Galen Charlton <gmc at esilibrary.com>
Date:   Fri May 2 21:48:14 2014 +0000

    Bug 10694: DBrev 3.15.00.042
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 0b2e9dbf620afeca2ec4a82b583c6787d8f1208b
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Wed Apr 23 07:38:11 2014 -0400

    Bug 10694: (follow-up) add unit tests, improve AddReturn POD
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 892111c84d5bbfbc16b39ea93f734a200a8694f7
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Sun Oct 20 18:39:15 2013 -0400

    Bug 10694: (follow-up) fix various issues
    
    - new TT plugin for Borrowers, that at present supplies
      a method for determining if the patron is restricted
    - setting the default value of SpecifyReturnDate to false
      during upgrade to avoid an unwelcome surprise
    - validate the return date on the client side before
      allowing the form to be submitted.
    
    Signed-off-by: Petter Goksoyr Asen <boutrosboutrosboutros at gmail.com>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 1b618cac3dc1436ba38c78ea5219afc6822f5f5a
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Fri Sep 13 11:26:30 2013 -0400

    Bug 10694 - Allow arbitrary backdating of returns
    
    Sometimes libraries need to backdate returns further back in time than
    Koha's dropbox mode will allow. The returns backdating will check in an
    item as if it had been returned on the specified date, and will reduce
    any fine accordingly.
    
    This feature is activated by a new system preference, SpecifyReturnDate.
    
    Test Plan:
    1) Apply this patch
    2) Check out an item, and backdate the due date by 1 month or so
       * This issue needs to generate a fine
    3) Run fines.pl to generate the fine
    4) Browse to returns.pl
    5) Specify a return date of the day after the specified due date
    6) Check the borrowers issue history, you should see the backdated
       return date, rather than today's date
    7) Check the fine, it should be reduced to a fine for a single day
       overdue, rather than the previous larger fine.
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Barbara Knibbs <BKnibbs at farmingtonlibraries.org>
    Signed-off-by: Petter Goksoyr Asen <boutrosboutrosboutros at gmail.com>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Works as described, passes tests and QA script.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

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

Summary of changes:
 C4/Circulation.pm                                  |   49 +++++++++-----
 Koha/Template/Plugin/{Koha.pm => Borrowers.pm}     |   28 ++++----
 circ/returns.pl                                    |   32 ++++++++-
 installer/data/mysql/sysprefs.sql                  |    1 +
 installer/data/mysql/updatedatabase.pl             |   12 ++++
 .../intranet-tmpl/prog/en/includes/calendar.inc    |   28 ++++++++
 .../en/modules/admin/preferences/circulation.pref  |    6 ++
 .../intranet-tmpl/prog/en/modules/circ/returns.tt  |   71 +++++++++++++++++++-
 kohaversion.pl                                     |    2 +-
 t/db_dependent/Circulation_issue.t                 |   12 +++-
 10 files changed, 207 insertions(+), 34 deletions(-)
 copy Koha/Template/Plugin/{Koha.pm => Borrowers.pm} (59%)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list