xiaoyong931011
2020-06-02 e9417d5cb8ccb2324e56ac8a25af97af45cc8c2c
src/main/java/com/xcong/excoin/modules/coin/service/impl/OrderCoinServiceImpl.java
@@ -43,7 +43,9 @@
import com.xcong.excoin.modules.platform.dao.PlatformCnyUsdtExchangeDao;
import com.xcong.excoin.modules.platform.dao.TradeSettingDao;
import com.xcong.excoin.modules.platform.entity.PlatformTradeSettingEntity;
import com.xcong.excoin.utils.CoinTypeConvert;
import com.xcong.excoin.utils.MessageSourceUtils;
import com.xcong.excoin.utils.RedisUtils;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.util.ObjectUtil;
@@ -67,6 +69,8 @@
   OrderCoinDealDao orderCoinDealDao;
   @Resource
   MemberAccountFlowEntityDao memberAccountFlowEntityDao;
    @Resource
    RedisUtils redisUtils;
   
   @Override
   public String generateSimpleSerialno(String userId) {
@@ -94,7 +98,7 @@
   }
   @Override
   public Result enterTransactionPageOfWalletCoin(String symbol, String type) {
   public Result enterTransactionPageOfWalletCoin(String symbol) {
      if (StrUtil.isBlank(symbol)) {
         return Result.fail(MessageSourceUtils.getString("order_service_0001"));
      }
@@ -110,12 +114,8 @@
      //获取USDT的币币账户信息
      MemberWalletCoinEntity walletCoinUsdt = memberWalletCoinDao.selectWalletCoinBymIdAndCode(memberId, 
                                             MemberWalletCoinEnum.WALLETCOINCODE.getValue());
      /**
       * todo
       */
      //获取某个币种的收盘价
      //Double closePrice = symbolsService.getCloseSymbolsBySymbolsName(symbol+"/USDT");
      BigDecimal closePrice = new BigDecimal("100.0000");
      BigDecimal closePrice = new BigDecimal(redisUtils.getString(CoinTypeConvert.convertToKey(symbol+"/USDT")));
      
      List<MemberSelectSymbolsEntity> memSymbols = memberSelectSymbolsDao.selectSymbolByMemIdAndSymbol(memberId, symbol);
@@ -135,11 +135,8 @@
      // 手续费用率
      transactionPageOfWalletCoinVo.setFeeRatio(tradeSetting.getFeeRatio().setScale(4, BigDecimal.ROUND_DOWN));
      // 用户可用金额
      if(MemberWalletCoinEnum.ENTERTRANSACTIONPAGEOFWALLETCOIN_BUY.getValue().equals(type)) {//买入
         transactionPageOfWalletCoinVo.setAvailableBalance(walletCoinUsdt.getAvailableBalance().setScale(4, BigDecimal.ROUND_DOWN));
      }else {
         transactionPageOfWalletCoinVo.setAvailableBalance(walletCoin.getAvailableBalance().setScale(4, BigDecimal.ROUND_DOWN));
      }
      transactionPageOfWalletCoinVo.setAvailableBalanceBuy(walletCoinUsdt.getAvailableBalance().setScale(4, BigDecimal.ROUND_DOWN));
      transactionPageOfWalletCoinVo.setAvailableBalanceSell(walletCoin.getAvailableBalance().setScale(4, BigDecimal.ROUND_DOWN));
      //当前价
      transactionPageOfWalletCoinVo.setCurrentPrice(closePrice.setScale(4, BigDecimal.ROUND_DOWN));
      //比例
@@ -148,7 +145,6 @@
      transactionPageOfWalletCoinVo.setCurrentPriceCny(cnyUsdt.multiply(closePrice).setScale(4, BigDecimal.ROUND_DOWN));
      
      transactionPageOfWalletCoinVo.setSymbol(symbol);
      transactionPageOfWalletCoinVo.setType(type);
      return Result.ok(transactionPageOfWalletCoinVo);
   }
@@ -158,13 +154,9 @@
         //获取用户ID
         Long memberId = LoginUserUtils.getAppLoginUser().getId();
         
         /**
          * todo
         */
         //查询当前价
         //BigDecimal nowPrice = new BigDecimal(redisUtil.getString(CoinTypeConConvert.convertToKey(symbol+"/USDT")));
         BigDecimal nowPrice = new BigDecimal(redisUtils.getString(CoinTypeConvert.convertToKey(symbol+"/USDT")));
         
         BigDecimal nowPrice = new BigDecimal("10.0000");
         // 获取交易管理的杠杠倍率,手续费率等信息,由平台进行设置
         symbol = symbol.toUpperCase();
         MemberWalletCoinEntity walletCoin = memberWalletCoinDao.selectWalletCoinBymIdAndCode(memberId, symbol);
@@ -335,6 +327,21 @@
               
               String symbol = orderCoinsEntity.getSymbol();
               
               OrderCoinsDealEntity detail = new OrderCoinsDealEntity();
               detail.setMemberId(memberId);
               detail.setOrderId(orderCoinsEntity.getId());
               detail.setOrderNo(generateSimpleSerialno(memberId.toString()));
               detail.setOrderType(orderCoinsEntity.getOrderType());
               detail.setTradeType(orderCoinsEntity.getTradeType());
               detail.setSymbol(symbol);
               detail.setOrderStatus(OrderCoinsDealEntity.ORDERSTATUS_CANCEL);
               detail.setSymbolCnt(orderCoinsEntity.getEntrustCnt());
               detail.setEntrustPrice(orderCoinsEntity.getEntrustPrice().setScale(4, BigDecimal.ROUND_DOWN));
               detail.setDealPrice(orderCoinsEntity.getDealPrice().setScale(4, BigDecimal.ROUND_DOWN));
               detail.setDealAmount(orderCoinsEntity.getDealAmount().setScale(4, BigDecimal.ROUND_DOWN));
               detail.setFeeAmount(orderCoinsEntity.getFeeAmount().setScale(4, BigDecimal.ROUND_DOWN));
               orderCoinDealDao.insert(detail);
               if(OrderCoinsEntity.ORDERTYPE_BUY.equals(orderCoinsEntity.getOrderType())) {
                  //如果是限价买入,撤单将USDT账户冻结金额返回
                  String walletCode = MemberWalletCoinEnum.WALLETCOINCODE.getValue();
@@ -380,33 +387,19 @@
                     return Result.ok(MessageSourceUtils.getString("order_service_0013"));
                  }
               }
               OrderCoinsDealEntity detail = new OrderCoinsDealEntity();
               detail.setMemberId(memberId);
               detail.setOrderId(orderCoinsEntity.getId());
               detail.setOrderNo(generateSimpleSerialno(memberId.toString()));
               detail.setOrderType(orderCoinsEntity.getOrderType());
               detail.setTradeType(orderCoinsEntity.getTradeType());
               detail.setSymbol(symbol);
               detail.setOrderStatus(OrderCoinsDealEntity.ORDERSTATUS_CANCEL);
               detail.setSymbolCnt(orderCoinsEntity.getEntrustCnt());
               detail.setEntrustPrice(orderCoinsEntity.getEntrustPrice().setScale(4, BigDecimal.ROUND_DOWN));
               detail.setDealPrice(orderCoinsEntity.getDealPrice().setScale(4, BigDecimal.ROUND_DOWN));
               detail.setDealAmount(orderCoinsEntity.getDealAmount().setScale(4, BigDecimal.ROUND_DOWN));
               detail.setFeeAmount(orderCoinsEntity.getFeeAmount().setScale(4, BigDecimal.ROUND_DOWN));
               orderCoinDealDao.insert(detail);
            }
      return Result.fail(MessageSourceUtils.getString("order_service_0043"));
   }
   @Override
   public Result findAllWalletCoinOrder() {
   public Result findAllWalletCoinOrder(String symbol) {
      //获取用户ID
      Long memberId = LoginUserUtils.getAppLoginUser().getId();
      
      OrderWalletCoinDealListVo orderWalletCoinDealListVo = new OrderWalletCoinDealListVo();
      List<OrderWalletCoinDealVo> arrayList = new ArrayList<OrderWalletCoinDealVo>();
      
      List<OrderCoinsDealEntity> selectAllWalletCoinOrder = orderCoinDealDao.selectAllWalletCoinOrder(memberId);
      List<OrderCoinsDealEntity> selectAllWalletCoinOrder = orderCoinDealDao.selectAllWalletCoinOrderBySymbol(memberId,symbol);
      if(CollUtil.isNotEmpty(selectAllWalletCoinOrder)) {
         for(OrderCoinsDealEntity orderCoinsDealEntity: selectAllWalletCoinOrder) {
            OrderWalletCoinDealVo entityToVo = OrderWalletCoinDealMapper.INSTANCE.entityToVoOrder(orderCoinsDealEntity);