|
@@ -107,6 +107,8 @@ func OilchemIndexCodeGenerator(indexName, indexCodeStr, marketSampleName string)
|
|
a.Fallback = func(r rune, a pinyin.Args) []string {
|
|
a.Fallback = func(r rune, a pinyin.Args) []string {
|
|
return []string{string(r)}
|
|
return []string{string(r)}
|
|
}
|
|
}
|
|
|
|
+ indexCodeStr = strings.Replace(indexCodeStr, "(", "", -1)
|
|
|
|
+ indexCodeStr = strings.Replace(indexCodeStr, ")", "", -1)
|
|
rows := pinyin.Pinyin(indexCodeStr, a)
|
|
rows := pinyin.Pinyin(indexCodeStr, a)
|
|
for i := 0; i < len(rows); i++ {
|
|
for i := 0; i < len(rows); i++ {
|
|
//strResult += rows[i][0]
|
|
//strResult += rows[i][0]
|
|
@@ -143,7 +145,9 @@ func OilchemIndexCodeGenerator(indexName, indexCodeStr, marketSampleName string)
|
|
strResult = strings.Replace(strResult, "(", "", -1)
|
|
strResult = strings.Replace(strResult, "(", "", -1)
|
|
strResult = strings.Replace(strResult, ")", "", -1)
|
|
strResult = strings.Replace(strResult, ")", "", -1)
|
|
|
|
|
|
|
|
+
|
|
needAdd = true
|
|
needAdd = true
|
|
|
|
+ strResult = "lzzxw" + strResult
|
|
indexCode = strings.Replace(strResult, " ", "", -1)
|
|
indexCode = strings.Replace(strResult, " ", "", -1)
|
|
IndexCodeMap[indexName] = indexCode
|
|
IndexCodeMap[indexName] = indexCode
|
|
}
|
|
}
|