Authored by mali

质检app增加虚假发货 寄回的场景

... ... @@ -69,6 +69,8 @@ public class AppraiseController {
/**
* 鉴定中心鉴定不通过后,寄回
* 直接不通过 寄回
* 虚假发货
* 提供给运营平台使用
* @return
*/
... ...
... ... @@ -292,6 +292,9 @@ public class AppraiseService {
} else if (buyerOrder.getStatus() == OrderStatus.MINI_FAULT_OUT_TIME_REJECT.getCode()) {
type = 3;//用户不接受超时
expectStatus = OrderStatus.MINI_FAULT_OUT_TIME_REJECT;
} else if (buyerOrder.getStatus() == OrderStatus.SELLER_SHAM_SEND_OUT.getCode()) {
type = 4;//虚假发货
expectStatus = OrderStatus.SELLER_SHAM_SEND_OUT;
} else {
//if (buyerOrder.getStatus() != expectStatus.getCode()){
LOGGER.warn("returnBackOrderCauseOfJudgeFailure expectStatus CHECKING_FAKE QUALITY_CHECK_FAKE MINI_FAULT_REJECT or MINI_FAULT_OUT_TIME_REJECT, actual status {}, orderCode {}",
... ...
... ... @@ -786,6 +786,8 @@ public class InBoxFacade {
sms = InboxBusinessTypeEnum.SMS_NOTICE_SELLER_WHEN_EXPRESS_MINI_FAULT_UN_ACCEPT;
}else if(type==3){
sms = InboxBusinessTypeEnum.SMS_NOTICE_SELLER_WHEN_EXPRESS_MINI_FAULT_UN_ACCEPT_OUT_TIME;
}else if(type==4){
sms = InboxBusinessTypeEnum.SMS_NOTICE_SELLER_WHEN_EXPRESS_MINI_FAULT_UN_ACCEPT_OUT_TIME;
}
String content = getReplacedContent(sms.getContent(),prdName,sizeName,productCode,orderCode,wayBillCode);
sendSmsService.smsSendByMobile(content, mobileList);
... ...