use the smart lineitem price updater to handle exising fund debits
authorerickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Mon, 20 Apr 2009 20:42:14 +0000 (20:42 +0000)
committererickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Mon, 20 Apr 2009 20:42:14 +0000 (20:42 +0000)
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

index 4997f5e..a909bf2 100644 (file)
@@ -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);
                 }