...
|
...
|
@@ -441,10 +441,17 @@ public class ExpressInfoServiceImpl implements IExpressInfoService { |
|
|
expressInfoRespBo.setStage(1);
|
|
|
if(OrderStatus.PLATFORM_RECEIVE.getCode()==status
|
|
|
||OrderStatus.PLATFORM_CHECKING.getCode()==status
|
|
|
||OrderStatus.MINI_FAULT_WAITING.getCode()==status
|
|
|
||OrderStatus.MINI_FAULT_ACCEPT.getCode()==status
|
|
|
||OrderStatus.JUDGE_PASS.getCode()==status){
|
|
|
||OrderStatus.MINI_FAULT_WAITING.getCode()==status){
|
|
|
expressInfoRespBo.setStage(2);
|
|
|
}else if(OrderStatus.MINI_FAULT_ACCEPT.getCode()==status
|
|
|
||OrderStatus.JUDGE_PASS.getCode()==status){
|
|
|
if(TabType.BUY==actor){
|
|
|
//买家
|
|
|
expressInfoRespBo.setStage(2);
|
|
|
}else{
|
|
|
//卖家
|
|
|
expressInfoRespBo.setStage(3);
|
|
|
}
|
|
|
}else if(OrderStatus.WAITING_RECEIVE.getCode()==status){
|
|
|
if(TabType.BUY==actor){
|
|
|
//买家
|
...
|
...
|
|