|
@@ -848,6 +848,8 @@ module.exports = app => {
|
|
|
|
|
|
info.end_contract_tp = helper.sum([info.pre_contract_tp, info.contract_tp, info.contract_pc_tp]);
|
|
|
info.end_qc_tp = helper.sum([info.pre_qc_tp, info.qc_tp, info.qc_pc_tp]);
|
|
|
+ info.end_positive_qc_tp = helper.sum([info.pre_positive_qc_tp, info.positive_qc_tp, info.positive_qc_pc_tp]);
|
|
|
+ info.end_negative_qc_tp = helper.sum([info.pre_negative_qc_tp, info.negative_qc_tp, info.negative_qc_pc_tp]);
|
|
|
info.end_gather_tp = helper.add(info.pre_gather_tp, info.gather_tp);
|
|
|
|
|
|
info.yf_tp = stage.yf_tp;
|
|
@@ -894,6 +896,8 @@ module.exports = app => {
|
|
|
info.gather_tp = helper.sum([info.contract_tp, info.qc_tp, info.pc_tp]);
|
|
|
info.end_contract_tp = helper.sum([info.pre_contract_tp, info.contract_tp, info.contract_pc_tp]);
|
|
|
info.end_qc_tp = helper.sum([info.pre_qc_tp, info.qc_tp, info.qc_pc_tp]);
|
|
|
+ info.end_positive_qc_tp = helper.sum([info.pre_positive_qc_tp, info.positive_qc_tp, info.positive_qc_pc_tp]);
|
|
|
+ info.end_negative_qc_tp = helper.sum([info.pre_negative_qc_tp, info.negative_qc_tp, info.negative_qc_pc_tp]);
|
|
|
info.end_gather_tp = helper.add(info.pre_gather_tp, info.gather_tp);
|
|
|
info.end_yf_tp = helper.add(info.pre_yf_tp, info.yf_tp);
|
|
|
info.end_sf_tp = helper.add(info.pre_sf_tp, info.sf_tp);
|