[open-ils-commits] [GIT] Evergreen ILS branch rel_2_4 updated. 26577b32a3e7e8b798ca128a45c2858e02a74612

Evergreen Git git at git.evergreen-ils.org
Thu Aug 22 11:31:52 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  26577b32a3e7e8b798ca128a45c2858e02a74612 (commit)
      from  daa5a5dd1f28e1c5d82bebaba43b5b6ef5c29334 (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 26577b32a3e7e8b798ca128a45c2858e02a74612
Author: Bill Erickson <berick at esilibrary.com>
Date:   Thu May 23 13:30:43 2013 -0400

    LP1183467 ACQ view funding source list permissions
    
    Limit the set of funding sources visible in the funding source list
    interface by those the user has view permissions for, not just those the
    user has edit permissions for.
    
    Signed-off-by: Bill Erickson <berick at esilibrary.com>
    Signed-off-by: Remington Steed <rjs7 at calvin.edu>
    Signed-off-by: Mike Rylander <mrylander at gmail.com>

diff --git a/Open-ILS/web/js/ui/default/acq/financial/list_funding_sources.js b/Open-ILS/web/js/ui/default/acq/financial/list_funding_sources.js
index 4169bb5..274dee6 100644
--- a/Open-ILS/web/js/ui/default/acq/financial/list_funding_sources.js
+++ b/Open-ILS/web/js/ui/default/acq/financial/list_funding_sources.js
@@ -30,7 +30,7 @@ function loadFSGrid() {
     fieldmapper.standardRequest(
         ['open-ils.acq', 'open-ils.acq.funding_source.org.retrieve'], {
             async: true,
-            params: [openils.User.authtoken, null, {flesh_summary:1}],
+            params: [openils.User.authtoken, null, {flesh_summary:1, limit_perm : 'VIEW_FUNDING_SOURCE'}],
             onresponse: function(r) { /* request object*/
                 if(fs = openils.Util.readResponse(r)) {
                     openils.acq.FundingSource.cache[fs.id()] = fs;

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

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


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list