Commit ace19aad authored by wangxl's avatar wangxl

1

parent 1e2b1294
......@@ -152,19 +152,19 @@ public class ComProjectAuditController extends BaseController<ComProjectAuditSer
if (vo.getAuditMethod().equals(CommonEnum.auditMethod.last.getCode())) {
// e.setAssignList(comProjectAssignService.getAssignExpertList(e.getAuditObjectId()));
e.setAge(IDCardUtil.getAge(e.getCertId()));
BigDecimal total = new BigDecimal(0);
BigDecimal gov = new BigDecimal(0);
BigDecimal self = new BigDecimal(0);
BigDecimal total1 = new BigDecimal(0);
BigDecimal gov2 = new BigDecimal(0);
BigDecimal self3 = new BigDecimal(0);
if (Objects.nonNull(e.getTotalFunding())) {
total = e.getTotalFunding();
total1 = e.getTotalFunding();
}
if (Objects.nonNull(e.getGovFunding())) {
gov = e.getGovFunding();
gov2 = e.getGovFunding();
}
self = total.subtract(gov);
e.setSelfFunding(self);
self3 = total1.subtract(gov2);
e.setSelfFunding(self3);
}
if (null != e.getCertId())
e.setCertId(hideAllIdCardNum(e.getCertId()));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment