[open-ils-commits] ***SPAM*** [GIT] Evergreen ILS branch rel_2_5 updated. cca1c3d30569c085ded4ba72804af95f4ee55aa6

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, rel_2_5 has been updated
       via  cca1c3d30569c085ded4ba72804af95f4ee55aa6 (commit)
      from  161cb8e92a3c5a5ac2255b0c952f8de0743cdbdd (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 cca1c3d30569c085ded4ba72804af95f4ee55aa6
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