Commit ff2d9355 authored by Administrator's avatar Administrator

Merge branch 'release' into 'jd_dev'

Release分支代码合并到jd分支20241227

See merge request !60
parents 2c9b794a ad16caa0
......@@ -2748,8 +2748,8 @@ public class OrderServiceImpl extends AbstractService<OrderMapper, OrderDO> impl
}
infoVO = new ApplyInfoVO();
infoVO.setName("收货人电话/Consignee's phone number");
infoVO.setOrgValue("+" + orderConsigneeBackVO.getCountryCode() + orderConsigneeBackVO.getPhone());
infoVO.setNewValue("+" + consigneeContactsDO.getAreaCode() + consigneeContactsDO.getPhoneNew());
infoVO.setOrgValue(StringUtils.isBlank(orderConsigneeBackVO.getPhone())? "空": ("+" + orderConsigneeBackVO.getCountryCode() + orderConsigneeBackVO.getPhone()));
infoVO.setNewValue(StringUtils.isBlank(consigneeContactsDO.getPhoneNew())? "空": ("+" + consigneeContactsDO.getAreaCode() + consigneeContactsDO.getPhoneNew()));
orderConsigneeBackVO.setCountryCode(consigneeContactsDO.getAreaCode());
orderConsigneeBackVO.setPhone(consigneeContactsDO.getPhoneNew());
applyInfoList.add(infoVO);
......@@ -5914,7 +5914,8 @@ public class OrderServiceImpl extends AbstractService<OrderMapper, OrderDO> impl
}
} else {
if (Objects.nonNull(consigneeDO)) {
orderConsigneeService.updateById(consigneeDO);
// 这里可能是由无收货人修改为有收货人,主键id为null
orderConsigneeService.saveOrUpdate(consigneeDO);
if (orderBackVO.getIsCargoControl()) {
// 控货订单有收货人则限制修改收货人
isLimitUpdateConsignee = Boolean.TRUE;
......
......@@ -323,7 +323,7 @@ public class ProductBrandEmpowerServiceImpl extends AbstractService<ProductBrand
Long norCustomerId = productBrankMapper.getNorCustomerIdByOrderId(reqVO.getOrderId());
Long neeCustomerId = productBrankMapper.getNeeCustomerIdByOrderId(reqVO.getOrderId());
if (norCustomerId != null && norCustomerId != 0 || neeCustomerId != null && neeCustomerId != 0) {
if ((norCustomerId != null && norCustomerId != 0) || (neeCustomerId != null && neeCustomerId != 0)) {
//查看品牌与客户授权关系
ProductBrandEmpowerBaseVO norProductBrandEmpowerBaseVO = new ProductBrandEmpowerBaseVO();
norProductBrandEmpowerBaseVO.setProductBrandId(reqVO.getBrandId());
......@@ -338,7 +338,7 @@ public class ProductBrandEmpowerServiceImpl extends AbstractService<ProductBrand
neeProductBrandEmpowerBaseVO.setCustomerId(Objects.isNull(neeCustomerId) ? 0 : neeCustomerId);
neeProductBrandEmpowerBaseVO.setStatus(CommonStatusEnum.ENABLE.getStatus());
//查询的授权信息
List<ProductBrandEmpowerDO> neeList = getProductBrandEmpowerList(norProductBrandEmpowerBaseVO);
List<ProductBrandEmpowerDO> neeList = getProductBrandEmpowerList(neeProductBrandEmpowerBaseVO);
//没有授权的客户
if ((norList == null || norList.size() == 0) && (neeList == null || neeList.size() == 0)) {
//未授权要查看品牌的授权模式,以及当前客户是否有特殊设置
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment