he2802 vor 2 Jahren
Ursprung
Commit
9dc5a43011

+ 2 - 2
zhongzheng-system/src/main/java/com/zhongzheng/modules/goods/service/impl/GoodsServiceImpl.java

@@ -737,7 +737,7 @@ public class GoodsServiceImpl extends ServiceImpl<GoodsMapper, Goods> implements
         }
 
         //修改商品课程节观看权限
-        List<CourseMenuAddBo> menuList = bo.getMenuList();
+       /* List<CourseMenuAddBo> menuList = bo.getMenuList();
         if (CollectionUtils.isEmpty(menuList)) {
             //商品下没有课程/节
             iCourseSectionWatchPerService.update(new LambdaUpdateWrapper<CourseSectionWatchPer>()
@@ -750,7 +750,7 @@ public class GoodsServiceImpl extends ServiceImpl<GoodsMapper, Goods> implements
                     .set(CourseSectionWatchPer::getStatus, 0)
                     .eq(CourseSectionWatchPer::getGoodsId, bo.getGoodsId())
                     .notIn(CourseSectionWatchPer::getCourseId, courseIds));
-        }
+        }*/
 
         return this.updateById(update);
     }

+ 2 - 2
zhongzheng-system/src/main/resources/mapper/modules/top/TopOldOrderMapper.xml

@@ -258,10 +258,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             AND o.check_status = #{checkStatus}
         </if>
         <if test="refundStatus != null">
-            AND o.refund_status = #{refundStatus}
+            AND o.order_refund_status = #{refundStatus}
         </if>
         <if test="refundStatusList != null and refundStatusList.size()!=0 ">
-            AND o.refund_status in
+            AND o.order_refund_status in
             <foreach collection="refundStatusList" item="item" index="index" open="(" close=")" separator=",">
                 #{item}
             </foreach>