|
@@ -569,14 +569,14 @@
|
|
|
AND DAY(fs_user_course_count.complete_watch_date) = DAY(NOW())
|
|
|
</when>
|
|
|
<when test = "tabValue == 3">
|
|
|
- AND fs_user_course_count.status = 3
|
|
|
+ AND (fs_user_course_count.status = 3 or fs_user_course_count.status is null)
|
|
|
</when>
|
|
|
</choose>
|
|
|
</if>
|
|
|
<if test="watchCourseType != null and watchCourseType !='' ">
|
|
|
<choose>
|
|
|
<when test = "watchCourseType == 1">
|
|
|
- AND fs_user_course_count.status = 3
|
|
|
+ AND (fs_user_course_count.status = 3 or fs_user_course_count.status is null)
|
|
|
</when>
|
|
|
<when test = "watchCourseType == 2">
|
|
|
AND fs_user_course_count.status = 1
|
|
@@ -592,7 +592,7 @@
|
|
|
AND fs_user_course_count.miss_course_status = 1
|
|
|
</when>
|
|
|
<when test = "missCourseStatus == 2">
|
|
|
- AND fs_user_course_count.miss_course_status = 2
|
|
|
+ AND (fs_user_course_count.miss_course_status = 2 or fs_user_course_count.miss_course_status is null )
|
|
|
</when>
|
|
|
</choose>
|
|
|
</if>
|