供应链中的getOrgChart.js

时间:2018-05-07 16:00:40

标签: javascript php jquery orgchart getorgchart

我正在尝试在网页中创建供应链

enter image description here

为此,我使用了getOrgChart插件。问题是他们只允许我从父节点创建子节点,而对于我的问题,他们帮助我让我的客户成为我的供应商。

enter image description here

如您所见,我只能在一个getorgchart中显示我的供应商和公司,并在另一个getorgchart中显示与其客户相同的公司。我的目标是在一个getorgchart中显示所有内容。 请原谅我的英语,我是西班牙语。 问候。

代码js。

 <div   id="people"></div>
 <div   id="people2"></div>
 <script type="text/javascript">
                  $(document).ready(function(){
                    $.getJSON("listaproCS.php",function(source){
                        
                      console.log(source);

                      var peopleElement = document.getElementById("people");
                      var orgChart = new getOrgChart(peopleElement, {
                         enableEdit: false,
                         enableDetailsView: false,
                         primaryFields: ["nombre"],
                         photoFields: ["imagen"],
                         orientation: getOrgChart.RO_RIGHT,
                         dataSource : source
                         });
                    });

                    $.getJSON("listaclieCS.php",function(data){
                      console.log(data);
                      var peopleElement = document.getElementById("people2");
                      var orgChart = new getOrgChart(peopleElement, {
                         enableEdit: false,
                         enableDetailsView: false,
                         primaryFields: ["nombre"],
                         photoFields: ["imagen"],
                         orientation: getOrgChart.RO_LEFT,
                         dataSource : data
                       });
                    });
                   });
 </script>

我通过JSON获取的数据,我在控制台中显示它们

enter image description here

1 个答案:

答案 0 :(得分:0)

当前版本不支持多父