|
|
|
@ -84,7 +84,8 @@ |
|
|
|
|
<update id="deleteReport"> |
|
|
|
|
UPDATE tms_project_record tpr,tms_experimental_report ter |
|
|
|
|
SET tpr.isdel = 1, ter.isdel = 1 |
|
|
|
|
WHERE tpr.recordId = #{recordId} AND ter.reportId = #{reportId} |
|
|
|
|
WHERE tpr.recordId = #{recordId} |
|
|
|
|
AND ter.reportId = #{reportId} |
|
|
|
|
</update> |
|
|
|
|
<update id="updateComment"> |
|
|
|
|
UPDATE tms_experimental_report |
|
|
|
@ -503,8 +504,8 @@ |
|
|
|
|
AND re.isdel = 0; |
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
<select id="getTeachAchievement" resultType="com.msdw.tms.entity.vo.AchievementManagementVO"> |
|
|
|
|
SELECT r.recordId, schoolName,tet.experimental_class_name, userName, workNumber, score, submitTime, ter.reportId |
|
|
|
|
|
|
|
|
|
<!--SELECT r.recordId, schoolName,tet.experimental_class_name, userName, workNumber, score, submitTime, ter.reportId |
|
|
|
|
from tms_project_record r |
|
|
|
|
inner join student s on s.userId = r.userId |
|
|
|
|
inner join hr_user_info u on u.userId = r.userId |
|
|
|
@ -518,7 +519,28 @@ |
|
|
|
|
AND u.isdel = 0 |
|
|
|
|
AND sch.isdel = 0 |
|
|
|
|
AND ter.isdel = 0 |
|
|
|
|
AND tet.is_del = 0 |
|
|
|
|
AND tet.is_del = 0--> |
|
|
|
|
<select id="getTeachAchievement" resultType="com.msdw.tms.entity.vo.AchievementManagementVO"> |
|
|
|
|
SELECT schoolName, |
|
|
|
|
experimental_class_name, |
|
|
|
|
userName, |
|
|
|
|
workNumber, |
|
|
|
|
r.score, |
|
|
|
|
r.recordId, |
|
|
|
|
report.reportId |
|
|
|
|
FROM tms_experimental_teaching t |
|
|
|
|
INNER JOIN tms_experimental_report report ON report.projectId = t.id |
|
|
|
|
INNER JOIN tms_project_record r ON r.recordId = report.eventId |
|
|
|
|
INNER JOIN hr_user_info u ON u.userId = r.userId |
|
|
|
|
INNER JOIN school s ON s.schoolId = u.schoolId |
|
|
|
|
INNER JOIN student stu ON stu.userId = u.userId |
|
|
|
|
WHERE t.id = #{id} |
|
|
|
|
AND t.is_del = 0 |
|
|
|
|
AND report.isdel = 0 |
|
|
|
|
AND r.isdel = 0 |
|
|
|
|
AND u.isdel = 0 |
|
|
|
|
AND s.isdel = 0 |
|
|
|
|
AND stu.isdel = 0; |
|
|
|
|
|
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
|