瀏覽代碼

https://assistance.opentalent.fr/browse/V8-2383

Olivier Massot 4 年之前
父節點
當前提交
4d8f870d91
共有 1 個文件被更改,包括 5 次插入0 次删除
  1. 5 0
      ot_templating/Resources/Public/assets/Classic/script/structures.js

+ 5 - 0
ot_templating/Resources/Public/assets/Classic/script/structures.js

@@ -147,6 +147,11 @@ $(document).ready(function() {
     // Does the given structure match the current query
     function matchCurrentQuery(structure) {
 
+        // Is the structure a member of the website federation?
+        if (![structure.n1Id, structure.n2Id, structure.n3Id, structure.n4Id, structure.n5Id].includes(organizationId)) {
+            return false;
+        }
+
         // Filter by name
         if (query['what'] && !structure.name.toLowerCase().includes(query['what'].toLowerCase())) {
             return false;