...
|
...
|
@@ -144,7 +144,7 @@ public class ExpressInfoUpdateConsumer implements YhConsumer { |
|
|
&& isSellerSendExpress(expressInfo)
|
|
|
&& StringUtils.contains(expressInfo.getAcceptRemark(), "因休息日或假期客户不便收件")
|
|
|
) {
|
|
|
expressInfo.setAcceptRemark("受疫情影响,平台将于2月10日开始收货");
|
|
|
expressInfo.setAcceptRemark("受疫情影响,收货时间延迟,具体请查阅公告");
|
|
|
}
|
|
|
|
|
|
// 中通国际快递公司,存在物流则表示清关成功
|
...
|
...
|
@@ -158,8 +158,8 @@ public class ExpressInfoUpdateConsumer implements YhConsumer { |
|
|
|
|
|
private boolean isWuhanNewpneumoniaHolidayTime() {
|
|
|
int now = DateUtil.getCurrentTimeSecond();
|
|
|
// 武汉疫情鉴定中心不能收货(2020-01-30 23:59:59到2020-02-09 23:59:59)
|
|
|
return now > 1580399999 && now <= 1581263999;
|
|
|
// 武汉疫情鉴定中心不能收货(2020-01-30 23:59:59到2020-02-14 23:59:59)
|
|
|
return now > 1580399999 && now <= 1581695999;
|
|
|
}
|
|
|
|
|
|
/**
|
...
|
...
|
|