Authored by tanling

现货鉴定 and 现货寄存

... ... @@ -104,7 +104,7 @@ public class AppraiseController {
/**
* 给付费寄存 and 付费鉴定 发货用<br><br/>
* 现货寄存 and 现货鉴定 发货用<br><br/>
* 鉴定结果为以下场景,寄回
* 1.鉴定为假,质检不通过取消
* 2.无法鉴定
... ...
... ... @@ -69,7 +69,7 @@ public class ExpressInfoController {
/**
* 付费鉴定 and 付费鉴定查看物流信息
* 现货鉴定 and 现场鉴定查看物流信息
* @param orderCode
* @return
*/
... ...
... ... @@ -23,14 +23,14 @@ import java.util.Objects;
public interface IExpressInfoService {
/**
* 付费寄存 and 付费鉴定 最近的一条物流信息
* 现货寄存 and 现货鉴定 最近的一条物流信息
* @param appraiseOrder
* @return
*/
ExpressInfoDetail getLastExpressInfoDetail(AppraiseOrder appraiseOrder);
/**
* 付费鉴定 and 付费寄存 物流信息
* 现货鉴定 and 现货寄存 物流信息
* @param orderCode
* @return
*/
... ...
... ... @@ -516,7 +516,7 @@ public class AppraiseService {
List<Integer> APPRAISE_SUCCESS_STATUS_CODE = Lists.newArrayList(AppraiseOrderStatus.JUDGE_PASS.getCode());
/**
* 给付费寄存 and 付费鉴定 发货用<br><br/>
* 现货寄存 and 现货鉴定 发货用<br><br/>
* 鉴定结果为以下场景,寄回
* 1.鉴定为假,质检不通过取消
* 2.无法鉴定
... ...
... ... @@ -574,7 +574,7 @@ public class ExpressInfoServiceImpl implements IExpressInfoService {
AppraiseOrderStatus.PLATFORM_APPRAISE_UNSURE.getCode());
/**
* 付费鉴定 and 付费寄存 物流信息
* 现货鉴定 and 现货寄存 物流信息
* @param orderCode
* @return
*/
... ... @@ -779,7 +779,7 @@ public class ExpressInfoServiceImpl implements IExpressInfoService {
Integer attribute = appraiseOrder.getAttributes();
Integer status = appraiseOrder.getStatus();
// 付费鉴定
// 现货鉴定
if (attribute == AppraiseOrderAttributes.PAID_APPRAISE.getCode()){
// 用户发货
if(status == AppraiseOrderStatus.SELLER_SEND_OUT.getCode()){
... ... @@ -793,7 +793,7 @@ public class ExpressInfoServiceImpl implements IExpressInfoService {
return Arrays.asList(EnumExpressType.EXPRESS_TYPE_REBACK.getCode());
}
}
// 付费寄存
// 现货寄存
else if(attribute == AppraiseOrderAttributes.PAID_DEPOSIT.getCode()){
boolean isSubOrder = Objects.nonNull(appraiseOrder.getParentOrderCode()) ? true : false;
... ... @@ -967,7 +967,7 @@ public class ExpressInfoServiceImpl implements IExpressInfoService {
/**
* 付费寄存 and 付费鉴定 最近的一条物流信息
* 现货寄存 and 现货鉴定 最近的一条物流信息
* @param appraiseOrder
* @return
*/
... ...