[koha-commits] main Koha release repository branch master updated. v3.20.00-1162-g02c69b2

Git repo owner gitmaster at git.koha-community.org
Mon Nov 9 19:03:23 CET 2015


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  02c69b218ad4a7a5e6aa7d390409de1d30a0ddbd (commit)
       via  ee6029c841840f82ba1d8c3c181bba8d55c43bc4 (commit)
       via  9f6ac9be117013087fbe1d79879e4e60c66a1ad8 (commit)
       via  85431368bef418a65d29916ebde4ea846df83a99 (commit)
       via  2df3334705489a45712c746a1ffe053bd19f3f22 (commit)
       via  2443e5b0a7fcd628e868a62363efe96b4c51a9fe (commit)
      from  5e44c97829687d0eb57df8d84f0d3502ae3153bd (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 02c69b218ad4a7a5e6aa7d390409de1d30a0ddbd
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Tue Sep 15 08:28:45 2015 -0400

    Bug 14402: (QA followup) Add notes to usage text about --fees
    
    Added notes to usage in misc/cronjobs/cleanup_database.pl that
    --fees DAYS requires DAYS to be greater than or equal to 1.
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit ee6029c841840f82ba1d8c3c181bba8d55c43bc4
Author: Barton Chittenden <barton at bywatersolutions.com>
Date:   Thu Sep 10 22:03:43 2015 +0000

    Bug 14402: Make purge_zero_balance_fees() delete fees with NULL balance.
    
    Also, add notes to perldocs and usage that payments and
    credits are not linked to fines and may be deleted
    independently of the associated fine.
    
    Signed-off-by: Nancy Keener <nkeener at washoecounty.us>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 9f6ac9be117013087fbe1d79879e4e60c66a1ad8
Author: Barton Chittenden <barton at bywatersolutions.com>
Date:   Sat Jul 18 13:29:29 2015 -0700

    Bug 14402: Add option --fees to /misc/cronjobs/cleanup_database.pl
    
    This will call C4::Accounts::purge_zero_balance_fees to remove all rows
    from accountlines which have 0 balance, and are more than DAYS old.
    
    Test plan:
    
      Run: t/db_dependent/Accounts.t
    
    If all unit tests pass, the --fees option to /misc/cronjobs/cleanup_database.pl
    should act as documented, because it is a straight pass-through to
    C4::Accounts::purge_zero_balance_fees().
    
    http://bugs.koha-community.org/show_bug.cgi?id=14402
    
    Signed-off-by: Nancy Keener <nkeener at washoecounty.us>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 85431368bef418a65d29916ebde4ea846df83a99
Author: Barton Chittenden <barton at bywatersolutions.com>
Date:   Sat Jul 18 12:58:51 2015 -0700

    Bug 14402: Add unit tests for purge_zero_balance_fees()
    
    The function C4::Accounts::purge_zero_balance_fees() should delete rows
    in accountlines where amountoutstanding is 0 and accountlines.date is
    less than the current date minus '$days', i.e a number of days passed
    to the function. Tests were added to prove the following:
    
    * accountlines.amountoutstanding is 0, and date is set to CURRENT_DATE.
      The accountlines row should not be deleted. This is merely a sanity check,
      because difference between today's date and the fee date cannot be
      greater than $days.
    * 'Before', 'On' and 'After' tests for accountlines.amountoutstanding = 0
        * accountlines.amountoutstanding is 0, and date is set to $days - 1
          days ago. The accountlines row should not be deleted.
        * accountlines.amountoutstanding is 0, and date is set to $days
          days ago.  the accountlines row should not be deleted, because
          the difference must be *greater* than $days.
        * accountlines.amountoutstanding is 0, and date is set to $days + 1
          days ago. The accountlines row *will* be deleted in this case.
    * 'Before', 'On' and 'After' tests for accountlines.amountoutstanding > 0.
      (3 tests). The accountlines row will never be deleted, because
      amountoutstanding is not 0.
    * 'Before', 'On' and 'After' tests for accountlines.amountoutstanding < 0.
      (3 testes) This tests credits. Again, the accountlines row will never
      be deleted, because amountoutstanding is not 0.
    
    http://bugs.koha-community.org/show_bug.cgi?id=14402
    
    Signed-off-by: Nancy Keener <nkeener at washoecounty.us>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 2df3334705489a45712c746a1ffe053bd19f3f22
Author: Barton Chittenden <barton at bywatersolutions.com>
Date:   Sat Jul 18 11:41:38 2015 -0700

    Bug 14402: Add function purge_zero_balance_fees to C4/Accounts.pm
    
    http://bugs.koha-community.org/show_bug.cgi?id=14402
    
    Signed-off-by: Nancy Keener <nkeener at washoecounty.us>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 2443e5b0a7fcd628e868a62363efe96b4c51a9fe
Author: Nick Clemens <nick at quecheelibrary.org>
Date:   Sat Mar 21 12:27:04 2015 -0400

    Bug 7369: Duplicate item and add dropdown buttons for item actions
    
    This patch adds a link to duplicate existing items on the edit items screen
    
    To test:
    1 - Apply patch
    2 - navigate to the edit items screen for a record with existing items
    3 - click the duplicate link and ensure item info but not barcode are carried over
    4 - save the item and ensure it is added correctly
    5 - check that all previous functionality on page works as before
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

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

Summary of changes:
 C4/Accounts.pm                                     |   37 ++++++++++-
 cataloguing/additem.pl                             |   34 ++++++++++
 .../prog/en/modules/cataloguing/additem.tt         |   17 +++--
 misc/cronjobs/cleanup_database.pl                  |   53 ++++++++++------
 t/db_dependent/Accounts.t                          |   66 +++++++++++++++++++-
 5 files changed, 179 insertions(+), 28 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list