[open-ils-commits] ***SPAM*** [GIT] Evergreen ILS branch master updated. 6ad1181a6e91695bcad3285dcb838d8b5ec395de

Evergreen Git git at git.evergreen-ils.org
Thu Sep 18 16:34:03 EDT 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 "Evergreen ILS".

The branch, master has been updated
       via  6ad1181a6e91695bcad3285dcb838d8b5ec395de (commit)
      from  f513ea3be60ffc84cd767f8c9be05fdb6f7b43e3 (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 6ad1181a6e91695bcad3285dcb838d8b5ec395de
Author: Bill Erickson <berick at esilibrary.com>
Date:   Mon Jun 2 16:14:38 2014 -0400

    LP#1325720 Repair fund rollover year selector query
    
    Dojo dojo stores track values as strings, so values used in data store
    queries must be coerced into strings before performing the query.
    
    This fixes the year query in the fund rollover UI so that the page is
    able to render the results of a rollover without dying from an JS error
    before completing.
    
    Signed-off-by: Bill Erickson <berick at esilibrary.com>
    Signed-off-by: Ben Shum <bshum at biblio.org>

diff --git a/Open-ILS/web/js/ui/default/acq/financial/list_funds.js b/Open-ILS/web/js/ui/default/acq/financial/list_funds.js
index fbf1a74..09a47d5 100644
--- a/Open-ILS/web/js/ui/default/acq/financial/list_funds.js
+++ b/Open-ILS/web/js/ui/default/acq/financial/list_funds.js
@@ -253,7 +253,7 @@ function performRollover(args) {
                     
                     // add the new year to the year selector if it's not already there
                     fundFilterYearSelect.store.fetch({
-                        query : {year : nextYear}, 
+                        query : {year : ''+nextYear}, 
                         onComplete:
                             function(list) {
                                 if(list && list.length > 0) return;

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

Summary of changes:
 .../web/js/ui/default/acq/financial/list_funds.js  |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list