|
@@ -257,6 +257,14 @@ func WatchIndexFile(filePath string) {
|
|
|
indexObj.EndDate, _ = time.ParseInLocation(utils.FormatDate, endDate, time.Local)
|
|
|
indexObj.Frequency = frequency
|
|
|
indexObj.FilePath = newFilePath
|
|
|
+ indexObj.UpdateDate = updateDate
|
|
|
+ if updateDate != "" {
|
|
|
+ updateDateT, err := time.Parse(utils.FormatDate, updateDate)
|
|
|
+ if err == nil {
|
|
|
+ week := utils.GetWeekZn(updateDateT.Weekday().String())
|
|
|
+ indexObj.MergeUpdateWeek = week
|
|
|
+ }
|
|
|
+ }
|
|
|
err = indexObj.Add(runMode)
|
|
|
if err != nil {
|
|
|
fmt.Println("add err:" + err.Error())
|
|
@@ -274,6 +282,14 @@ func WatchIndexFile(filePath string) {
|
|
|
indexObj.Frequency = frequency
|
|
|
indexObj.FilePath = newFilePath
|
|
|
indexObj.ModifyTime = time.Now()
|
|
|
+ if updateDate != "" {
|
|
|
+ updateDateT, err := time.Parse(utils.FormatDate, updateDate)
|
|
|
+ if err == nil {
|
|
|
+ week := utils.GetWeekZn(updateDateT.Weekday().String())
|
|
|
+ indexObj.MergeUpdateWeek = week
|
|
|
+ }
|
|
|
+ indexObj.UpdateDate = updateDate
|
|
|
+ }
|
|
|
indexId = item.BaseFromMysteelChemicalIndexId
|
|
|
//修改数据
|
|
|
updateColsArr := make([]string, 0)
|
|
@@ -287,6 +303,8 @@ func WatchIndexFile(filePath string) {
|
|
|
updateColsArr = append(updateColsArr, "end_date")
|
|
|
updateColsArr = append(updateColsArr, "modify_time")
|
|
|
updateColsArr = append(updateColsArr, "file_path")
|
|
|
+ updateColsArr = append(updateColsArr, "update_date")
|
|
|
+ updateColsArr = append(updateColsArr, "merge_update_week")
|
|
|
|
|
|
indexObj.Update(runMode, updateColsArr)
|
|
|
|