getOrgChart.js 供应链

getOrgChart.js for a supply chain

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

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

如您所见,我只能在一个 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

当前版本不支持多父