Commit 28e353df authored by Sergey.Konovalov's avatar Sergey.Konovalov Committed by Alexander.Trofimov

распознавание обычных чисел вида "123.456"

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@52075 954022d7-b5bf-4e40-9824-e11837661b57
parent e9c905b5
......@@ -2556,8 +2556,9 @@ FormatParser.prototype =
else
sFormat = "#,##0" + sFracFormat + "р.;[Red]-#,##0" + sFracFormat + "р.";
}
if(null != sFormat)
res = {format: sFormat, value: dVal};
if(null == sFormat)
sFormat = "General";
res = {format: sFormat, value: dVal};
}
}
if(null == res)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment