details:   /erp/devel/pi/rev/6cb4f9627958
changeset: 9071: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

diffstat:

 src/org/openbravo/erpCommon/ad_process/ImportBPartner.java |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (19 lines):

diff -r 2c1319271a23 -r 6cb4f9627958 
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 15:59:11 2010 +0530
@@ -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