no message

This commit is contained in:
cb 2025-06-05 17:29:37 +08:00
parent 8766726189
commit 18b6d5325d
1 changed files with 3 additions and 1 deletions

View File

@ -822,7 +822,9 @@ public class OrderDetailController extends BaseController {
orderListResponse.setProvinceName(array[0]);
orderListResponse.setCityName(array[1]);
orderListResponse.setCountryName(array[2]);
orderListResponse.setStreetName(array[3]);
if (array.length>3){
orderListResponse.setStreetName(array[3]);
}
orderListResponse.setProvinceId(customerAddress.getProvinceId());
orderListResponse.setCityId(customerAddress.getCityId());
orderListResponse.setCountryId(customerAddress.getCountryId());