no message

This commit is contained in:
cb 2025-04-30 17:14:23 +08:00
parent fab703b7af
commit d6028c3e1e
1 changed files with 3 additions and 4 deletions

View File

@ -1593,7 +1593,7 @@ public class OrderController extends BaseController {
}
String addressSysArea = sysArea.getMergerName();
String[] array = addressSysArea.split(",");
logger.info("所有的地址列表{}", array);
orderListResponse.setProvinceName(array[0]);
orderListResponse.setCityName(array[1]);
orderListResponse.setCountryName(array[2]);
@ -1601,11 +1601,10 @@ public class OrderController extends BaseController {
orderListResponse.setProvinceId(customerAddress.getProvinceId());
orderListResponse.setCityId(customerAddress.getCityId());
orderListResponse.setCountryId(customerAddress.getCountryId());
orderListResponse.setStreetId(orderMaster.getStreetId());
orderListResponse.setAddress(customerAddress.getAddress());
orderListResponse.setStreetId(customerAddress.getStreetId());
orderListResponse.setPhone(customerAddress.getPhone());
orderListResponse.setName(customerAddress.getName());
logger.info("所有的列表信息{}", orderListResponse);
orderListResponses.add(orderListResponse);
}