Commit f36092dfd32166e706086a2db9ec079b70e0a617
1 parent
a9b8d5f0
update:地址处理修复
Showing
1 changed file
with
2 additions
and
1 deletions
etrade-order/src/main/java/com/diligrp/etrade/order/domain/contactPerson/OrderContactPersonListVo.java
... | ... | @@ -206,7 +206,8 @@ public class OrderContactPersonListVo implements Serializable { |
206 | 206 | |
207 | 207 | public String getFullAddress() { |
208 | 208 | if(provinceName!=null){ |
209 | - fullAddress=provinceName+cityName+districtName+streetName+address; | |
209 | + String streetNameA = streetName==null?"":streetName; | |
210 | + fullAddress=provinceName+cityName+districtName+streetNameA+address; | |
210 | 211 | } |
211 | 212 | return fullAddress; |
212 | 213 | } | ... | ... |