|
@@ -373,13 +373,8 @@ func (this *BaseFromLyIndexController) LyIndexDataExport() {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
- endDate := this.GetString("EndDate")*/
|
|
|
-
|
|
|
classifyId, _ := this.GetInt("ClassifyId")
|
|
|
-
|
|
|
- indexCode := this.GetString("IndexCode")
|
|
|
+ indexCode := this.GetString("IndexCode")
|
|
|
|
|
|
if classifyId <= 0 {
|
|
|
br.Msg = "请选择分类"
|
|
@@ -401,13 +396,8 @@ func (this *BaseFromLyIndexController) LyIndexDataExport() {
|
|
|
dir, _ := os.Executable()
|
|
|
exPath := filepath.Dir(dir)
|
|
|
|
|
|
- downLoadnFilePath := exPath + "/" + time.Now().Format(utils.FormatDateTimeUnSpace) + ".xlsx"
|
|
|
+ downLoadFilePath := exPath + "/" + time.Now().Format(utils.FormatDateTimeUnSpace) + ".xlsx"
|
|
|
xlsxFile := xlsx.NewFile()
|
|
|
-
|
|
|
- br.Msg = "生成文件失败"
|
|
|
- br.ErrMsg = "生成文件失败"
|
|
|
- return
|
|
|
- }*/
|
|
|
frequencies, err := data_manage.GetLyIndexFrequency(classifyId)
|
|
|
if err != nil {
|
|
|
br.Msg = "查询频度失败"
|
|
@@ -416,6 +406,13 @@ func (this *BaseFromLyIndexController) LyIndexDataExport() {
|
|
|
}
|
|
|
|
|
|
fileName := `粮油商务网`
|
|
|
+ if classifyId >= 0 && indexCode == "" {
|
|
|
+ lyClassify, err := data_manage.GetLyClassifyById(classifyId)
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ fileName = lyClassify.ClassifyName
|
|
|
+ }
|
|
|
if frequencies == nil {
|
|
|
sheet, err := xlsxFile.AddSheet("无数据")
|
|
|
if err != nil {
|
|
@@ -429,13 +426,12 @@ func (this *BaseFromLyIndexController) LyIndexDataExport() {
|
|
|
}
|
|
|
|
|
|
for _, frequency := range frequencies {
|
|
|
-
|
|
|
- lyIndices, err := data_manage.GetLyIndexByCodeAndClassify(indexCode, classifyId)
|
|
|
+ lyIndices, err := data_manage.GetLyIndexByCodeAndClassify(indexCode, classifyId, frequency)
|
|
|
if err != nil {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- if indexCode == "" {
|
|
|
+ if indexCode != "" {
|
|
|
fileName = lyIndices[0].IndexName
|
|
|
}
|
|
|
|
|
@@ -460,7 +456,6 @@ func (this *BaseFromLyIndexController) LyIndexDataExport() {
|
|
|
rowUnit := sheet.AddRow()
|
|
|
celUnit := rowUnit.AddCell()
|
|
|
celUnit.SetValue("单位")
|
|
|
-
|
|
|
rowModifyDate := sheet.AddRow()
|
|
|
rowModifyCell := rowModifyDate.AddCell()
|
|
|
rowModifyCell.SetValue("更新时间")
|
|
@@ -480,14 +475,8 @@ func (this *BaseFromLyIndexController) LyIndexDataExport() {
|
|
|
|
|
|
var lyDataList []*data_manage.BaseFromLyData
|
|
|
lyDataList, err = data_manage.GetBaseFromLyDataByIndexCode(v.IndexCode)
|
|
|
- if err != nil {
|
|
|
- br.Msg = "获取数据失败"
|
|
|
- br.ErrMsg = "获取数据失败,Err:" + err.Error()
|
|
|
- return
|
|
|
- }
|
|
|
-
|
|
|
if err != nil && err.Error() != utils.ErrNoRow() {
|
|
|
- br.ErrMsg = "GetEdbdataAllByTradeCode,Err:" + err.Error()
|
|
|
+ br.ErrMsg = "GetBaseFromLyDataByIndexCode,Err:" + err.Error()
|
|
|
br.Msg = "获取数据失败"
|
|
|
return
|
|
|
}
|
|
@@ -501,30 +490,27 @@ func (this *BaseFromLyIndexController) LyIndexDataExport() {
|
|
|
|
|
|
tradeCodeStr := strings.Join(tradeCodeList, "','")
|
|
|
tradeCodeStr = "'" + tradeCodeStr + "'"
|
|
|
- dateList, err := models.GetEdbdataList(tradeCodeStr)
|
|
|
+ dataTimeList, err := data_manage.GetLyDataListByIndexCodes(tradeCodeStr)
|
|
|
if err != nil {
|
|
|
br.Msg = "获取数据失败"
|
|
|
br.ErrMsg = "获取数据失败,Err:" + err.Error()
|
|
|
return
|
|
|
}
|
|
|
- for _, n := range dateList {
|
|
|
+ for _, dataTime := range dataTimeList {
|
|
|
rowData := sheet.AddRow()
|
|
|
celDate := rowData.AddCell()
|
|
|
- celDate.SetValue(n.Dt)
|
|
|
+ celDate.SetValue(dataTime)
|
|
|
|
|
|
for _, m := range lyIndices {
|
|
|
celData := rowData.AddCell()
|
|
|
- fmt.Println(m.IndexCode)
|
|
|
- fmt.Println(n.Dt)
|
|
|
- if dataMap[m.IndexCode][n.Dt] != nil {
|
|
|
- celData.SetValue(dataMap[m.IndexCode][n.Dt].Value)
|
|
|
+ if dataMap[m.IndexCode][dataTime] != nil {
|
|
|
+ celData.SetValue(dataMap[m.IndexCode][dataTime].Value)
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
|
|
|
- err = xlsxFile.Save(downLoadnFilePath)
|
|
|
+ err = xlsxFile.Save(downLoadFilePath)
|
|
|
if err != nil {
|
|
|
|
|
|
sheet, err := xlsxFile.AddSheet("无数据")
|
|
@@ -536,7 +522,7 @@ func (this *BaseFromLyIndexController) LyIndexDataExport() {
|
|
|
rowSecName := sheet.AddRow()
|
|
|
celSecName := rowSecName.AddCell()
|
|
|
celSecName.SetValue("")
|
|
|
- err = xlsxFile.Save(downLoadnFilePath)
|
|
|
+ err = xlsxFile.Save(downLoadFilePath)
|
|
|
if err != nil {
|
|
|
br.Msg = "保存文件失败"
|
|
|
br.ErrMsg = "保存文件失败"
|
|
@@ -545,9 +531,9 @@ func (this *BaseFromLyIndexController) LyIndexDataExport() {
|
|
|
}
|
|
|
|
|
|
fileName += time.Now().Format("06.01.02") + `.xlsx`
|
|
|
- this.Ctx.Output.Download(downLoadnFilePath, fileName)
|
|
|
+ this.Ctx.Output.Download(downLoadFilePath, fileName)
|
|
|
defer func() {
|
|
|
- os.Remove(downLoadnFilePath)
|
|
|
+ os.Remove(downLoadFilePath)
|
|
|
}()
|
|
|
br.Ret = 200
|
|
|
br.Success = true
|