|
@@ -86,7 +86,7 @@ func GetChartEdbMappingListByEdbInfoIdList(edbIdList []int) (list []*ChartEdbInf
|
|
|
sql := ` SELECT a.edb_info_id,a.source_name,a.source,a.sub_source,a.edb_code,a.edb_name,a.edb_name_en,a.frequency,a.unit,
|
|
|
a.unit_en,a.start_date,a.end_date,a.modify_time,a.latest_date,a.latest_value,a.unique_code,a.edb_info_type AS edb_info_category_type,a.max_value,min_value,a.edb_type,
|
|
|
b.is_convert, b.convert_type, b.convert_value, b.convert_unit, b.convert_en_unit
|
|
|
- FROM edb_info as a left join chart_edb_mapping as b
|
|
|
+ FROM edb_info as a left join chart_edb_mapping as b on a.edb_info_id=b.edb_info_id
|
|
|
WHERE a.edb_info_id IN(` + utils.GetOrmInReplace(num) + `)
|
|
|
ORDER BY FIELD(a.edb_info_id,` + utils.GetOrmInReplace(num) + `)
|
|
|
`
|