|
@@ -48,6 +48,7 @@ type CCFChartAdditionRule struct {
|
|
|
Frequency string `json:"Frequency"`
|
|
|
ProdNames string `json:"prodNames"`
|
|
|
LastNYear int `json:"LastNYear"`
|
|
|
+ IndexType string `json:"IndexType"`
|
|
|
}
|
|
|
|
|
|
func LoadCCFChartAdditionRule() (rules []*CCFChartAdditionRule, err error) {
|
|
@@ -353,9 +354,15 @@ func AnalysisAdditionChartInventoryWeeklyEdb(htm []byte, rule *CCFChartAdditionR
|
|
|
date := row.Find("td:nth-child(2)").Text()
|
|
|
date = strings.TrimSpace(date)
|
|
|
|
|
|
- // 提取周均值
|
|
|
- dailyAvg := row.Find("td:nth-child(4)").Text()
|
|
|
- dailyAvg = strings.TrimSpace(dailyAvg)
|
|
|
+ // 提取周(日)均值
|
|
|
+ var dailyAvg string
|
|
|
+ if rule.IndexType == "周均" {
|
|
|
+ dailyAvg = row.Find("td:nth-child(4)").Text()
|
|
|
+ dailyAvg = strings.TrimSpace(dailyAvg)
|
|
|
+ } else {
|
|
|
+ dailyAvg = row.Find("td:nth-child(3)").Text()
|
|
|
+ dailyAvg = strings.TrimSpace(dailyAvg)
|
|
|
+ }
|
|
|
|
|
|
// 打印提取的信息
|
|
|
fmt.Printf("单位: %s\n产品名称: %s\n日期: %s\n日均值: %s\n\n", unit, indexName, date, dailyAvg)
|