Browse Source

Merge branch 'pdf_fix' into debug

zwxi 10 months ago
parent
commit
d09f0d59a4
2 changed files with 2 additions and 2 deletions
  1. 1 1
      models/smart_report/smart_report.go
  2. 1 1
      services/smart_report.go

+ 1 - 1
models/smart_report/smart_report.go

@@ -423,7 +423,7 @@ func UpdateSmartReportsStateBySecondIds(oldState, newState int, secondIds []int)
 // UpdatePdfUrlSmartReportById 清空pdf相关字段
 func UpdatePdfUrlSmartReportById(reportId int) (err error) {
 	o := orm.NewOrmUsingDB("rddp")
-	sql := `UPDATE smaet_report SET detail_img_url = '',detail_pdf_url='',modify_time=NOW() WHERE id = ? `
+	sql := `UPDATE smart_report SET detail_img_url = '',detail_pdf_url='',modify_time=NOW() WHERE id = ? `
 	_, err = o.Raw(sql, reportId).Exec()
 	return
 }

+ 1 - 1
services/smart_report.go

@@ -232,7 +232,7 @@ async def main():
         
 		# 在这里添加两秒的等待
 		await asyncio.sleep(2)
-
+		
         # 截取全页面的屏幕截图
         await page.screenshot({
             'path': "%s",