|
|
|
@@ -180,29 +180,31 @@ public class StudyServiceImpl implements IStudyService{
|
|
|
|
query.addFilter(FieldFilters.eq("courseId",courseId));
|
|
|
|
query.addFilter(FieldFilters.eq("courseId",courseId));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(StringUtils.isNotBlank(name)) {
|
|
|
|
if(StringUtils.isNotBlank(name)) {
|
|
|
|
query.addFilter(FieldFilters.eq("aname", name));
|
|
|
|
query.addFilter(FieldFilters.like("aname", name));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
int pageIndex2 = pageIndex-1;
|
|
|
|
int pageIndex2 = pageIndex-1;
|
|
|
|
if(status!=null) {
|
|
|
|
if(status!=null) {
|
|
|
|
if(status==3) {
|
|
|
|
if(status==3) {
|
|
|
|
query.addFilter(FieldFilters.eq("status", 2));
|
|
|
|
query.addFilter(FieldFilters.eq("status", 2));
|
|
|
|
|
|
|
|
query.addFilter(FieldFilters.like("aname", name));
|
|
|
|
return scItemDao.findPage(query.builder());
|
|
|
|
return scItemDao.findPage(query.builder());
|
|
|
|
}else if(status==2){
|
|
|
|
}else if(status==2){
|
|
|
|
query.addFilter(FieldFilters.eq("status",9));
|
|
|
|
query.addFilter(FieldFilters.eq("status",9));
|
|
|
|
|
|
|
|
query.addFilter(FieldFilters.like("aname", name));
|
|
|
|
return scItemDao.findPage(query.builder());
|
|
|
|
return scItemDao.findPage(query.builder());
|
|
|
|
}else if (status == 1) {
|
|
|
|
}else if (status == 1) {
|
|
|
|
String sql = "select bsc.id,bsc.course_id,bsc.course_name,bsc.aname,item.content_id,0 as progress,1 as status from boe_study_course bsc " +
|
|
|
|
String sql = "select bsc.id,bsc.course_id,bsc.course_name,bsc.aname,item.content_id,0 as progress,1 as status from boe_study_course bsc " +
|
|
|
|
" left join boe_study_course_item item on bsc.course_id = item.course_id and bsc.id = item.study_id" +
|
|
|
|
" left join boe_study_course_item item on bsc.course_id = item.course_id and bsc.id = item.study_id" +
|
|
|
|
" where bsc.course_id = '"+courseId+"' and bsc.id not in(" +
|
|
|
|
" where bsc.course_id = '"+courseId+"' and bsc.aname like '%"+name+"%' and bsc.id not in(" +
|
|
|
|
" select item.study_id from boe_study_course_item item " +
|
|
|
|
" select item.study_id from boe_study_course_item item " +
|
|
|
|
" where item.course_id = '" + courseId + "' and item.content_id = '"+ contentId+"' group by item.study_id" +
|
|
|
|
" where item.course_id = '" + courseId + "' and item.content_id = '"+ contentId+"' and item.aname like '%"+name+"%' group by item.study_id" +
|
|
|
|
" ) group by bsc.id limit "+ pageIndex2+","+ pageSize+";";
|
|
|
|
" ) group by bsc.id limit "+ pageIndex2+","+ pageSize+";";
|
|
|
|
|
|
|
|
|
|
|
|
String sql2 = "select count(*) as total from (select bsc.id,bsc.course_id,bsc.course_name,bsc.aname,item.content_id,0 as progress,1 as status from boe_study_course bsc " +
|
|
|
|
String sql2 = "select count(*) as total from (select bsc.id,bsc.course_id,bsc.course_name,bsc.aname,item.content_id,0 as progress,1 as status from boe_study_course bsc " +
|
|
|
|
" left join boe_study_course_item item on bsc.course_id = item.course_id and bsc.id = item.study_id" +
|
|
|
|
" left join boe_study_course_item item on bsc.course_id = item.course_id and bsc.id = item.study_id" +
|
|
|
|
" where bsc.course_id = '"+courseId+"' and bsc.id not in(" +
|
|
|
|
" where bsc.course_id = '"+courseId+"' and bsc.aname like '%"+name+"%' and bsc.id not in(" +
|
|
|
|
" select item.study_id from boe_study_course_item item " +
|
|
|
|
" select item.study_id from boe_study_course_item item " +
|
|
|
|
" where item.course_id = '" + courseId + "' and item.content_id = '"+ contentId+"' group by item.study_id" +
|
|
|
|
" where item.course_id = '" + courseId + "' and item.content_id = '"+ contentId+"' and item.aname like '%"+name+"%' group by item.study_id" +
|
|
|
|
" ) group by bsc.id) as total";
|
|
|
|
" ) group by bsc.id) as total";
|
|
|
|
log.info("资源完成情况未开始sql"+sql);
|
|
|
|
log.info("资源完成情况未开始sql"+sql);
|
|
|
|
List<Object[]> list = scDao.sqlFindList(sql);
|
|
|
|
List<Object[]> list = scDao.sqlFindList(sql);
|
|
|
|
@@ -224,46 +226,22 @@ public class StudyServiceImpl implements IStudyService{
|
|
|
|
return pageList;
|
|
|
|
return pageList;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// String sql = "select * from (select bsc.id,bsc.course_id,bsc.course_name,bsc.aname,item.progress,item.status from boe_study_course bsc left join " +
|
|
|
|
|
|
|
|
// "boe_study_course_item item on item.course_id = bsc.course_id and item.study_id = bsc.id " +
|
|
|
|
|
|
|
|
// "where bsc.`status` in (2,9) and bsc.course_id = '"+ courseId+"' group by bsc.id " +
|
|
|
|
|
|
|
|
// " UNION ALL " +
|
|
|
|
|
|
|
|
// " select bsc.id,bsc.course_id,bsc.course_name,bsc.aname,0 as progress,1 as status from boe_study_course bsc " +
|
|
|
|
|
|
|
|
// " LEFT JOIN boe_study_course_item item on item.course_id = bsc.course_id " +
|
|
|
|
|
|
|
|
// " where bsc.course_id = '"+courseId+"' and bsc.id not in (" +
|
|
|
|
|
|
|
|
// " select bsc.id from boe_study_course bsc " +
|
|
|
|
|
|
|
|
// " left join boe_study_course_item item on item.course_id = bsc.course_id and item.study_id = bsc.id " +
|
|
|
|
|
|
|
|
// " where bsc.course_id = '" + courseId + "' and item.content_id = '"+ contentId+"' group by bsc.id" +
|
|
|
|
|
|
|
|
// " )group by bsc.id) a group by a.id limit "+ pageIndex+","+ pageSize+";";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// String sql2 = "select count(*) from (select bsc.id,bsc.course_id,bsc.course_name,bsc.aname,item.progress,item.status from boe_study_course bsc left join " +
|
|
|
|
|
|
|
|
// "boe_study_course_item item on item.course_id = bsc.course_id and item.study_id = bsc.id " +
|
|
|
|
|
|
|
|
// "where bsc.`status` in (2,9) and bsc.course_id = '"+ courseId+"' group by bsc.id " +
|
|
|
|
|
|
|
|
// " UNION ALL " +
|
|
|
|
|
|
|
|
// " select bsc.id,bsc.course_id,bsc.course_name,bsc.aname,0 as progress,1 as status from boe_study_course bsc " +
|
|
|
|
|
|
|
|
// " LEFT JOIN boe_study_course_item item on item.course_id = bsc.course_id " +
|
|
|
|
|
|
|
|
// " where bsc.course_id = '"+courseId+"' and bsc.id not in (" +
|
|
|
|
|
|
|
|
// " select bsc.id from boe_study_course bsc " +
|
|
|
|
|
|
|
|
// " left join boe_study_course_item item on item.course_id = bsc.course_id and item.study_id = bsc.id " +
|
|
|
|
|
|
|
|
// " where bsc.course_id = '" + courseId + "' and item.content_id = '"+ contentId+"' group by bsc.id" +
|
|
|
|
|
|
|
|
// " )group by bsc.id) a group by a.id";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
String sql = "select a.id, a.course_id, a.course_name, a.aname, " +
|
|
|
|
String sql = "select a.id, a.course_id, a.course_name, a.aname, " +
|
|
|
|
"IFNULL(b.finish_time, '0') as finish_time, IFNULL(b.progress, 0) as progress, IFNULL(b.status, 1) as status " +
|
|
|
|
"IFNULL(b.finish_time, '0') as finish_time, IFNULL(b.progress, 0) as progress, IFNULL(b.status, 1) as status " +
|
|
|
|
"from (select id, course_id, course_name, aname, 0, 1 from boe_study_course where course_id = '" + courseId + "') a " +
|
|
|
|
"from (select id, course_id, course_name, aname, 0, 1 from boe_study_course where course_id = '" + courseId + "' and aname like '%"+name+"%') a " +
|
|
|
|
"left join " +
|
|
|
|
"left join " +
|
|
|
|
"(select bsc.id, bsc.course_id, bsc.course_name, bsc.aname, item.finish_time, item.progress, item.status " +
|
|
|
|
"(select bsc.id, bsc.course_id, bsc.course_name, bsc.aname, item.finish_time, item.progress, item.status " +
|
|
|
|
"from boe_study_course bsc left join boe_study_course_item item on item.course_id = bsc.course_id and item.study_id = bsc.id " +
|
|
|
|
"from boe_study_course bsc left join boe_study_course_item item on item.course_id = bsc.course_id and item.study_id = bsc.id " +
|
|
|
|
"where bsc.course_id = '" + courseId + "' and item.content_id = '" + contentId + "' group by bsc.id) b " +
|
|
|
|
"where bsc.course_id = '" + courseId + "' and item.content_id = '" + contentId + "' and item.aname like '%"+name+"%' group by bsc.id) b " +
|
|
|
|
"on a.course_id = b.course_id and a.id = b.id " +
|
|
|
|
"on a.course_id = b.course_id and a.id = b.id " +
|
|
|
|
"group by a.id limit "+ pageIndex2+","+ pageSize+";";
|
|
|
|
"group by a.id limit "+ pageIndex2+","+ pageSize+";";
|
|
|
|
String sql2 = "select count(*) as total from (select a.id, a.course_id, a.course_name, a.aname, " +
|
|
|
|
String sql2 = "select count(*) as total from (select a.id, a.course_id, a.course_name, a.aname, " +
|
|
|
|
"IFNULL(b.finish_time, 0) as finish_time, IFNULL(b.progress, 0) as progress, IFNULL(b.status, 1) as status " +
|
|
|
|
"IFNULL(b.finish_time, 0) as finish_time, IFNULL(b.progress, 0) as progress, IFNULL(b.status, 1) as status " +
|
|
|
|
"from (select id, course_id, course_name, aname, 0, 1 from boe_study_course where course_id = '" + courseId + "') a " +
|
|
|
|
"from (select id, course_id, course_name, aname, 0, 1 from boe_study_course where course_id = '" + courseId + "' and aname like '%"+name+"%') a " +
|
|
|
|
"left join " +
|
|
|
|
"left join " +
|
|
|
|
"(select bsc.id, bsc.course_id, bsc.course_name, bsc.aname, item.finish_time, item.progress, item.status " +
|
|
|
|
"(select bsc.id, bsc.course_id, bsc.course_name, bsc.aname, item.finish_time, item.progress, item.status " +
|
|
|
|
"from boe_study_course bsc left join boe_study_course_item item on item.course_id = bsc.course_id and item.study_id = bsc.id " +
|
|
|
|
"from boe_study_course bsc left join boe_study_course_item item on item.course_id = bsc.course_id and item.study_id = bsc.id " +
|
|
|
|
"where bsc.course_id = '" + courseId + "' and item.content_id = '" + contentId + "' group by bsc.id) b " +
|
|
|
|
"where bsc.course_id = '" + courseId + "' and item.content_id = '" + contentId + "' and item.aname like '%"+name+"%' group by bsc.id) b " +
|
|
|
|
"on a.course_id = b.course_id and a.id = b.id " +
|
|
|
|
"on a.course_id = b.course_id and a.id = b.id " +
|
|
|
|
"group by a.id) as total";
|
|
|
|
"group by a.id) as total";
|
|
|
|
log.info("资源完成情况全部sql"+sql);
|
|
|
|
log.info("资源完成情况全部sql"+sql);
|
|
|
|
|