You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2014/06/21 15:21:35 UTC

svn commit: r1604357 - /ofbiz/trunk/applications/order/webapp/ordermgr/images/js/ConvertUom.js

Author: jleroux
Date: Sat Jun 21 13:21:35 2014
New Revision: 1604357

URL: http://svn.apache.org/r1604357
Log:
A patch from Pierre Smits for "ConvertUom.js contains a bug" https://issues.apache.org/jira/browse/OFBIZ-5661

Due to a missing comma, this function doesn't work properly.

Modified:
    ofbiz/trunk/applications/order/webapp/ordermgr/images/js/ConvertUom.js

Modified: ofbiz/trunk/applications/order/webapp/ordermgr/images/js/ConvertUom.js
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/webapp/ordermgr/images/js/ConvertUom.js?rev=1604357&r1=1604356&r2=1604357&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/webapp/ordermgr/images/js/ConvertUom.js (original)
+++ ofbiz/trunk/applications/order/webapp/ordermgr/images/js/ConvertUom.js Sat Jun 21 13:21:35 2014
@@ -21,7 +21,7 @@ function getConvertedPrice(element, uomI
     var request = jQuery('#getConvertedPrice').val();
     jQuery.ajax({
         url: request,
-        data: { uomId : uomId, uomIdTo : uomIdTo, originalValue : element.value }
+        data: { uomId : uomId, uomIdTo : uomIdTo, originalValue : element.value },
         async: true,
         type: "POST",
         success: function(data){