Author: sichen
Date: Wed Nov 29 15:12:58 2006
New Revision: 480766
URL:
http://svn.apache.org/viewvc?view=rev&rev=480766Log:
fix bug where null postal code can crash order packing screen.
Modified:
incubator/ofbiz/trunk/applications/product/webapp/facility/shipment/PackOrder.ftl
Modified: incubator/ofbiz/trunk/applications/product/webapp/facility/shipment/PackOrder.ftl
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/product/webapp/facility/shipment/PackOrder.ftl?view=diff&rev=480766&r1=480765&r2=480766==============================================================================
--- incubator/ofbiz/trunk/applications/product/webapp/facility/shipment/PackOrder.ftl (original)
+++ incubator/ofbiz/trunk/applications/product/webapp/facility/shipment/PackOrder.ftl Wed Nov 29 15:12:58 2006
@@ -103,7 +103,7 @@
<#if postalAddress.address2?has_content>
${postalAddress.address2}<br>
</#if>
- ${postalAddress.city}, ${postalAddress.stateProvinceGeoId?if_exists} ${postalAddress.postalCode}<br>
+ ${postalAddress.city?if_exists}, ${postalAddress.stateProvinceGeoId?if_exists} ${postalAddress.postalCode?if_exists}<br>
${postalAddress.countryGeoId}
</div>
</td>