Merge branch 'master' into hotfix_0210_fastDelivery
Showing
1 changed file
with
3 additions
and
3 deletions
@@ -144,7 +144,7 @@ public class ExpressInfoUpdateConsumer implements YhConsumer { | @@ -144,7 +144,7 @@ public class ExpressInfoUpdateConsumer implements YhConsumer { | ||
144 | && isSellerSendExpress(expressInfo) | 144 | && isSellerSendExpress(expressInfo) |
145 | && StringUtils.contains(expressInfo.getAcceptRemark(), "因休息日或假期客户不便收件") | 145 | && StringUtils.contains(expressInfo.getAcceptRemark(), "因休息日或假期客户不便收件") |
146 | ) { | 146 | ) { |
147 | - expressInfo.setAcceptRemark("受疫情影响,平台将于2月10日开始收货"); | 147 | + expressInfo.setAcceptRemark("受疫情影响,收货时间延迟,具体请查阅公告"); |
148 | } | 148 | } |
149 | 149 | ||
150 | // 中通国际快递公司,存在物流则表示清关成功 | 150 | // 中通国际快递公司,存在物流则表示清关成功 |
@@ -158,8 +158,8 @@ public class ExpressInfoUpdateConsumer implements YhConsumer { | @@ -158,8 +158,8 @@ public class ExpressInfoUpdateConsumer implements YhConsumer { | ||
158 | 158 | ||
159 | private boolean isWuhanNewpneumoniaHolidayTime() { | 159 | private boolean isWuhanNewpneumoniaHolidayTime() { |
160 | int now = DateUtil.getCurrentTimeSecond(); | 160 | int now = DateUtil.getCurrentTimeSecond(); |
161 | - // 武汉疫情鉴定中心不能收货(2020-01-30 23:59:59到2020-02-09 23:59:59) | ||
162 | - return now > 1580399999 && now <= 1581263999; | 161 | + // 武汉疫情鉴定中心不能收货(2020-01-30 23:59:59到2020-02-14 23:59:59) |
162 | + return now > 1580399999 && now <= 1581695999; | ||
163 | } | 163 | } |
164 | 164 | ||
165 | /** | 165 | /** |
-
Please register or login to post a comment