|
|
@@ -154,7 +154,7 @@ |
|
|
|
op.running.statisticData[item.name] = op.running.statisticData[item.name] || 0; |
|
|
|
op.running.statisticData[item.name] += (parseFloat(text || 0) - rowItem.statisticsNum); |
|
|
|
rowItem.statisticsNum = parseFloat(text || 0); |
|
|
|
$('#jfgrid_statistic_' + op.id + ' [name="' + item.name + '"]').text(op.running.statisticData[item.name]); |
|
|
|
$('#jfgrid_statistic_' + op.id + ' [name="' + item.name + '"]').text(op.running.statisticData[item.name].toFixed(2)); |
|
|
|
} |
|
|
|
|
|
|
|
$expend = null; |
|
|
@@ -174,7 +174,7 @@ |
|
|
|
op.running.statisticData[item.name] = op.running.statisticData[item.name] || 0; |
|
|
|
op.running.statisticData[item.name] += (parseFloat(text || 0) - rowItem.statisticsNum); |
|
|
|
rowItem.statisticsNum = parseFloat(text || 0); |
|
|
|
$('#jfgrid_statistic_' + op.id + ' [name="' + item.name + '"]').text(op.running.statisticData[item.name]); |
|
|
|
$('#jfgrid_statistic_' + op.id + ' [name="' + item.name + '"]').text(op.running.statisticData[item.name].toFixed(2)); |
|
|
|
} |
|
|
|
|
|
|
|
}, value, row, op, rowItem.$cell); |
|
|
@@ -449,7 +449,7 @@ |
|
|
|
op.running.statisticData[item.name] += (parseFloat(rowItem.text || 0) - rowItem.statisticsNum); |
|
|
|
rowItem.statisticsNum = parseFloat(rowItem.text || 0); |
|
|
|
|
|
|
|
$('#jfgrid_statistic_' + op.id + ' [name="' + item.name + '"]').text(op.running.statisticData[item.name]); |
|
|
|
$('#jfgrid_statistic_' + op.id + ' [name="' + item.name + '"]').text(op.running.statisticData[item.name].toFixed(2)); |
|
|
|
} |
|
|
|
|
|
|
|
$expend = null; |
|
|
|