From: miker Date: Thu, 18 Dec 2008 21:17:25 +0000 (+0000) Subject: use pcrud (C) instead of permacrud (Perl) X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=8f322e0d87ffb713a6ea9f634d3d265c6c71a0c9;p=Evergreen.git use pcrud (C) instead of permacrud (Perl) git-svn-id: svn://svn.open-ils.org/ILS/trunk@11619 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/web/conify/global/actor/org_unit.html b/Open-ILS/web/conify/global/actor/org_unit.html index e88d0e9de1..b5648ce35c 100644 --- a/Open-ILS/web/conify/global/actor/org_unit.html +++ b/Open-ILS/web/conify/global/actor/org_unit.html @@ -73,7 +73,7 @@ window.dirtyStore = []; pCRUD.request({ - method : 'open-ils.permacrud.search.aou.atomic', + method : 'open-ils.pcrud.search.aou.atomic', timeout : 15, params : [ ses, { id : { "!=" : null } }, { order_by : { aou : 'shortname' } } ], onerror : function (r) { throw aou_strings.ERROR_FETCHING_ORGS; }, @@ -113,7 +113,7 @@ }).send(); pCRUD.request({ - method : 'open-ils.permacrud.search.aout.atomic', + method : 'open-ils.pcrud.search.aout.atomic', timeout : 10, params : [ ses, { id : { "!=" : null } }, { order_by : { aout : 'depth' } } ], onerror : function (r) { status_update(aou_strings.ERROR_FETCHING_TYPES_AOUT) }, @@ -356,7 +356,7 @@ modified_ou.isdeleted( 1 ); pCRUD.request({ - method : 'open-ils.permacrud.delete.aou', + method : 'open-ils.pcrud.delete.aou', timeout : 10, params : [ ses, modified_ou ], onerror : function (r) { @@ -421,7 +421,7 @@ var new_obj; pCRUD.request({ - method : 'open-ils.permacrud.create.aou', + method : 'open-ils.pcrud.create.aou', timeout : 10, params : [ ses, new_fm_obj ], onerror : function (r) { @@ -494,8 +494,8 @@