Här är min lösning för det:
function cost_centres_format($items,$parent_id,$array=array()) {
foreach($items as $item) {
if($item->parent_id == $parent_id) {
$array[] = $item;
if($item->internal_purchase_order_cost_centre_id>0) {
$array = cost_centres_format($items,$item->internal_purchase_order_cost_centre_id,$array);
}
}
}
return $array;
}
$array = cost_centres_format($items,0);
Diesel (id:5) kommer att ligga under fordonsunderhåll (id:4) på grund av sin ursprungliga beställning. Du kan göra en extra sortering efter namn men i ditt exempel låg Kapital (id:3) under Overheads (id:2).