|
@@ -479,6 +479,9 @@ class sumLoad {
|
|
|
stageId: 'id',
|
|
|
});
|
|
|
billsTree.loadDatas(billsData);
|
|
|
+ billsTree.nodes.forEach(x => {
|
|
|
+ x.match = tender.match_code ? x.code === tender.match_code : true;
|
|
|
+ });
|
|
|
for (const top of billsTree.children) {
|
|
|
if ([1].indexOf(top.node_type) < 0) continue;
|
|
|
this.recusiveLoadGatherGcl(top, null);
|
|
@@ -510,6 +513,9 @@ class sumLoad {
|
|
|
stageId: 'id',
|
|
|
});
|
|
|
billsTree.loadDatas(billsData);
|
|
|
+ billsTree.nodes.forEach(x => {
|
|
|
+ x.match = tender.match_code ? x.code === tender.match_code : true;
|
|
|
+ });
|
|
|
for (const top of billsTree.children) {
|
|
|
if ([1].indexOf(top.node_type) < 0) continue;
|
|
|
this.recusiveLoadGatherGcl(top, null);
|