Authored by mali

Merge branch 'test6.9.10' of http://git.yoho.cn/ufo/yohoufo-fore into test6.9.10

@@ -104,7 +104,7 @@ public class AppraiseController { @@ -104,7 +104,7 @@ public class AppraiseController {
104 104
105 105
106 /** 106 /**
107 - * 给付费寄存 and 付费鉴定 发货用<br><br/> 107 + * 现货寄存 and 现货鉴定 发货用<br><br/>
108 * 鉴定结果为以下场景,寄回 108 * 鉴定结果为以下场景,寄回
109 * 1.鉴定为假,质检不通过取消 109 * 1.鉴定为假,质检不通过取消
110 * 2.无法鉴定 110 * 2.无法鉴定
@@ -69,7 +69,7 @@ public class ExpressInfoController { @@ -69,7 +69,7 @@ public class ExpressInfoController {
69 69
70 70
71 /** 71 /**
72 - * 付费鉴定 and 付费鉴定查看物流信息 72 + * 现货鉴定 and 现场鉴定查看物流信息
73 * @param orderCode 73 * @param orderCode
74 * @return 74 * @return
75 */ 75 */
@@ -23,14 +23,14 @@ import java.util.Objects; @@ -23,14 +23,14 @@ import java.util.Objects;
23 public interface IExpressInfoService { 23 public interface IExpressInfoService {
24 24
25 /** 25 /**
26 - * 付费寄存 and 付费鉴定 最近的一条物流信息 26 + * 现货寄存 and 现货鉴定 最近的一条物流信息
27 * @param appraiseOrder 27 * @param appraiseOrder
28 * @return 28 * @return
29 */ 29 */
30 ExpressInfoDetail getLastExpressInfoDetail(AppraiseOrder appraiseOrder); 30 ExpressInfoDetail getLastExpressInfoDetail(AppraiseOrder appraiseOrder);
31 31
32 /** 32 /**
33 - * 付费鉴定 and 付费寄存 物流信息 33 + * 现货鉴定 and 现货寄存 物流信息
34 * @param orderCode 34 * @param orderCode
35 * @return 35 * @return
36 */ 36 */
@@ -516,7 +516,7 @@ public class AppraiseService { @@ -516,7 +516,7 @@ public class AppraiseService {
516 List<Integer> APPRAISE_SUCCESS_STATUS_CODE = Lists.newArrayList(AppraiseOrderStatus.JUDGE_PASS.getCode()); 516 List<Integer> APPRAISE_SUCCESS_STATUS_CODE = Lists.newArrayList(AppraiseOrderStatus.JUDGE_PASS.getCode());
517 517
518 /** 518 /**
519 - * 给付费寄存 and 付费鉴定 发货用<br><br/> 519 + * 现货寄存 and 现货鉴定 发货用<br><br/>
520 * 鉴定结果为以下场景,寄回 520 * 鉴定结果为以下场景,寄回
521 * 1.鉴定为假,质检不通过取消 521 * 1.鉴定为假,质检不通过取消
522 * 2.无法鉴定 522 * 2.无法鉴定
@@ -574,7 +574,7 @@ public class ExpressInfoServiceImpl implements IExpressInfoService { @@ -574,7 +574,7 @@ public class ExpressInfoServiceImpl implements IExpressInfoService {
574 AppraiseOrderStatus.PLATFORM_APPRAISE_UNSURE.getCode()); 574 AppraiseOrderStatus.PLATFORM_APPRAISE_UNSURE.getCode());
575 575
576 /** 576 /**
577 - * 付费鉴定 and 付费寄存 物流信息 577 + * 现货鉴定 and 现货寄存 物流信息
578 * @param orderCode 578 * @param orderCode
579 * @return 579 * @return
580 */ 580 */
@@ -779,7 +779,7 @@ public class ExpressInfoServiceImpl implements IExpressInfoService { @@ -779,7 +779,7 @@ public class ExpressInfoServiceImpl implements IExpressInfoService {
779 Integer attribute = appraiseOrder.getAttributes(); 779 Integer attribute = appraiseOrder.getAttributes();
780 Integer status = appraiseOrder.getStatus(); 780 Integer status = appraiseOrder.getStatus();
781 781
782 - // 付费鉴定 782 + // 现货鉴定
783 if (attribute == AppraiseOrderAttributes.PAID_APPRAISE.getCode()){ 783 if (attribute == AppraiseOrderAttributes.PAID_APPRAISE.getCode()){
784 // 用户发货 784 // 用户发货
785 if(status == AppraiseOrderStatus.SELLER_SEND_OUT.getCode()){ 785 if(status == AppraiseOrderStatus.SELLER_SEND_OUT.getCode()){
@@ -793,7 +793,7 @@ public class ExpressInfoServiceImpl implements IExpressInfoService { @@ -793,7 +793,7 @@ public class ExpressInfoServiceImpl implements IExpressInfoService {
793 return Arrays.asList(EnumExpressType.EXPRESS_TYPE_REBACK.getCode()); 793 return Arrays.asList(EnumExpressType.EXPRESS_TYPE_REBACK.getCode());
794 } 794 }
795 } 795 }
796 - // 付费寄存 796 + // 现货寄存
797 else if(attribute == AppraiseOrderAttributes.PAID_DEPOSIT.getCode()){ 797 else if(attribute == AppraiseOrderAttributes.PAID_DEPOSIT.getCode()){
798 798
799 boolean isSubOrder = Objects.nonNull(appraiseOrder.getParentOrderCode()) ? true : false; 799 boolean isSubOrder = Objects.nonNull(appraiseOrder.getParentOrderCode()) ? true : false;
@@ -967,7 +967,7 @@ public class ExpressInfoServiceImpl implements IExpressInfoService { @@ -967,7 +967,7 @@ public class ExpressInfoServiceImpl implements IExpressInfoService {
967 967
968 968
969 /** 969 /**
970 - * 付费寄存 and 付费鉴定 最近的一条物流信息 970 + * 现货寄存 and 现货鉴定 最近的一条物流信息
971 * @param appraiseOrder 971 * @param appraiseOrder
972 * @return 972 * @return
973 */ 973 */