...
|
...
|
@@ -71,6 +71,9 @@ public class StoredSellerDepositServiceImpl implements IStoredSellerDepositServi |
|
|
@Autowired
|
|
|
StoredSellerCacheService storedSellerCacheService;
|
|
|
|
|
|
@Autowired
|
|
|
private SkupService skupService;
|
|
|
|
|
|
/**
|
|
|
* 充值保证金
|
|
|
*/
|
...
|
...
|
@@ -200,7 +203,7 @@ public class StoredSellerDepositServiceImpl implements IStoredSellerDepositServi |
|
|
throw new UfoServiceException(400,"商户存在未完成订单,不允许退驻!");
|
|
|
}
|
|
|
|
|
|
total=sellerOrderService.getCanSellSkupBySellerUid(uid);
|
|
|
total=skupService.getCanSellSkupBySellerUid(uid);
|
|
|
if(total!=null && total>0){
|
|
|
logger.error("quitStoredSeller not allowed cause of can seller product ,uid {} ,total {}" ,uid,total);
|
|
|
throw new UfoServiceException(400,"商户存在出售中商品,不允许退驻!");
|
...
|
...
|
|