|
@@ -333,39 +333,39 @@ function recursiveGetTenderNodeHtml (node, arr, pid) {
|
|
|
html.push('</td>');
|
|
|
// 0号台账合同
|
|
|
html.push('<td style="width: 6%" class="text-right">');
|
|
|
- html.push(node.total_price);
|
|
|
+ html.push(node.total_price || '');
|
|
|
html.push('</td>');
|
|
|
// 本期完成
|
|
|
html.push('<td style="width: 6%" class="text-right">');
|
|
|
- html.push(node.gather_tp);
|
|
|
+ html.push(node.gather_tp || '');
|
|
|
html.push('</td>');
|
|
|
// 截止本期合同
|
|
|
html.push('<td style="width: 6%" class="text-right">');
|
|
|
- html.push(node.end_contract_tp);
|
|
|
+ html.push(node.end_contract_tp || '');
|
|
|
html.push('</td>');
|
|
|
// 截止本期变更
|
|
|
html.push('<td style="width: 6%" class="text-right">');
|
|
|
- html.push(node.end_qc_tp);
|
|
|
+ html.push(node.end_qc_tp || '');
|
|
|
html.push('</td>');
|
|
|
// 截止本期完成
|
|
|
html.push('<td style="width: 6%" class="text-right">');
|
|
|
- html.push(node.end_gather_tp);
|
|
|
+ html.push(node.end_gather_tp || '');
|
|
|
html.push('</td>');
|
|
|
// 截止上期完成
|
|
|
html.push('<td style="width: 6%" class="text-right">');
|
|
|
- html.push(node.pre_gather_tp);
|
|
|
+ html.push(node.pre_gather_tp || '');
|
|
|
html.push('</td>');
|
|
|
// 预付款
|
|
|
html.push('<td style="width: 6%" class="text-right">');
|
|
|
- html.push(node.advance_tp);
|
|
|
+ html.push(node.advance_tp || '');
|
|
|
html.push('</td>');
|
|
|
// 本期应付
|
|
|
html.push('<td style="width: 6%" class="text-right">');
|
|
|
- html.push(node.yf_tp);
|
|
|
+ html.push(node.yf_tp || '');
|
|
|
html.push('</td>');
|
|
|
// 截止本期应付
|
|
|
html.push('<td style="width: 6%" class="text-right">');
|
|
|
- html.push(node.end_yf_tp);
|
|
|
+ html.push(node.end_yf_tp || '');
|
|
|
html.push('</td>');
|
|
|
html.push('</tr>');
|
|
|
if (node.children) {
|