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

add asc_getSubtotal method

parent 16bc6020
......@@ -6452,6 +6452,9 @@ CT_DataField.prototype.asc_getName = function () {
CT_DataField.prototype.asc_getIndex = function () {
return this.fld;
};
CT_DataField.prototype.asc_getSubtotal = function () {
return null !== this.subtotal ? this.subtotal : st_dataconsolidatefunctionSUM;
};
function CT_Format() {
//Attributes
this.action = null;//formatting
......@@ -9686,9 +9689,10 @@ prot = CT_Field.prototype;
prot["asc_getIndex"] = prot.asc_getIndex;
prot = CT_PageField.prototype;
prot["asc_getIndex"] = prot.asc_getIndex;
prot["asc_getName"] = prot.asc_getName;
prot["asc_getIndex"] = prot.asc_getIndex;
prot = CT_DataField.prototype;
prot["asc_getIndex"] = prot.asc_getIndex;
prot["asc_getName"] = prot.asc_getName;
prot["asc_getIndex"] = prot.asc_getIndex;
prot["asc_getSubtotal"] = prot.asc_getSubtotal;
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