|
@@ -30,7 +30,9 @@ func AddExamRecord(er *entity.ExamRecord) *result.Result {
|
|
|
if err != nil {
|
|
|
return result.UNKNOW_ERROR.SetData(err)
|
|
|
}
|
|
|
-
|
|
|
+ fmt.Println("--------------------ADDTOKEN--------------------------------")
|
|
|
+ fmt.Printf("ID:%d\n", er.Id)
|
|
|
+ fmt.Printf("TOKEN:%s\n", uuId)
|
|
|
return result.SuccessResult(gin.H{
|
|
|
"id": er.Id,
|
|
|
"token": uuId,
|
|
@@ -176,7 +178,6 @@ where u.id = ? and e.delete_at is null and er.status!=0 `
|
|
|
}
|
|
|
|
|
|
func UpdateExamRecord(erv *vo.ExamRecordVo) *result.Result {
|
|
|
-
|
|
|
tx, err := config.DB.Beginx()
|
|
|
return utils.Transation(tx, err, func(tx *sqlx.Tx) *result.Result {
|
|
|
// 1、查询是否存在该记录
|
|
@@ -186,10 +187,13 @@ from exam_record er
|
|
|
where er.id = ?
|
|
|
and er.token = ?
|
|
|
and er.update_at - er.create_at <= e.duration
|
|
|
- and e.end_at < ?
|
|
|
+ and e.end_at > ?
|
|
|
`
|
|
|
+ fmt.Println("--------------------UPDATETOKEN--------------------------------")
|
|
|
+ fmt.Printf("ID:%d\n", erv.Id)
|
|
|
+ fmt.Printf("TOKEN:%s\n", erv.Token)
|
|
|
|
|
|
- err = tx.Get(erv, sqlStr, erv.Id, erv.Token)
|
|
|
+ err = tx.Get(erv, sqlStr, erv.Id, erv.Token, time.Now())
|
|
|
if err != nil {
|
|
|
if err == sql.ErrNoRows {
|
|
|
return result.DATA_NOT_FOUND.SetMsg("该场考试已过期")
|
|
@@ -237,6 +241,9 @@ and er.update_at - er.create_at <= e.duration
|
|
|
return result.UNKNOW_ERROR.SetMsg("不存在该试题")
|
|
|
}
|
|
|
|
|
|
+ fmt.Printf("answerId:%d\n", &answerVo.Id)
|
|
|
+ fmt.Printf("owner:%s\n", answerVo.OwnAnswer)
|
|
|
+
|
|
|
var score int
|
|
|
sqlStr = "select count(id) from subject where id=? and answer=?"
|
|
|
err = tx.Get(&score, sqlStr, answerVo.Id, utils.SubjectSort(answerVo.OwnAnswer))
|
|
@@ -254,9 +261,10 @@ and er.update_at - er.create_at <= e.duration
|
|
|
anwserData, err = json.Marshal(erv.AnswerVo)
|
|
|
|
|
|
// 插入记录表
|
|
|
- sqlStr = "update exam_record set score=?,answer=?,update_at=? where id=? and delete_at is null "
|
|
|
+ sqlStr = "update exam_record set score=?,answer=?,update_at=? where id=? and delete_at is null "
|
|
|
|
|
|
res, err = tx.Exec(sqlStr, toatalScore, string(anwserData), time.Now(), erv.Id)
|
|
|
+
|
|
|
if err != nil {
|
|
|
return result.UNKNOW_ERROR.SetData(err)
|
|
|
}
|
|
@@ -498,6 +506,7 @@ func UpdateExamRecordTask(examId int) *result.Result {
|
|
|
return utils.Transation(tx, err, func(tx *sqlx.Tx) *result.Result {
|
|
|
var ervs []*vo.ExamRecordVo
|
|
|
// 1、查询是否存在该记录
|
|
|
+ // 考试已结束
|
|
|
sqlStr := `select er.id, er.exam_id
|
|
|
from exam_record er
|
|
|
left join exam e on e.id = er.exam_id
|
|
@@ -552,16 +561,40 @@ where e.id = ? and e.end_at < ?
|
|
|
subIds = append(subIds, subIdsVo...)
|
|
|
}
|
|
|
|
|
|
+ // 2.1 构造一个key为id的 map
|
|
|
+ subIdMap := make(map[int]int, 0)
|
|
|
+ for _, subId := range subIds {
|
|
|
+ subIdMap[*subId.Id] = *subId.Score
|
|
|
+ }
|
|
|
+
|
|
|
// 2、 批量查询id
|
|
|
toatalScore := 0
|
|
|
- avos := make([]*vo.AnswerVo, 0, len(subIds))
|
|
|
- for _, subId := range subIds {
|
|
|
- avo := vo.AnswerVo{Id: subId.Id, OwnAnswer: "-1"}
|
|
|
- avos = append(avos, &avo)
|
|
|
+ for _, answerVo := range erv.AnswerVo {
|
|
|
+ // 判断提交的试题是否在考试范围内
|
|
|
+ // if _, ok := subIdMap[*answerVo.Id]; !ok {
|
|
|
+ // return result.UNKNOW_ERROR.SetMsg("不存在该试题")
|
|
|
+ // }
|
|
|
+
|
|
|
+ var score int
|
|
|
+ sqlStr = "select count(id) from subject where id=? and answer=?"
|
|
|
+ err = tx.Get(&score, sqlStr, answerVo.Id, utils.SubjectSort(answerVo.OwnAnswer))
|
|
|
+ if err != nil {
|
|
|
+ return result.UNKNOW_ERROR.SetMsg(err.Error())
|
|
|
+ }
|
|
|
+ toatalScore += score * subIdMap[*answerVo.Id]
|
|
|
+
|
|
|
+ fmt.Println("=========TASK==========================")
|
|
|
+ fmt.Println(toatalScore)
|
|
|
+ delete(subIdMap, *answerVo.Id)
|
|
|
}
|
|
|
+ // if len(subIdMap) != 0 {
|
|
|
+ // return result.UNKNOW_ERROR.SetMsg("试题提交不完整")
|
|
|
+ // }
|
|
|
|
|
|
var anwserData []byte
|
|
|
- anwserData, err = json.Marshal(avos)
|
|
|
+ anwserData, err = json.Marshal(erv.AnswerVo)
|
|
|
+ fmt.Println("=========TASK-ANSER==========================")
|
|
|
+ fmt.Println(string(anwserData))
|
|
|
|
|
|
// 插入记录表
|
|
|
_, err = updateErScore.Exec(toatalScore, string(anwserData), time.Now(), erv.Id)
|