no message
This commit is contained in:
parent
ab7e7eaca7
commit
fab703b7af
|
|
@ -120,8 +120,7 @@ public class OrderController extends BaseController {
|
|||
|
||||
@PostMapping("/imgs/list")
|
||||
@ResponseBody
|
||||
public TableDataInfo list(GoodsImgs goodsImgs)
|
||||
{
|
||||
public TableDataInfo list(GoodsImgs goodsImgs) {
|
||||
List<OrderDetail> details = orderDetailService.selectByOrderMasterId(Long.valueOf(goodsImgs.getRemark()));
|
||||
List<Long> ids = details.stream().map(OrderDetail::getId).collect(Collectors.toList());
|
||||
goodsImgs.setRemark(null);
|
||||
|
|
@ -1592,6 +1591,21 @@ public class OrderController extends BaseController {
|
|||
orderListResponse.setInsuranceManager(manager);
|
||||
}
|
||||
}
|
||||
String addressSysArea = sysArea.getMergerName();
|
||||
String[] array = addressSysArea.split(",");
|
||||
logger.info("所有的地址列表{}", array);
|
||||
orderListResponse.setProvinceName(array[0]);
|
||||
orderListResponse.setCityName(array[1]);
|
||||
orderListResponse.setCountryName(array[2]);
|
||||
orderListResponse.setStreetName(array[3]);
|
||||
orderListResponse.setProvinceId(customerAddress.getProvinceId());
|
||||
orderListResponse.setCityId(customerAddress.getCityId());
|
||||
orderListResponse.setCountryId(customerAddress.getCountryId());
|
||||
orderListResponse.setStreetId(orderMaster.getStreetId());
|
||||
orderListResponse.setAddress(customerAddress.getAddress());
|
||||
orderListResponse.setPhone(customerAddress.getPhone());
|
||||
orderListResponse.setName(customerAddress.getName());
|
||||
|
||||
orderListResponses.add(orderListResponse);
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue