Colonne presentRCS déplacé après le SIREN NIC

This commit is contained in:
Michael RICOIS 2015-01-27 10:52:42 +00:00
parent 195496bad6
commit 968c09ef33

View File

@ -148,6 +148,12 @@ $fields = $dico->getFields();
$tabEntete = array('siren', 'nic');
$tabEnteteLabel = array('SIREN', 'NIC');
$columns = array('LPAD(siren, 9, 000000000) AS siren', 'LPAD(nic,5,00000) AS nic');
// --- Ajouter le champ presentRcs
$columns[] = 'presentRcs';
$tabEntete[] = 'presentRcs';
$tabEnteteLabel[] = "Présence au RNCS";
$joins = array();
foreach ( $dataProfil as $item ) {
@ -183,10 +189,6 @@ foreach ( $dataProfil as $item ) {
}
}
// --- Ajouter le champ presentRcs
$columns[] = 'presentRcs';
$tabEntete[] = 'presentRcs';
$tabEnteteLabel[] = "Présent au RNCS";
// --- Ouverture fichier
if ($fileFormat == 'csv')