|  |  | 
 |  |  | import com.alibaba.fastjson.JSONObject;
 | 
 |  |  | import com.xcong.excoin.modules.blackchain.service.RocService;
 | 
 |  |  | import com.xcong.excoin.modules.coin.mapper.OrderCoinsDealMapper;
 | 
 |  |  | import com.xcong.excoin.modules.member.dao.MemberDao;
 | 
 |  |  | import com.xcong.excoin.modules.member.entity.MemberEntity;
 | 
 |  |  | import com.xcong.excoin.modules.platform.entity.PlatformCnyUsdtExchangeEntity;
 | 
 |  |  | import com.xcong.excoin.modules.platform.entity.PlatformSymbolsCoinEntity;
 | 
 |  |  | 
 | 
 |  |  | 
 |  |  | 
 | 
 |  |  |     @Resource
 | 
 |  |  |     private CoinTraderFactory factory;
 | 
 |  |  | 
 | 
 |  |  |     @Resource
 | 
 |  |  |     private MemberDao memberDao;
 | 
 |  |  | 
 | 
 |  |  | 
 | 
 |  |  |     @Override
 | 
 |  |  | 
 |  |  |     public Result submitSalesWalletCoinOrderWithMatch(String symbol, Integer type, Integer tradeType, BigDecimal price, BigDecimal amount, BigDecimal entrustAmount) {
 | 
 |  |  |         //获取用户ID
 | 
 |  |  |         Long memberId = LoginUserUtils.getAppLoginUser().getId();
 | 
 |  |  |         // 需要实名
 | 
 |  |  |         MemberEntity memberEntity = memberDao.selectById(memberId);
 | 
 |  |  |         if(!MemberEntity.CERTIFY_STATUS_Y.equals(memberEntity.getCertifyStatus())){
 | 
 |  |  |             return Result.fail(MessageSourceUtils.getString("member_controller_0001"));
 | 
 |  |  |         }
 | 
 |  |  |         BigDecimal nowPriceinBigDecimal = price;
 | 
 |  |  |         //查询当前价
 | 
 |  |  |         //BigDecimal nowPrice = new BigDecimal(redisUtils.getString(CoinTypeConvert.convertToKey(symbol + "/USDT")));
 | 
 |  |  | 
 |  |  |                 if (ObjectUtil.isNotEmpty(walletCoin)) {
 | 
 |  |  |                     //手续费 = 开仓价*数量*手续费率
 | 
 |  |  |                     //返还金额=开仓价*未成交数量+手续费
 | 
 |  |  | 
 | 
 |  |  |                     // 市价的按成交额退款
 | 
 |  |  |                     BigDecimal returnBalance = orderCoinsEntity.getEntrustAmount().subtract(orderCoinsEntity.getDealAmount());
 | 
 |  |  |                     // 需要退回的手续费
 | 
 |  |  |                     BigDecimal returnFee = BigDecimal.ZERO;
 | 
 |  |  | 
 |  |  |                     update.setOrderStatus(OrderCoinsEntity.ORDERSTATUS_DONE);
 | 
 |  |  |                     update.setUpdateTime(new Date());
 | 
 |  |  |                     orderCoinsDao.updateById(update);
 | 
 |  |  |                     // 限价买入时,如果成交价比设置的价格低,需要退还多余的冻结
 | 
 |  |  |                     OrderCoinsEntity coinsEntity = orderCoinsDao.selectById(buyOrderId);
 | 
 |  |  |                     BigDecimal subtract = coinsEntity.getEntrustAmount().subtract(coinsEntity.getDealAmount());
 | 
 |  |  |                     if(subtract.compareTo(BigDecimal.ZERO)>=0){
 | 
 |  |  |                         // 下单扣的比较多
 | 
 |  |  |                         memberWalletCoinDao.updateWalletBalance(coinsEntity.getId(),subtract,subtract,subtract.negate());
 | 
 |  |  |                     }
 | 
 |  |  |                 } else {
 | 
 |  |  |                     OrderCoinsEntity update = new OrderCoinsEntity();
 | 
 |  |  |                     update.setId(buyOrderId);
 |