|
@@ -20,7 +20,7 @@ type HandleSciExcelDataReq struct {
|
|
|
}
|
|
|
|
|
|
// HandleExcelDataByEdbLib 调用指标库公共服务处理该数据
|
|
|
-func HandleExcelDataByEdbLib(dataMap map[string]map[string]string, indexNameList, thirdIndexIdList, frequencyList, unitList []string) {
|
|
|
+func HandleExcelDataByEdbLib(dataMap map[string]map[string]string, indexNameList, thirdIndexIdList, frequencyList, unitList []string, filePath string) {
|
|
|
param := make(map[string]interface{})
|
|
|
param["DataMap"] = dataMap
|
|
|
param["IndexNameList"] = indexNameList
|
|
@@ -28,6 +28,7 @@ func HandleExcelDataByEdbLib(dataMap map[string]map[string]string, indexNameList
|
|
|
param["FrequencyList"] = frequencyList
|
|
|
param["UnitList"] = unitList
|
|
|
param["TerminalCode"] = global.CONFIG.Serve.TerminalCode
|
|
|
+ param["FilePath"] = filePath
|
|
|
|
|
|
// 指标处理的路由地址
|
|
|
urlStr := "sci/handle/excel_data"
|