|
@@ -184,8 +184,41 @@ func IndexRefreshAll() {
|
|
if len(list) <= 0 {
|
|
if len(list) <= 0 {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
+ now := time.Now()
|
|
for _, v := range list {
|
|
for _, v := range list {
|
|
time.Sleep(1 * time.Second)
|
|
time.Sleep(1 * time.Second)
|
|
|
|
+ if v.Frequency == "年度" && int(now.Month()) > 3 {
|
|
|
|
+ continue
|
|
|
|
+ }
|
|
|
|
+ if v.Frequency == "季度" {
|
|
|
|
+ continue
|
|
|
|
+ }
|
|
|
|
+ MysteelChemicalRefresh(v.MergeFilePath)
|
|
|
|
+ }
|
|
|
|
+ return
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func IndexRefreshMethanol() {
|
|
|
|
+ fmt.Println("IndexRefreshMethanol")
|
|
|
|
+ indexObj := new(index.BaseFromMysteelChemicalIndex)
|
|
|
|
+ list, err := indexObj.GetIndexRefreshMethanolByMergeFile()
|
|
|
|
+ if err != nil {
|
|
|
|
+ fmt.Println("GetIndexRefreshAll Err:" + err.Error())
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ fmt.Println("listLen:", len(list))
|
|
|
|
+ if len(list) <= 0 {
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ now := time.Now()
|
|
|
|
+ for _, v := range list {
|
|
|
|
+ time.Sleep(1 * time.Second)
|
|
|
|
+ if v.Frequency == "年度" && int(now.Month()) > 3 {
|
|
|
|
+ continue
|
|
|
|
+ }
|
|
|
|
+ if v.Frequency == "季度" {
|
|
|
|
+ continue
|
|
|
|
+ }
|
|
MysteelChemicalRefresh(v.MergeFilePath)
|
|
MysteelChemicalRefresh(v.MergeFilePath)
|
|
}
|
|
}
|
|
return
|
|
return
|