Authored by chenchao

fix sync error

... ... @@ -252,6 +252,9 @@ public class ProductProxyService extends AbsProxyService{
case SELLER_CANCEL_SELL:
status = 4;
break;
case WAITING_AUDIT:
status = skupStatus.getCode();
break;
default:
status = null;
break;
... ...
... ... @@ -72,6 +72,8 @@ public class ChangePriceService {
case SECOND_HAND:
spcb = singleGoodsChangePriceService.computeChangePrice(req);
break;
default:
throw new UfoServiceException(400, "商品类型错误");
}
return spcb;
... ...