dtable-statistic 5.0.29-alpha.1 → 5.0.29-alpha.2
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 +5 -0
- package/package.json +1 -1
package/es/stat-list/index.js
CHANGED
|
@@ -101,6 +101,7 @@ class StatList extends _react.Component {
|
|
|
101
101
|
};
|
|
102
102
|
this.updateChart2Table = (selectedTableId, chartUpdate2Table) => {
|
|
103
103
|
var _chartUpdate2Table$co;
|
|
104
|
+
console.log('updateChart2Table', selectedTableId, chartUpdate2Table);
|
|
104
105
|
const {
|
|
105
106
|
getTableById
|
|
106
107
|
} = this.props;
|
|
@@ -111,6 +112,8 @@ class StatList extends _react.Component {
|
|
|
111
112
|
return;
|
|
112
113
|
}
|
|
113
114
|
const updateTable = getTableById(selectedTableId);
|
|
115
|
+
console.log('this.statisticalResult4Update', this.statisticalResult4Update);
|
|
116
|
+
console.log('updateTable', updateTable);
|
|
114
117
|
this.closeSelectTableDialog();
|
|
115
118
|
if (!this.statisticalResult4Update || !updateTable) {
|
|
116
119
|
return;
|
|
@@ -124,7 +127,9 @@ class StatList extends _react.Component {
|
|
|
124
127
|
updateTable,
|
|
125
128
|
statisticalResult: this.statisticalResult4Update
|
|
126
129
|
});
|
|
130
|
+
console.log('newRows, updatedRows, rowIds, oldRows', newRows, updatedRows, rowIds, oldRows);
|
|
127
131
|
if (window.app && window.app.onUpdateStatisticToTable) {
|
|
132
|
+
console.log(111);
|
|
128
133
|
window.app.onUpdateStatisticToTable({
|
|
129
134
|
tableId: selectedTableId,
|
|
130
135
|
newRows,
|