svn commit: r822540 - /ofbiz/trunk/applications/party/script/org/ofbiz/party/contact/PartyContactMechServices.xml

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

svn commit: r822540 - /ofbiz/trunk/applications/party/script/org/ofbiz/party/contact/PartyContactMechServices.xml

jleroux@apache.org
Author: jleroux
Date: Wed Oct  7 00:28:43 2009
New Revision: 822540

URL: http://svn.apache.org/viewvc?rev=822540&view=rev
Log:
Fix changes not ready to be commited :
findPartyFromTelephone restored, cleaned the log lines in findPartyFromTelephoneComplete

Modified:
    ofbiz/trunk/applications/party/script/org/ofbiz/party/contact/PartyContactMechServices.xml

Modified: ofbiz/trunk/applications/party/script/org/ofbiz/party/contact/PartyContactMechServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/script/org/ofbiz/party/contact/PartyContactMechServices.xml?rev=822540&r1=822539&r2=822540&view=diff
==============================================================================
--- ofbiz/trunk/applications/party/script/org/ofbiz/party/contact/PartyContactMechServices.xml (original)
+++ ofbiz/trunk/applications/party/script/org/ofbiz/party/contact/PartyContactMechServices.xml Wed Oct  7 00:28:43 2009
@@ -341,12 +341,9 @@
 
         <set field="dash" value="-"/>
         <set field="emptyString" value=""/>
-        <!--set field="inputTelno" value="${str:replaceAll(parameters.telno, dash, emptyString)}"/-->
-        <log level="always" message="parameters.telno====================${parameters.telno}"></log>
-        <log level="always" message="inputTelno====================${inputTelno}"></log>
+        <set field="inputTelno" value="${str:replaceAll(parameters.telno, dash, emptyString)}"/>
         <iterate entry="contactMech" list="contactMechs">
-            <set field="telno" from-field="contactMech.tnContactNumber"/>
-            <!--set field="telno" value="${str:replace(contactMech.tnContactNumber, dash, emptyString)}"/-->
+            <set field="telno" value="${str:replace(contactMech.tnContactNumber, dash, emptyString)}"/>
             <if-compare-field field="inputTelno" operator="equals" to-field="telno">
                 <set field="partyId" from-field="contactMech.partyId"/>
             </if-compare-field>