|
@@ -92,7 +92,7 @@
|
|
</div>
|
|
</div>
|
|
<div class="height-20 mb-2">
|
|
<div class="height-20 mb-2">
|
|
<div class="card text-center bg-dark text-white ml-2 mr-2 py-2 height-100">
|
|
<div class="card text-center bg-dark text-white ml-2 mr-2 py-2 height-100">
|
|
- <div class="card-body card-per-body">
|
|
|
|
|
|
+ <div class="card-body card-per-body" data-toggle="tooltip" data-placement="bottom" data-html="true" data-original-title="">
|
|
<h5 class="card-title card-case-title data_total_checked_change_price">0.00</h5>
|
|
<h5 class="card-title card-case-title data_total_checked_change_price">0.00</h5>
|
|
<p class="card-text text-muted">已批复变更金额</p>
|
|
<p class="card-text text-muted">已批复变更金额</p>
|
|
</div>
|
|
</div>
|
|
@@ -365,7 +365,7 @@
|
|
</div>
|
|
</div>
|
|
<div class="col-4 pl-0">
|
|
<div class="col-4 pl-0">
|
|
<div class="card text-center bg-dark text-white height-100">
|
|
<div class="card text-center bg-dark text-white height-100">
|
|
- <div class="card-body card-per-body">
|
|
|
|
|
|
+ <div class="card-body card-per-body" data-toggle="tooltip" data-placement="bottom" data-html="true" data-original-title="">
|
|
<h5 class="card-title card-case-title data_total_checked_change_price">0.00</h5>
|
|
<h5 class="card-title card-case-title data_total_checked_change_price">0.00</h5>
|
|
<p class="card-text text-muted">已批复变更金额</p>
|
|
<p class="card-text text-muted">已批复变更金额</p>
|
|
</div>
|
|
</div>
|
|
@@ -1349,6 +1349,8 @@
|
|
let total_price = 0;
|
|
let total_price = 0;
|
|
// let total_change_price = 0;
|
|
// let total_change_price = 0;
|
|
let total_checked_change_price = 0;
|
|
let total_checked_change_price = 0;
|
|
|
|
+ // let total_checked_change_positive_price = 0;
|
|
|
|
+ // let total_checked_change_negative_price = 0;
|
|
let total_after_change_price = 0;
|
|
let total_after_change_price = 0;
|
|
let total_stage_price = 0;
|
|
let total_stage_price = 0;
|
|
let total_advance_price = 0;
|
|
let total_advance_price = 0;
|
|
@@ -1388,6 +1390,8 @@
|
|
total_price = ZhCalc.add(total_price, t.total_price);
|
|
total_price = ZhCalc.add(total_price, t.total_price);
|
|
// total_change_price = ZhCalc.add(total_change_price, t.end_qc_tp);
|
|
// total_change_price = ZhCalc.add(total_change_price, t.end_qc_tp);
|
|
total_checked_change_price = ZhCalc.add(total_checked_change_price, t.change_tp);
|
|
total_checked_change_price = ZhCalc.add(total_checked_change_price, t.change_tp);
|
|
|
|
+ // total_checked_change_positive_price = ZhCalc.add(total_checked_change_positive_price, t.change_p_tp);
|
|
|
|
+ // total_checked_change_negative_price = ZhCalc.add(total_checked_change_negative_price, t.change_n_tp);
|
|
total_after_change_price = ZhCalc.add(total_after_change_price, ZhCalc.add(t.total_price, t.change_tp));
|
|
total_after_change_price = ZhCalc.add(total_after_change_price, ZhCalc.add(t.total_price, t.change_tp));
|
|
total_stage_price = ZhCalc.add(total_stage_price, t.end_gather_tp);
|
|
total_stage_price = ZhCalc.add(total_stage_price, t.end_gather_tp);
|
|
// total_material_price = ZhCalc.add(total_material_price, t.material_tp);
|
|
// total_material_price = ZhCalc.add(total_material_price, t.material_tp);
|
|
@@ -1447,6 +1451,7 @@
|
|
$('.data_total_price').text(formatMoney(total_price));
|
|
$('.data_total_price').text(formatMoney(total_price));
|
|
// $('.data_total_change_price').text(formatMoney(total_change_price));
|
|
// $('.data_total_change_price').text(formatMoney(total_change_price));
|
|
$('.data_total_checked_change_price').text(formatMoney(total_checked_change_price));
|
|
$('.data_total_checked_change_price').text(formatMoney(total_checked_change_price));
|
|
|
|
+ // $('.data_total_checked_change_price').parents('div').attr('data-original-title', "<p style='text-align:left;'>批复正变更:" + formatMoney(total_checked_change_positive_price) + "</p>批复负变更:" + formatMoney(total_checked_change_negative_price));
|
|
$('.data_total_after_change_price').text(formatMoney(total_after_change_price));
|
|
$('.data_total_after_change_price').text(formatMoney(total_after_change_price));
|
|
$('.data_total_stage_price').text(formatMoney(total_stage_price));
|
|
$('.data_total_stage_price').text(formatMoney(total_stage_price));
|
|
$('.data_total_advance_price').text(formatMoney(total_advance_price));
|
|
$('.data_total_advance_price').text(formatMoney(total_advance_price));
|