Commit 75a521cc authored by Alexander.Trofimov's avatar Alexander.Trofimov

fix bug 33199

parent 2025fe8d
...@@ -6808,14 +6808,18 @@ ...@@ -6808,14 +6808,18 @@
}; };
WorksheetView.prototype.getSelectionMathInfo = function () { WorksheetView.prototype.getSelectionMathInfo = function () {
var ar = this.model.selectionRange.getLast();
var range = this.model.getRange3(ar.r1, ar.c1, ar.r2, ar.c2);
var tmp;
var oSelectionMathInfo = new asc_CSelectionMathInfo(); var oSelectionMathInfo = new asc_CSelectionMathInfo();
var sum = 0; var sum = 0;
var oExistCells = {};
var t = this; var t = this;
this.model.selectionRange.ranges.forEach(function (item) {
var tmp;
var range = t.model.getRange3(item.r1, item.c1, item.r2, item.c2);
range._setPropertyNoEmpty(null, null, function (cell, r) { range._setPropertyNoEmpty(null, null, function (cell, r) {
if (!cell.isEmptyTextString() && t.height_1px <= t.rows[r].height) { var idCell = cell.nCol + '-' + cell.nRow;
if (!oExistCells[idCell] && !cell.isEmptyTextString() && t.height_1px <= t.rows[r].height) {
oExistCells[idCell] = true;
++oSelectionMathInfo.count; ++oSelectionMathInfo.count;
if (CellValueType.Number === cell.getType()) { if (CellValueType.Number === cell.getType()) {
tmp = parseFloat(cell.getValueWithoutFormat()); tmp = parseFloat(cell.getValueWithoutFormat());
...@@ -6833,10 +6837,13 @@ ...@@ -6833,10 +6837,13 @@
} }
} }
}); });
});
// Показываем только данные для 2-х или более ячеек (http://bugzilla.onlyoffice.com/show_bug.cgi?id=24115) // Показываем только данные для 2-х или более ячеек (http://bugzilla.onlyoffice.com/show_bug.cgi?id=24115)
if (1 < oSelectionMathInfo.countNumbers) { if (1 < oSelectionMathInfo.countNumbers) {
// Мы должны отдавать в формате активной ячейки // Мы должны отдавать в формате активной ячейки
var numFormat = range.getNumFormat(); var numFormat = this.model.getRange3(this.model.selectionRange.row, this.model.selectionRange.cell,
this.model.selectionRange.row, this.model.selectionRange.cell).getNumFormat();
if (Asc.c_oAscNumFormatType.Time === numFormat.getType()) { if (Asc.c_oAscNumFormatType.Time === numFormat.getType()) {
// Для времени нужно отдавать в формате [h]:mm:ss (http://bugzilla.onlyoffice.com/show_bug.cgi?id=26271) // Для времени нужно отдавать в формате [h]:mm:ss (http://bugzilla.onlyoffice.com/show_bug.cgi?id=26271)
numFormat = AscCommon.oNumFormatCache.get('[h]:mm:ss'); numFormat = AscCommon.oNumFormatCache.get('[h]:mm:ss');
......
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