订单备注

This commit is contained in:
2026-04-03 18:13:08 +08:00
parent 7d69d72aef
commit cdde340810

View File

@@ -545,7 +545,9 @@ public class OrderInfoCustomServiceImpl implements OrderInfoCustomService {
throw new OrderValidateException("生成支付订单失败,支付金额不正确");
}
orderInfo.setPackFee(packAmount.getPrice());
orderInfo.setRemark(param.getRemark());
if (StrUtil.isNotBlank(param.getRemark())) {
orderInfo.setRemark(param.getRemark());
}
//生成订单 //discount_info 所有折扣 几折 折扣金额 满减金额 优惠券金额 积分抵扣金额 抹零
upOrderPayInfo(orderInfo, param);