Commit 2952fe4a authored by Sergey.Konovalov's avatar Sergey.Konovalov Committed by Alexander.Trofimov

Bug 21540 - Формат даты отображается некорректно

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@50914 954022d7-b5bf-4e40-9824-e11837661b57
parent 4cab1944
...@@ -4196,7 +4196,13 @@ function Binary_StylesTableReader(stream, wb, aCellXfs, Dxfs) ...@@ -4196,7 +4196,13 @@ function Binary_StylesTableReader(stream, wb, aCellXfs, Dxfs)
{ {
//В спецификации нет стилей для чисел 5-8, экспериментально установлено, что это денежный формат, зависящий от локали. //В спецификации нет стилей для чисел 5-8, экспериментально установлено, что это денежный формат, зависящий от локали.
//Устанавливаем как в Engilsh(US) //Устанавливаем как в Engilsh(US)
sFormat = "$#,##0.00_);[Red]($#,##0.00)"; switch(oNum.id)
{
case 5: sFormat = "$#,##0_);($#,##0)";break;
case 6: sFormat = "$#,##0_);[Red]($#,##0)";break;
case 7: sFormat = "$#,##0.00_);($#,##0.00)";break;
case 8: sFormat = "$#,##0.00_);[Red]($#,##0.00)";break;
}
} }
else else
{ {
......
...@@ -1369,7 +1369,7 @@ $(function(){ ...@@ -1369,7 +1369,7 @@ $(function(){
aStandartNumFormats[19] = "h:mm:ss AM/PM"; aStandartNumFormats[19] = "h:mm:ss AM/PM";
aStandartNumFormats[20] = "h:mm"; aStandartNumFormats[20] = "h:mm";
aStandartNumFormats[21] = "h:mm:ss"; aStandartNumFormats[21] = "h:mm:ss";
aStandartNumFormats[22] = "m/d/yy h:mm"; aStandartNumFormats[22] = "m/d/yyyy h:mm";
aStandartNumFormats[37] = "#,##0_);(#,##0)"; aStandartNumFormats[37] = "#,##0_);(#,##0)";
aStandartNumFormats[38] = "#,##0_);[Red](#,##0)"; aStandartNumFormats[38] = "#,##0_);[Red](#,##0)";
aStandartNumFormats[39] = "#,##0.00_);(#,##0.00)"; aStandartNumFormats[39] = "#,##0.00_);(#,##0.00)";
......
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