[open-ils-commits] ***SPAM*** [GIT] Evergreen ILS branch rel_2_6 updated. 79ec433b97cbe9239a9cb9948b77e9e05d3ea9d0
Evergreen Git
git at git.evergreen-ils.org
Thu Sep 18 16:34:04 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_6 has been updated
via 79ec433b97cbe9239a9cb9948b77e9e05d3ea9d0 (commit)
from 40a043e37a87f4cd77cbe7bddcb1fbfc52574a89 (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 79ec433b97cbe9239a9cb9948b77e9e05d3ea9d0
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