[open-ils-commits] ***SPAM*** [GIT] Evergreen ILS branch rel_2_4 updated. d6688ef320cdeda5154ed1e374237688e79e3456

Evergreen Git git at git.evergreen-ils.org
Tue Oct 15 12:33:36 EDT 2013


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_4 has been updated
       via  d6688ef320cdeda5154ed1e374237688e79e3456 (commit)
      from  69416167a5da8dd3fa01187b81af771c0fde6d52 (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 d6688ef320cdeda5154ed1e374237688e79e3456
Author: Dan Wells <dbw2 at calvin.edu>
Date:   Mon Oct 14 16:07:17 2013 -0400

    Fix typo in acq code to allow quick PO creation
    
    When using 'Actions for this Record'->'View/Place Orders', the
    'Create Purchase Order' button dies due to an undefined variable,
    'filter'.
    
    Looking at the commit which caused the problem, it seems like this
    variable should have been 'state'.  Simple testing bears this out.
    
    Original change was part of:
    LP1193095 lineitem batch actions sanity filters
    
    Signed-off-by: Dan Wells <dbw2 at calvin.edu>
    Signed-off-by: Bill Erickson <berick at esilibrary.com>

diff --git a/Open-ILS/web/js/ui/default/acq/common/li_table.js b/Open-ILS/web/js/ui/default/acq/common/li_table.js
index cba97c1..a740677 100644
--- a/Open-ILS/web/js/ui/default/acq/common/li_table.js
+++ b/Open-ILS/web/js/ui/default/acq/common/li_table.js
@@ -518,7 +518,7 @@ function AcqLiTable() {
     ) {
         console.log("getSelected states = " + state);
         if (all && callback)
-            return this.getAll(callback, id_only, filter);
+            return this.getAll(callback, id_only, state);
 
         var indices = {};   /* use to uniqify. needed in paging situations. */
         dojo.forEach(this.selectors,

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

Summary of changes:
 Open-ILS/web/js/ui/default/acq/common/li_table.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list