Commit 093e2ab0 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Правка бага http://bugzserver/show_bug.cgi?id=26271

Для времени математическую информацию нужно отдавать в виде '[h]:mm:ss'

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@58262 954022d7-b5bf-4e40-9824-e11837661b57
parent f1079b9e
......@@ -6336,6 +6336,10 @@
if (1 < oSelectionMathInfo.countNumbers) {
// Мы должны отдавать в формате активной ячейки
var numFormat = range.getNumFormat();
if (c_oAscNumFormatType.Time === numFormat.getType()) {
// Для времени нужно отдавать в формате [h]:mm:ss (http://bugzserver/show_bug.cgi?id=26271)
numFormat = oNumFormatCache.get('[h]:mm:ss');
}
oSelectionMathInfo.sum = numFormat.formatToMathInfo(sum, CellValueType.Number, this.settings.mathMaxDigCount);
oSelectionMathInfo.average = numFormat.formatToMathInfo(sum / oSelectionMathInfo.countNumbers,
......
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