Authored by LUOXC

refactor

@@ -636,8 +636,8 @@ public class MerchantOrderPaymentService extends AbstractOrderPaymentService { @@ -636,8 +636,8 @@ public class MerchantOrderPaymentService extends AbstractOrderPaymentService {
636 } 636 }
637 if (allMoney.compareTo(sw.getAmount()) != 0) { 637 if (allMoney.compareTo(sw.getAmount()) != 0) {
638 logger.error("uid={}退出入驻账目简要核对,总账-处罚={},与余额{}不一致", uid, allMoney, sw.getAmount()); 638 logger.error("uid={}退出入驻账目简要核对,总账-处罚={},与余额{}不一致", uid, allMoney, sw.getAmount());
639 - // 20200703长款允许退出  
640 - if(uid != 61110879){ 639 + // 20200703短款不允许退出(因该退款金额小于账号金额)
  640 + if(allMoney.compareTo(sw.getAmount()) < 0){
641 return null; 641 return null;
642 } 642 }
643 } 643 }