新版仿ok交易所-后端
zyy
2025-10-11 f620192bcac7f5cb910a99e092edcee00280ce10
trading-order-service/src/main/java/com/yami/trading/service/impl/RechargeBlockchainOrderServiceImpl.java
@@ -87,9 +87,13 @@
    @Transactional
    public void manualReceipt(Integer auto ,String id, BigDecimal amount,String operator_username) {
//        Date now = new Date();
        try {
        RechargeBlockchainOrder recharge = getById(id);
        if (recharge == null) {
                recharge = findByOrderNo(id);
                if (recharge == null) {
            throw new YamiShopBindException("参数错误!");
                }
        }
        User party = userService.getById(recharge.getPartyId());
        if (party == null) {
@@ -302,6 +306,9 @@
        logService.save(log);
        tipService.deleteTip(recharge.getUuid().toString());
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }
    @Override
    public long waitCount() {