ajout poid sur export csv
This commit is contained in:
parent
0c51a19726
commit
0acb4e1777
|
@ -532,7 +532,7 @@ class ScrumController extends AbstractController
|
|||
$d = ';'; // this is the default but i like to be explicit
|
||||
$e = '"'; // this is the default but i like to be explicit
|
||||
|
||||
$tmp=["Projet","Jalon","Sprint","Type","Id","Titre","Statut","Label"];
|
||||
$tmp=["Projet","Jalon","Sprint","Type","Id","Titre","Statut","Label","Poid"];
|
||||
fputcsv($csvh, $tmp, $d, $e);
|
||||
|
||||
foreach($gitearepos as $gitearepo) {
|
||||
|
@ -558,7 +558,8 @@ class ScrumController extends AbstractController
|
|||
$giteaissue->number,
|
||||
$giteaissue->title,
|
||||
$statut,
|
||||
$labels
|
||||
$labels,
|
||||
$issue->getWeight()
|
||||
];
|
||||
fputcsv($csvh, $tmp, $d, $e);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue