details:   /erp/devel/main/rev/6cb4f9627958
changeset: 9083:6cb4f9627958
user:      Sivaraman Rajagopal <sivaraman.rajagopal <at> openbravo.com>
date:      Wed Dec 08 15:59:11 2010 +0530
summary:   Fixes Issue 15108: Partner Address when importing Business Partner

Solution:
The character \" . \" has been added at the beginning of the Addres/Location 
Name.

Impacts:
None

details:   /erp/devel/main/rev/b70642c77209
changeset: 9084:b70642c77209
user:      RM packaging bot <staff.rm <at> openbravo.com>
date:      Wed Dec 08 14:58:05 2010 +0000
summary:   CI: promote changesets from pi to main

diffstat:

 src-db/database/sourcedata/AD_MODULE.xml                   |  4 ++--
 src/org/openbravo/erpCommon/ad_process/ImportBPartner.java |  6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diffs (40 lines):

diff -r 2c1319271a23 -r b70642c77209 src-db/database/sourcedata/AD_MODULE.xml
--- a/src-db/database/sourcedata/AD_MODULE.xml  Wed Dec 08 09:53:54 2010 +0530
+++ b/src-db/database/sourcedata/AD_MODULE.xml  Wed Dec 08 14:58:05 2010 +0000
@@ -6,7 +6,7 @@
 <!--0-->  <AD_ORG_ID><![CDATA[0]]></AD_ORG_ID>
 <!--0-->  <ISACTIVE><![CDATA[Y]]></ISACTIVE>
 <!--0-->  <NAME><![CDATA[Core]]></NAME>
-<!--0-->  <VERSION><![CDATA[2.50.19053]]></VERSION>
+<!--0-->  <VERSION><![CDATA[2.50.19083]]></VERSION>
 <!--0-->  <DESCRIPTION><![CDATA[Core module is the base one]]></DESCRIPTION>
 <!--0-->  <HELP><![CDATA[Core module is the base one, all developments in core 
are included as part of the standard Openbravo ERP.]]></HELP>
 <!--0-->  <URL><![CDATA[www.openbravo.com]]></URL>
@@ -22,7 +22,7 @@
 <!--0-->  <ISTRANSLATIONMODULE><![CDATA[N]]></ISTRANSLATIONMODULE>
 <!--0-->  <HASREFERENCEDATA><![CDATA[Y]]></HASREFERENCEDATA>
 <!--0-->  <REFERENCEDATAINFO><![CDATA[Standard document types for orders, 
invoices, etc. and settings]]></REFERENCEDATAINFO>
-<!--0-->  <VERSION_LABEL><![CDATA[dev]]></VERSION_LABEL>
+<!--0-->  <VERSION_LABEL><![CDATA[CI]]></VERSION_LABEL>
 <!--0-->  <ISCOMMERCIAL><![CDATA[N]]></ISCOMMERCIAL>
 <!--0--></AD_MODULE>
 
diff -r 2c1319271a23 -r b70642c77209 
src/org/openbravo/erpCommon/ad_process/ImportBPartner.java
--- a/src/org/openbravo/erpCommon/ad_process/ImportBPartner.java        Wed Dec 
08 09:53:54 2010 +0530
+++ b/src/org/openbravo/erpCommon/ad_process/ImportBPartner.java        Wed Dec 
08 14:58:05 2010 +0000
@@ -351,12 +351,12 @@
       locationName.append(locationNameA);
       if (!locationNameB.equals("")) {
         locationName.append(", " + locationNameB);
-        result = locationName.toString();
+        result = result + locationName.toString();
       } else
-        result = locationName.toString();
+        result = result + locationName.toString();
     } else if (!locationNameB.equals("")) {
       locationName.append(locationNameB);
-      result = locationName.toString();
+      result = result + locationName.toString();
     }
     return result;
   }

------------------------------------------------------------------------------
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
_______________________________________________
Openbravo-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openbravo-commits

Reply via email to