diff --git a/static/modules/overview_finance.js b/static/modules/overview_finance.js
index b7b24cb..6aa83e2 100644
--- a/static/modules/overview_finance.js
+++ b/static/modules/overview_finance.js
@@ -60,7 +60,7 @@ function renderFinanceProjectMatrixData(data, container) {
var th = '
| 指标 | 月度合计 | ';
for (var ti = 0; ti < tenants.length; ti++) { th += '' + sn[ti] + ' | '; }
th += '
';
- if (isAllZero(data, tenants, keys, mi)) continue;
+ if (isAllZero(data, tenants, keys.filter(function(k) { return k !== 'sign'; }), mi)) continue;
var th = '| 指标 | 月度合计 | ';
for (var ti = 0; ti < tenants.length; ti++) { th += '' + sn[ti] + ' | '; }
th += '
';
diff --git a/static/modules/overview_plan.js b/static/modules/overview_plan.js
index 91ffb18..87957b0 100644
--- a/static/modules/overview_plan.js
+++ b/static/modules/overview_plan.js
@@ -49,7 +49,7 @@ function renderProjectMatrixData(data, container) {
for (var ti = 0; ti < tenants.length; ti++) { th += '' + sn[ti] + ' | '; }
th += '';
- if (isAllZero(data, tenants, keys, mi)) continue;
+ if (isAllZero(data, tenants, keys.filter(function(k) { return k !== 'sign'; }), mi)) continue;
var th = '| 指标 | 月度合计 | ';
for (var ti = 0; ti < tenants.length; ti++) { th += '' + sn[ti] + ' | '; }
th += '
';
diff --git a/templates/index.html b/templates/index.html
index 95d0a3f..1dd2618 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -84,7 +84,7 @@
-
OPC Manager v1.2.0.27
+
OPC Manager v1.2.0.28