修复数值通用格式格式化错误

This commit is contained in:
chen.s.g
2018-06-11 14:02:42 +08:00
parent 58e631a6ed
commit d591299625
2 changed files with 7 additions and 2 deletions

View File

@@ -121,13 +121,14 @@ func (f *Format) Prepare() {
}
if TYPE_NUMERIC == f.vType || TYPE_CURRENCY == f.vType || TYPE_PERCENTAGE == f.vType {
var t []string
if t = strings.SplitN(f.Raw[0], ".", 2); 2 == len(t) {
if t := strings.SplitN(f.Raw[0], ".", 2); 2 == len(t) {
f.bts = strings.Count(t[1], "")
if f.bts > 0 {
f.bts = f.bts - 1
}
} else if t := strings.Index(f.Raw[0], "General"); t > 0 {
f.bts = -1
}
}
}