svn commit: r1837846 - in /ofbiz/ofbiz-plugins/branches/release17.12: ./ webpos/webapp/webpos/images/js/SearchPartiesResults.js

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1837846 - in /ofbiz/ofbiz-plugins/branches/release17.12: ./ webpos/webapp/webpos/images/js/SearchPartiesResults.js

surajk
Author: surajk
Date: Sat Aug 11 06:24:31 2018
New Revision: 1837846

URL: http://svn.apache.org/viewvc?rev=1837846&view=rev
Log:
Applied fix from trunk for revision: 1837845
===

Fixed: Party Search doesn't consider Billing Address and Shipping Address checkbox in WebPos.
(OFBIZ-7709)
Thanks Vishal for your patch.

Modified:
    ofbiz/ofbiz-plugins/branches/release17.12/   (props changed)
    ofbiz/ofbiz-plugins/branches/release17.12/webpos/webapp/webpos/images/js/SearchPartiesResults.js

Propchange: ofbiz/ofbiz-plugins/branches/release17.12/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Sat Aug 11 06:24:31 2018
@@ -11,4 +11,4 @@
 /ofbiz/branches/multitenant20100310/plugins:921280-927264
 /ofbiz/branches/release13.07/plugins:1547657
 /ofbiz/ofbiz-framework/trunk:1836107
-/ofbiz/ofbiz-plugins/trunk:1819576,1819580,1819582,1819589,1820962,1820973,1821045,1821049,1821051,1822129,1822133,1822139,1822143,1822145,1822389,1822391,1822395,1824646,1824648,1824650,1824654,1828569,1830856,1831084,1832727,1832800,1837796
+/ofbiz/ofbiz-plugins/trunk:1819576,1819580,1819582,1819589,1820962,1820973,1821045,1821049,1821051,1822129,1822133,1822139,1822143,1822145,1822389,1822391,1822395,1824646,1824648,1824650,1824654,1828569,1830856,1831084,1832727,1832800,1837796,1837845

Modified: ofbiz/ofbiz-plugins/branches/release17.12/webpos/webapp/webpos/images/js/SearchPartiesResults.js
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/webpos/webapp/webpos/images/js/SearchPartiesResults.js?rev=1837846&r1=1837845&r2=1837846&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release17.12/webpos/webapp/webpos/images/js/SearchPartiesResults.js (original)
+++ ofbiz/ofbiz-plugins/branches/release17.12/webpos/webapp/webpos/images/js/SearchPartiesResults.js Sat Aug 11 06:24:31 2018
@@ -168,13 +168,13 @@ function partySearchAgain() {
                 '&searchByPartyFirstName=' + jQuery('#searchByPartyFirstName').val() +
                 '&searchByPartyIdValue=' + jQuery('#searchByPartyIdValue').val();
     
-    if (jQuery('#billingLoc').attr('checked') == true) {
+    if (jQuery('#billingLoc').prop('checked') == true) {
         param = param + '&billingLocation=Y';
     } else {
         param = param + '&billingLocation=N';
     }
     
-    if (jQuery('#shippingLoc').attr('checked') == true) {
+    if (jQuery('#shippingLoc').prop('checked') == true) {
         param = param + '&shippingLocation=Y';
     } else {
         param = param + '&shippingLocation=N';