Commit bd9733a7 authored by Alexander.Trofimov's avatar Alexander.Trofimov

fix asc_getSubtotals method

parent e414b996
......@@ -6528,7 +6528,7 @@ CT_PivotField.prototype.asc_getSubtotalTop = function () {
};
CT_PivotField.prototype.asc_getSubtotals = function () {
var res = null;
if (this.defaultSubtotal) {
if (null === this.defaultSubtotal || this.defaultSubtotal) {
res = [];
if (this.sumSubtotal) {
res.push(c_oAscItemType.Sum);
......
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