|
|
@@ -3212,12 +3212,11 @@ public class WbsTreeContractServiceImpl extends BaseServiceImpl<WbsTreeContractM
|
|
|
String sqlList1 = "Select parent_id,node_name,p_id from m_wbs_tree_contract where contract_id=" + wbsTreeContractRoot.getContractId() + " and wbs_id=" + wbsTreeContractRoot.getWbsId() + " and is_deleted=0";
|
|
|
List<WbsTreeContract> WbsTreeContractList = jdbcTemplate.query(sqlList1, new BeanPropertyRowMapper<>(WbsTreeContract.class));
|
|
|
for (ImportTreeDto dto : list) {
|
|
|
- double v = ((double) ++i / size) * 100;
|
|
|
+ double v = ((double) i/ size) * 100;
|
|
|
if(v<100){
|
|
|
String progressStr = String.format("%.2f", v);
|
|
|
bladeRedis.set("import:projectId:"+wbsTreeContractRoot.getProjectId()+"contractId:"+wbsTreeContractRoot.getContractId(), progressStr);
|
|
|
}
|
|
|
- //新增
|
|
|
i++;
|
|
|
//单位工程:如果没有被处理过,说明需要新增
|
|
|
if (!dto.getIsUnit()) {
|