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:23:38 UTC

svn commit: r1604359 - in /ofbiz/branches/release13.07: ./ applications/order/webapp/ordermgr/images/js/ConvertUom.js

Author: jleroux
Date: Sat Jun 21 13:23:38 2014
New Revision: 1604359

URL: http://svn.apache.org/r1604359
Log:
"Applied fix from trunk for revision: 1604357" 
------------------------------------------------------------------------
r1604357 | jleroux | 2014-06-21 15:21:35 +0200 (sam. 21 juin 2014) | 3 lignes

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/branches/release13.07/   (props changed)
    ofbiz/branches/release13.07/applications/order/webapp/ordermgr/images/js/ConvertUom.js

Propchange: ofbiz/branches/release13.07/
------------------------------------------------------------------------------
  Merged /ofbiz/trunk:r1604357

Modified: ofbiz/branches/release13.07/applications/order/webapp/ordermgr/images/js/ConvertUom.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/release13.07/applications/order/webapp/ordermgr/images/js/ConvertUom.js?rev=1604359&r1=1604358&r2=1604359&view=diff
==============================================================================
--- ofbiz/branches/release13.07/applications/order/webapp/ordermgr/images/js/ConvertUom.js (original)
+++ ofbiz/branches/release13.07/applications/order/webapp/ordermgr/images/js/ConvertUom.js Sat Jun 21 13:23:38 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){