|
@@ -1021,8 +1021,9 @@ func (this *BaseFromUsdaFasController) ExportUsdaFasList() {
|
|
|
|
|
|
classifyId, _ := this.GetInt("ClassifyId")
|
|
|
indexCode := this.GetString("IndexCode")
|
|
|
- if classifyId < 0 {
|
|
|
- br.Msg = "请选择分类"
|
|
|
+
|
|
|
+ if classifyId <= 0 && indexCode == "" {
|
|
|
+ br.Msg = "请选择分类或者指标"
|
|
|
return
|
|
|
}
|
|
|
dir, _ := os.Executable()
|
|
@@ -1061,9 +1062,6 @@ func (this *BaseFromUsdaFasController) ExportUsdaFasList() {
|
|
|
condition += ` AND classify_id=?`
|
|
|
pars = append(pars, classifyId)
|
|
|
}
|
|
|
- } else {
|
|
|
- condition += ` AND classify_id=?`
|
|
|
- pars = append(pars, classifyId)
|
|
|
}
|
|
|
if indexCode != "" {
|
|
|
condition += ` AND index_code=? `
|
|
@@ -1238,8 +1236,10 @@ func (this *BaseFromUsdaFasController) ExportUsdaFasList() {
|
|
|
fileName := classifyName
|
|
|
if indexCode != "" && len(indexList) == 1 {
|
|
|
fileName = indexList[0].IndexName
|
|
|
+ fileName = strings.Replace(fileName, ": ", "_", -1)
|
|
|
}
|
|
|
fileName += time.Now().Format("06.01.02") + `.xlsx` //文件名称
|
|
|
+ //fmt.Println(fileName)
|
|
|
this.Ctx.Output.Download(downLoadnFilePath, fileName)
|
|
|
defer func() {
|
|
|
os.Remove(downLoadnFilePath)
|