From: erickson Date: Mon, 20 Apr 2009 20:42:14 +0000 (+0000) Subject: use the smart lineitem price updater to handle exising fund debits X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=01a4e8e4635a42c825612ed131a07f24c610852e;p=evergreen%2Fbjwebb.git use the smart lineitem price updater to handle exising fund debits git-svn-id: svn://svn.open-ils.org/ILS/trunk@12931 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- 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 4997f5e99..a909bf21c 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 @@ -307,9 +307,9 @@ function AcqLiTable() { if(price == oldPrice) return; fieldmapper.standardRequest( - ['open-ils.acq', 'open-ils.acq.lineitem_local_attr.set'], + ['open-ils.acq', 'open-ils.acq.lineitem.price.set'], { async : true, - params : [this.authtoken, li.id(), 'estimated_price', price], + params : [this.authtoken, li.id(), price], oncomplete : function(r) { openils.Util.readResponse(r); }