|
@@ -207,6 +207,12 @@ func (this *ChartController) ChartInfoDetail() {
|
|
chartInfo.ChartSource = strings.Join(sourceNameList, ",")
|
|
chartInfo.ChartSource = strings.Join(sourceNameList, ",")
|
|
chartInfo.ChartSourceEn = strings.Join(sourceNameEnList, ",")
|
|
chartInfo.ChartSourceEn = strings.Join(sourceNameEnList, ",")
|
|
|
|
|
|
|
|
+ // 单位
|
|
|
|
+ if chartType == utils.CHART_TYPE_BAR && len(yDataList) > 0 {
|
|
|
|
+ chartInfo.Unit = yDataList[0].Unit
|
|
|
|
+ chartInfo.UnitEn = yDataList[0].UnitEn
|
|
|
|
+ }
|
|
|
|
+
|
|
resp.ChartInfo = chartInfo
|
|
resp.ChartInfo = chartInfo
|
|
resp.EdbInfoList = edbList
|
|
resp.EdbInfoList = edbList
|
|
resp.XEdbIdValue = xEdbIdValue
|
|
resp.XEdbIdValue = xEdbIdValue
|
|
@@ -480,6 +486,12 @@ func GetChartInfoDetailFromUniqueCode(chartInfo *models.ChartInfo, key string) (
|
|
chartInfo.ChartSource = strings.Join(sourceNameList, ",")
|
|
chartInfo.ChartSource = strings.Join(sourceNameList, ",")
|
|
chartInfo.ChartSourceEn = strings.Join(sourceNameEnList, ",")
|
|
chartInfo.ChartSourceEn = strings.Join(sourceNameEnList, ",")
|
|
|
|
|
|
|
|
+ // 单位
|
|
|
|
+ if chartType == utils.CHART_TYPE_BAR && len(yDataList) > 0 {
|
|
|
|
+ chartInfo.Unit = yDataList[0].Unit
|
|
|
|
+ chartInfo.UnitEn = yDataList[0].UnitEn
|
|
|
|
+ }
|
|
|
|
+
|
|
resp.ChartInfo = chartInfo
|
|
resp.ChartInfo = chartInfo
|
|
resp.EdbInfoList = edbList
|
|
resp.EdbInfoList = edbList
|
|
resp.XEdbIdValue = xEdbIdValue
|
|
resp.XEdbIdValue = xEdbIdValue
|