for (OrderDetail orderDetail : orderDTO.getOrderDetailList()) {
for (ProductInfo productInfo : productInfoList) {
if(productInfo.getProductId().equals(orderDetail.getProductId())){
orderAmout = productInfo.getProductPrice()
.multiply(new BigDecimal(orderDetail.getProductQuantity())).add(orderAmout);
BeanUtils.copyProperties(productInfo,orderDetail);
orderDetail.setOrderId(orderId);
orderDetail.setDetailId(KeyUtil.genUniqueKey());
//订单详情入库
orderDetailRepository.save(orderDetail);
}
}
}
这里吧商品信息的时间复制过去了 有问题 导致详情时间不对