|
@@ -347,6 +347,10 @@ function recursiveGetTenderNodeHtml (node, arr, pid) {
|
|
|
html.push('<td style="width: 7%" class="text-right">');
|
|
|
html.push(node.pre_gather_tp);
|
|
|
html.push('</td>');
|
|
|
+ // 预付款
|
|
|
+ html.push('<td style="width: 7%" class="text-right">');
|
|
|
+ html.push(node.advance_tp);
|
|
|
+ html.push('</td>');
|
|
|
// 本期应付
|
|
|
html.push('<td style="width: 7%" class="text-right">');
|
|
|
html.push(node.yf_tp);
|
|
@@ -379,6 +383,7 @@ function getTenderTreeHtml () {
|
|
|
html.push('<th class="text-center" style="width: 7%">', '截止本期变更', '</th>');
|
|
|
html.push('<th class="text-center" style="width: 7%">', '截止本期完成', '</th>');
|
|
|
html.push('<th class="text-center" style="width: 7%">', '截止上期完成', '</th>');
|
|
|
+ html.push('<th class="text-center" style="width: 7%">', '预付款', '<i class="fa fa-question-circle text-primary" data-placement="bottom" data-toggle="tooltip" data-original-title="预付款流程中截止本期金额"></i>', '</th>');
|
|
|
html.push('<th class="text-center" style="width: 7%">', '本期应付', '</th>');
|
|
|
html.push('<th class="text-center" style="width: 7%">', '截止本期应付', '</th>');
|
|
|
html.push('</tr>', '</thead>');
|