You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by do...@apache.org on 2010/10/02 01:50:54 UTC

svn commit: r1003712 - /ofbiz/trunk/applications/order/webapp/ordermgr/order/shipGroups.fo.ftl

Author: doogie
Date: Fri Oct  1 23:50:54 2010
New Revision: 1003712

URL: http://svn.apache.org/viewvc?rev=1003712&view=rev
Log:
Fix display of telecomContactMechId TelecomNumber entity, when the
areaCode has not been given.

Modified:
    ofbiz/trunk/applications/order/webapp/ordermgr/order/shipGroups.fo.ftl

Modified: ofbiz/trunk/applications/order/webapp/ordermgr/order/shipGroups.fo.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/webapp/ordermgr/order/shipGroups.fo.ftl?rev=1003712&r1=1003711&r2=1003712&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/webapp/ordermgr/order/shipGroups.fo.ftl (original)
+++ ofbiz/trunk/applications/order/webapp/ordermgr/order/shipGroups.fo.ftl Fri Oct  1 23:50:54 2010
@@ -81,7 +81,7 @@ under the License.
           </fo:block>
 
           <#if data.phoneNumber?exists>
-            <fo:block>(${data.phoneNumber.areaCode}) ${data.phoneNumber.contactNumber}</fo:block>
+            <fo:block><#if data.phoneNumber.areaCode?exists>(${data.phoneNumber.areaCode}) </#if>${data.phoneNumber.contactNumber}</fo:block>
           </#if>
         </fo:table-cell>
       </fo:table-row>