Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
2e7bcaba70
|
|
@ -1593,7 +1593,7 @@ public class OrderController extends BaseController {
|
||||||
}
|
}
|
||||||
String addressSysArea = sysArea.getMergerName();
|
String addressSysArea = sysArea.getMergerName();
|
||||||
String[] array = addressSysArea.split(",");
|
String[] array = addressSysArea.split(",");
|
||||||
logger.info("所有的地址列表{}", array);
|
|
||||||
orderListResponse.setProvinceName(array[0]);
|
orderListResponse.setProvinceName(array[0]);
|
||||||
orderListResponse.setCityName(array[1]);
|
orderListResponse.setCityName(array[1]);
|
||||||
orderListResponse.setCountryName(array[2]);
|
orderListResponse.setCountryName(array[2]);
|
||||||
|
|
@ -1601,11 +1601,10 @@ public class OrderController extends BaseController {
|
||||||
orderListResponse.setProvinceId(customerAddress.getProvinceId());
|
orderListResponse.setProvinceId(customerAddress.getProvinceId());
|
||||||
orderListResponse.setCityId(customerAddress.getCityId());
|
orderListResponse.setCityId(customerAddress.getCityId());
|
||||||
orderListResponse.setCountryId(customerAddress.getCountryId());
|
orderListResponse.setCountryId(customerAddress.getCountryId());
|
||||||
orderListResponse.setStreetId(orderMaster.getStreetId());
|
orderListResponse.setStreetId(customerAddress.getStreetId());
|
||||||
orderListResponse.setAddress(customerAddress.getAddress());
|
|
||||||
orderListResponse.setPhone(customerAddress.getPhone());
|
orderListResponse.setPhone(customerAddress.getPhone());
|
||||||
orderListResponse.setName(customerAddress.getName());
|
orderListResponse.setName(customerAddress.getName());
|
||||||
|
logger.info("所有的列表信息{}", orderListResponse);
|
||||||
orderListResponses.add(orderListResponse);
|
orderListResponses.add(orderListResponse);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue