Correction statut sur onglets personnes export Excel
This commit is contained in:
parent
cd9647bd4a
commit
28032ee53a
@ -130,8 +130,14 @@ $line = 1;
|
|||||||
// Build full row
|
// Build full row
|
||||||
unset($fr);
|
unset($fr);
|
||||||
foreach($header as $key => $val) {
|
foreach($header as $key => $val) {
|
||||||
|
if($key=='status') {
|
||||||
|
$fr[$key] = $or[$key]==0 ? 'Finalisé' : 'Ouvert';
|
||||||
|
}
|
||||||
|
else {
|
||||||
$fr[$key] = $or[$key];
|
$fr[$key] = $or[$key];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
if($prevName!=$fr['name']) {
|
if($prevName!=$fr['name']) {
|
||||||
$keys = array_keys ( $header );
|
$keys = array_keys ( $header );
|
||||||
// Create new workshet
|
// Create new workshet
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user