[OFBiz] SVN: r7526 - trunk/applications/party/src/org/ofbiz/party/contact
sichen@svn.ofbiz.org
sichen at svn.ofbiz.org
Fri May 5 13:50:02 CDT 2006
Author: sichen
Date: 2006-05-05 13:49:59 -0500 (Fri, 05 May 2006)
New Revision: 7526
Modified:
trunk/applications/party/src/org/ofbiz/party/contact/ContactMechServices.java
Log:
Fixed bug where the copyPartyContactMechs service wasn't copying phone number extension.
Modified: trunk/applications/party/src/org/ofbiz/party/contact/ContactMechServices.java
===================================================================
--- trunk/applications/party/src/org/ofbiz/party/contact/ContactMechServices.java 2006-05-05 14:57:53 UTC (rev 7525)
+++ trunk/applications/party/src/org/ofbiz/party/contact/ContactMechServices.java 2006-05-05 18:49:59 UTC (rev 7526)
@@ -965,7 +965,7 @@
// create a new party contact mech for the partyIdTo
Map serviceResults = dispatcher.runSync("createPartyContactMech", UtilMisc.toMap("partyId", partyIdTo, "userLogin", userLogin,
"contactMechId", contactMechId, "fromDate", UtilDateTime.nowTimestamp(),
- "allowSolicitation", partyContactMech.getString("allowSolicitation")));
+ "allowSolicitation", partyContactMech.getString("allowSolicitation"), "extension", partyContactMech.getString("extension")));
if (ServiceUtil.isError(serviceResults)) {
return serviceResults;
}
More information about the Svn
mailing list