|
@@ -126,6 +126,10 @@ public class EVisaTaskCheckController {
|
|
|
InformationQuery query = queryMap.get(key);
|
|
|
//获取节点
|
|
|
WbsTreeContract contractNode = queryToNodeMap.get(key);
|
|
|
+ if(contractNode == null){
|
|
|
+ //避免未找到对应的节点
|
|
|
+ contractNode = this.wbsTreeContractClient.getContractWbsTreeByPrimaryKeyId(query.getWbsId());
|
|
|
+ }
|
|
|
|
|
|
//根据节点及具体类型做表格区分
|
|
|
List<WbsTreeContract> tableList = this.wbsTreeContractClient.queryChildByParentId(contractNode, "queryTable", String.valueOf(query.getClassify()));
|