From 01a4e8e4635a42c825612ed131a07f24c610852e Mon Sep 17 00:00:00 2001 From: erickson Date: Mon, 20 Apr 2009 20:42:14 +0000 Subject: [PATCH] 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 --- Open-ILS/web/js/ui/default/acq/common/li_table.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } -- 2.11.0