この問題を解決しようと 1 日を過ごした後、私は敗北を認めざるを得ません。
階層をレポート/csvにフォーマットする必要があります.indented/hierarchyが適切です.配列を取り、以下のように階層を作成するphp関数が必要です. 開始ノードが「Sales」であることはわかっています。
//[so] [activity] [milestone] [compleated]
array(
array("Sales", "Motor", "Documentation", "10%"),
array("Sales", "Motor", "Communication", "15%"),
array("Sales", "Motor", "Metro file", "30%"),
array("Sales", "Motor", "Training", "33%"),
array("Sales", "Motor", "Client Services", "23%"),
array("Motor", "Documentation", "Doc revamp", "42%"),
array("Motor", "Documentation", "SLA", "33%"),
array("Motor", "Documentation", "KRA", "25%")
)
Sales
Motor
Documentation 10%
Doc revamp 43%
SLA 33%
KRA 25%
Communication 15%
Metro file 30%
Training 33%
Client Services 23%
Sales
xx Motor
xxx Documentation 10%
xxxx Doc revamp 43%
xxxxx SLA 33%
xxxxx KRA 25%
xxxx Communication 15%
xxxx Metro file 30%
xxxx Training 33%
xxxx Client Services 23%