is_option_dossier_commune_enabled() === true) {
$champAffiche_debut_num_dossier[] = "commune.libelle as \""._("commune")."\"";
}
// Modifie la méthode de récupération de la nature des travaux
$champAffiche_debut_commun = array(
$case_demandeur.' as "'._("petitionnaire").'"',
$case_correspondant.' as "'.__("correspondant").'"',
'TRIM(CONCAT(architecte.nom, \' \', architecte.prenom)) as "'.__("architecte (nom)").'"',
'architecte.nom_cabinet as "'.__("architecte (cabinet)").'"',
$trim_concat_terrain.'as "'.__("localisation").'"',
'dossier_autorisation_type_detaille.libelle as "'._("nature_dossier").'"',
'donnees_techniques.co_tot_log_nb as "'.__("nombre de logements créés").'"',
$surface_cree.' as "'.__("surface créée").'"',
'famille_travaux.famille_travaux_libelle as "'.__("Famille de travaux").'"',
'nature_travaux.nature_travaux_libelle as "'.__("Nature de travaux").'"',
'description_projet as "'.__("Description du projet").'"',
'to_char(dossier.date_depot ,\'DD/MM/YYYY\') as "'._("date_depot").'"',
'to_char(dossier.date_complet ,\'DD/MM/YYYY\') as "'._("date_complet").'"',
'CASE WHEN dossier.incomplet_notifie IS TRUE AND dossier.incompletude IS TRUE
THEN to_char(dossier.date_limite_incompletude ,\'DD/MM/YYYY\')
ELSE to_char(dossier.date_limite ,\'DD/MM/YYYY\')
END as "'._("date_limite").'"',
);
$champAffiche_demat = array(
'dossier_platau.external_uid as "dossier Plat\'AU"',
'consultation_platau.external_uid as "consultation Plat\'AU"',
'pieces_platau.external_uid as "pièce(s) Plat\'AU"',
'autres_platau.external_uid as "autres objets Plat\'AU"',
);
$champAffiche_demat_sc = array();
if ($f->is_option_mode_service_consulte_enabled() === true) {
$champAffiche_demat_sc = array(
'consultation_entrante.service_consultant_id as "'.__('Service consultant : identifiant').'"',
'consultation_entrante.service_consultant_libelle as "'.__('Service consultant : libellé').'"',
);
}
// Redéfinit la liste des champs à afficher
$champAffiche = array_merge(
$champAffiche_debut_num_dossier,
$champAffiche_debut_commun,
array('instructeur.nom as "'.__("instructeur").'"',
'division.code as "'.__("division").'"',
),
$champAffiche_fin_commun,
$champAffiche_demat,
$champAffiche_demat_sc
);
?>