dtable-statistic 5.0.29-alpha.2 → 5.0.29-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/es/stat-list/index.js
CHANGED
|
@@ -129,7 +129,6 @@ class StatList extends _react.Component {
|
|
|
129
129
|
});
|
|
130
130
|
console.log('newRows, updatedRows, rowIds, oldRows', newRows, updatedRows, rowIds, oldRows);
|
|
131
131
|
if (window.app && window.app.onUpdateStatisticToTable) {
|
|
132
|
-
console.log(111);
|
|
133
132
|
window.app.onUpdateStatisticToTable({
|
|
134
133
|
tableId: selectedTableId,
|
|
135
134
|
newRows,
|
|
@@ -881,17 +881,19 @@ const updateStatisticToTable = _ref9 => {
|
|
|
881
881
|
// two dimension table
|
|
882
882
|
if (columnGroupbyColumn) {
|
|
883
883
|
if (Array.isArray(pivot_summary_multiple_columns) && pivot_summary_multiple_columns.length > 0) {
|
|
884
|
+
console.log(111);
|
|
884
885
|
return updateTwoDimensionWithSummaryColumnsToTable({
|
|
885
886
|
updateTable,
|
|
886
887
|
statisticalResult
|
|
887
888
|
});
|
|
888
889
|
}
|
|
890
|
+
console.log(222);
|
|
889
891
|
return updateTwoDimensionToTable({
|
|
890
892
|
updateTable,
|
|
891
893
|
statisticalResult
|
|
892
894
|
});
|
|
893
895
|
}
|
|
894
|
-
|
|
896
|
+
console.log(333);
|
|
895
897
|
// one dimension table
|
|
896
898
|
return updatedOneDimensionToTable({
|
|
897
899
|
updateTable,
|