fix
Helius
2021-07-15 f69fd42a3ae2d11713dcd284ae3db57e449ae6dd
gc-order/src/main/java/com/xzx/gc/order/service/JhyOrderService.java
@@ -58,6 +58,9 @@
    @Autowired
    private IdUtils idUtils;
    @Autowired
    private DistribService distribService;
    public void addJhyOrder(AddJhyOrderDto orderDto) {
        JhyInfo jhyInfo = jhyInfoMapper.selectJhyInfoByUserId(orderDto.getUserId());
        if (jhyInfo != null && JhyInfo.CHECK_PASS.equals(jhyInfo.getStatus())) {
@@ -230,5 +233,7 @@
        userAccount.setCollectScore(userScore.add(totalScore).setScale( 0, BigDecimal.ROUND_DOWN ).toString());
        accountMapper.updateByPrimaryKey(userAccount);
        distribService.distribRecord(order.getId(), order.getUserId());
    }
}