dtable-statistic 5.0.43-alpha.0 → 5.0.43-alpha.1
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.
|
@@ -48,6 +48,7 @@ const exportOneDimensionToTable = _ref => {
|
|
|
48
48
|
let {
|
|
49
49
|
statisticalResult
|
|
50
50
|
} = _ref;
|
|
51
|
+
console.log('exportOneDimensionToTable', statisticalResult);
|
|
51
52
|
const {
|
|
52
53
|
pivotResult,
|
|
53
54
|
groupbyColumn,
|
|
@@ -72,11 +73,13 @@ const exportOneDimensionToTable = _ref => {
|
|
|
72
73
|
|
|
73
74
|
// one dimension table no number columns
|
|
74
75
|
if (pivot_columns.length < 2) {
|
|
76
|
+
console.log('-2');
|
|
75
77
|
let columnData = {
|
|
76
78
|
format: 'number'
|
|
77
79
|
};
|
|
78
80
|
let _isDateSummaryColumn = false;
|
|
79
81
|
let isIncludeHour = false;
|
|
82
|
+
console.log('summaryColumn', summaryColumn);
|
|
80
83
|
if (summaryColumn) {
|
|
81
84
|
if (isSummaryDateColumn(summaryColumn)) {
|
|
82
85
|
const {
|