Browse Source

Merge branch 'aj_business_trip' into debug

tuoling805 2 years ago
parent
commit
1466d08c71
2 changed files with 5 additions and 4 deletions
  1. 4 3
      models/business_apply.go
  2. 1 1
      services/task.go

+ 4 - 3
models/business_apply.go

@@ -10,9 +10,10 @@ func BusinessTripApplyStatusOutTime(returnDate string) (err error) {
 	}
 	defer func() {
 		if err != nil {
-			tx.Commit()
-		} else {
 			tx.Rollback()
+		} else {
+
+			tx.Commit()
 		}
 	}()
 	//客户产品状态变更
@@ -24,7 +25,7 @@ func BusinessTripApplyStatusOutTime(returnDate string) (err error) {
 
 	// 将历史的任务给标记删除掉
 	sql = `UPDATE business_apply_peer SET status='已过期',modify_time=NOW() WHERE status='待审批' AND return_date < ? `
-	_, err = o.Raw(sql, returnDate).Exec()
+	_, err = tx.Raw(sql, returnDate).Exec()
 	if err != nil {
 		return
 	}

+ 1 - 1
services/task.go

@@ -143,7 +143,7 @@ func Task() {
 //func Task() {
 //	fmt.Println("start")
 //	cont := new(context.Context)
-//	roadshow.SetPublicMeetingUnionCode(*cont)
+//	CheckBusinessTripApply(*cont)
 //	fmt.Println("end")
 //}