...
|
...
|
@@ -92,10 +92,6 @@ public class StoredSellerDepositServiceImpl implements IStoredSellerDepositServi |
|
|
throw new ServiceException(ServiceError.ORDER_REQUEST_PARM_IS_EMPTY);
|
|
|
}
|
|
|
|
|
|
if (!merchantOrderPaymentService.canRejoin(uid)) {
|
|
|
throw new UfoServiceException(400, "入驻次数已经达到上限!");
|
|
|
}
|
|
|
|
|
|
BigDecimal amount = getValidMoney(shoppingRequest.getAmount());
|
|
|
if (amount==null||amount.compareTo(BigDecimal.ZERO) <= 0) {
|
|
|
throw new UfoServiceException(400, "金额不合法,预存金额必须大于0");
|
...
|
...
|
|