Commit 18e4f1c5 by huvchao@126.com

顾客更改收货地址不取消配送单不取消配送单

parent 2133e9e1
...@@ -144,7 +144,7 @@ public class ThirdDeliveryServiceImpl implements ThirdDeliveryService { ...@@ -144,7 +144,7 @@ public class ThirdDeliveryServiceImpl implements ThirdDeliveryService {
*/ */
public boolean isDeliveryAbnormalAndCustomerChangedAddress(CallbackUrlRequestDto request) { public boolean isDeliveryAbnormalAndCustomerChangedAddress(CallbackUrlRequestDto request) {
if (DeliveryStatus.DELIVERYERROR.getCode() != request.getDeliveryStatus()) return false; if (DeliveryStatus.DELIVERYERROR.getCode() != request.getDeliveryStatus()) return false;
if (StringUtils.isNotBlank(request.getRemark())) return false; if (StringUtils.isBlank(request.getRemark())) return false;
List<String> abnormalDesc = Lists.newArrayList("顾客更改配送地址", "顾客更改收货地址"); List<String> abnormalDesc = Lists.newArrayList("顾客更改配送地址", "顾客更改收货地址");
for (String str : abnormalDesc) { for (String str : abnormalDesc) {
......
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