| | |
| | | @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) { |
| | |
| | | |
| | | logService.save(log); |
| | | tipService.deleteTip(recharge.getUuid().toString()); |
| | | } catch (Exception e) { |
| | | throw new RuntimeException(e); |
| | | } |
| | | } |
| | | @Override |
| | | public long waitCount() { |