ziwen 3 lat temu
rodzic
commit
2935ade9b4
2 zmienionych plików z 22 dodań i 22 usunięć
  1. 15 15
      services/commodity_coal_inland.go
  2. 7 7
      services/task.go

+ 15 - 15
services/commodity_coal_inland.go

@@ -18,21 +18,21 @@ func FileCoalInland() () {
 			go utils.SendEmail(utils.APPNAME+"【"+utils.RunMode+"】"+"失败提醒", "RefreshDataFromCoalInland ErrMsg:"+err.Error(), utils.EmailSendToUsers)
 		}
 	}()
-	path := "static/file/内陆17省动力煤终端用户供耗存20220408.xlsx"
-	//path := "/home/code/python/coal_mail/emailFile/内陆17省动力煤终端用户供耗存%s.xlsx"
-	//for i := 0;i < 7;i++{
-	//	npath := fmt.Sprintf(path,time.Now().AddDate(0,0,-i).Format(utils.FormatDateUnSpace))
-	//	fmt.Println(npath)
-	//	exist,err := PathExists(npath)
-	//	if err != nil {
-	//		fmt.Println(err)
-	//		return
-	//	}
-	//	if exist{
-	//		path = npath
-	//		break
-	//	}
-	//}
+	//path := "static/file/内陆17省动力煤终端用户供耗存20220408.xlsx"
+	path := "/home/code/python/coal_mail/emailFile/内陆17省动力煤终端用户供耗存%s.xlsx"
+	for i := 0;i < 7;i++{
+		npath := fmt.Sprintf(path,time.Now().AddDate(0,0,-i).Format(utils.FormatDateUnSpace))
+		fmt.Println(npath)
+		exist,err := PathExists(npath)
+		if err != nil {
+			fmt.Println(err)
+			return
+		}
+		if exist{
+			path = npath
+			break
+		}
+	}
 	xlFile, err := xlsx.OpenFile(path)
 	if err != nil {
 		fmt.Println(err)

+ 7 - 7
services/task.go

@@ -8,17 +8,17 @@ import (
 
 func Task() {
 	fmt.Println("start crawler")
-	//refreshData := task.NewTask("refreshData", "0 0,30 16-20 * * *", RefreshData)
-	//refreshEic := task.NewTask("refreshData", "0 0 1,6 * * *", RefreshEic)
-	//refreshCoal := task.NewTask("refreshData", "0 0 18-23 * * *", RefreshCoal)
-	//task.AddTask("数据爬取", refreshData)
-	//task.AddTask("欧洲天然气爬取", refreshEic)
-	//task.AddTask("中国煤炭网爬取", refreshCoal)
+	refreshData := task.NewTask("refreshData", "0 0,30 16-20 * * *", RefreshData)
+	refreshEic := task.NewTask("refreshData", "0 0 1,6 * * *", RefreshEic)
+	refreshCoal := task.NewTask("refreshData", "0 0 18-23 * * *", RefreshCoal)
+	task.AddTask("数据爬取", refreshData)
+	task.AddTask("欧洲天然气爬取", refreshEic)
+	task.AddTask("中国煤炭网爬取", refreshCoal)
 	task.StartTask()
 	//FileCoalJsm()
 	//FileCoalFirm()
 	//FileCoalCoastal()
-	FileCoalInland()
+	//FileCoalInland()
 	fmt.Println("end crawler")
 }