Helius
2022-05-27 4020506fe1fa75993b44b4faaa0992c9b39f38d3
fix goods-update
3 files modified
14 ■■■■ changed files
src/main/java/cc/mrbird/febs/mall/service/impl/MemberProfitServiceImpl.java 1 ●●●● patch | view | raw | blame | history
src/main/resources/templates/febs/views/modules/goods/goodsUpdateNew.html 7 ●●●● patch | view | raw | blame | history
src/test/java/cc/mrbird/febs/AgentTest.java 6 ●●●●● patch | view | raw | blame | history
src/main/java/cc/mrbird/febs/mall/service/impl/MemberProfitServiceImpl.java
@@ -93,6 +93,7 @@
     * @param orderId
     */
    @Override
    @Transactional(rollbackFor = Exception.class)
    public void dynamicProfit(Long orderId) {
        log.info("######直推奖励, 订单ID:{}######", orderId);
        MallOrderInfo orderInfo = mallOrderInfoMapper.selectById(orderId);
src/main/resources/templates/febs/views/modules/goods/goodsUpdateNew.html
@@ -588,8 +588,11 @@
                selector: '#toolbar-container',
                mode: 'default'
            });
            tableSkuData = skus;
            reloadTable(skus);
            if (skus) {
                tableSkuData = skus;
                reloadTable(skus);
            }
        }
        form.on('submit(goods-update-form-submit)', function (data) {
src/test/java/cc/mrbird/febs/AgentTest.java
@@ -615,4 +615,10 @@
    public void profitJobTest() {
        profitJob.profitJob();
    }
    @Test
    public void orderReturnTest() {
        agentProducer.sendOrderReturn(1L);
    }
}