Authored by chenchao

fix sync error

@@ -252,6 +252,9 @@ public class ProductProxyService extends AbsProxyService{ @@ -252,6 +252,9 @@ public class ProductProxyService extends AbsProxyService{
252 case SELLER_CANCEL_SELL: 252 case SELLER_CANCEL_SELL:
253 status = 4; 253 status = 4;
254 break; 254 break;
  255 + case WAITING_AUDIT:
  256 + status = skupStatus.getCode();
  257 + break;
255 default: 258 default:
256 status = null; 259 status = null;
257 break; 260 break;
@@ -72,6 +72,8 @@ public class ChangePriceService { @@ -72,6 +72,8 @@ public class ChangePriceService {
72 case SECOND_HAND: 72 case SECOND_HAND:
73 spcb = singleGoodsChangePriceService.computeChangePrice(req); 73 spcb = singleGoodsChangePriceService.computeChangePrice(req);
74 break; 74 break;
  75 + default:
  76 + throw new UfoServiceException(400, "商品类型错误");
75 } 77 }
76 78
77 return spcb; 79 return spcb;