|
@@ -99,7 +99,7 @@ $(document).ready(function() {
|
|
|
// 0号台账合同
|
|
|
if (colSetCache.total_price.show) {
|
|
|
html.push('<td style="width: 100px" class="text-right">');
|
|
|
- html.push(node.tp_cache.total_price || '');
|
|
|
+ html.push(node.tp_cache.ledger_tp || '');
|
|
|
html.push('</td>');
|
|
|
}
|
|
|
// 本期完成
|
|
@@ -117,7 +117,7 @@ $(document).ready(function() {
|
|
|
// 截止本期变更
|
|
|
if (colSetCache.end_qc_tp.show) {
|
|
|
html.push('<td style="width: 100px" class="text-right">');
|
|
|
- html.push(node.end_qc_tp || '');
|
|
|
+ html.push(node.tp_cache.end_qc_tp || '');
|
|
|
html.push('</td>');
|
|
|
}
|
|
|
// 截止本期完成
|
|
@@ -129,7 +129,7 @@ $(document).ready(function() {
|
|
|
// 截止上期完成
|
|
|
if (colSetCache.pre_gather_tp.show) {
|
|
|
html.push('<td style="width: 100px" class="text-right">');
|
|
|
- html.push(node.pre_gather_tp || '');
|
|
|
+ html.push(node.tp_cache.pre_gather_tp || '');
|
|
|
html.push('</td>');
|
|
|
}
|
|
|
// 预付款
|