"._("parcelle"); if(!isset($premier)) $premier=''; if(!isset($recherche1)) $recherche1=''; if(!isset($tricolsf)) $tricolsf=''; if(!isset($premiersf)) $premiersf=''; if(!isset($selection)) $selection=''; if(!isset($retourformulaire)) $retourformulaire=''; if (isset($idx) && $idx != ']' && trim($idx) != '') { $ent .= "-> ".$idx." "; } if (isset($idz) && trim($idz) != '') { $ent .= " ".strtoupper($idz)." "; } // FROM $table = DB_PREFIXE."parcelle LEFT JOIN ".DB_PREFIXE."pos ON parcelle.pos=pos.pos LEFT JOIN ".DB_PREFIXE."proprietaire ON parcelle.proprietaire=proprietaire.proprietaire LEFT JOIN ".DB_PREFIXE."rivoli ON parcelle.rivoli=rivoli.rivoli "; // SELECT $champAffiche = array( 'parcelle.parcelle as "'._("parcelle").'"', 'parcelle.debut as "'._("debut").'"', 'rivoli.libelle as "'._("rivoli").'"', 'proprietaire.nom as "'._("proprietaire").'"', 'pos.libelle as "'._("pos").'"', 'parcelle.surface as "'._("surface").'"', 'parcelle.section as "'._("section").'"', 'parcelle.commune as "'._("commune").'"', 'parcelle.geom as "'._("geom").'"', ); // $champNonAffiche = array( ); // $champRecherche = array( 'parcelle.parcelle as "'._("parcelle").'"', 'parcelle.debut as "'._("debut").'"', 'rivoli.libelle as "'._("rivoli").'"', 'proprietaire.nom as "'._("proprietaire").'"', 'pos.libelle as "'._("pos").'"', 'parcelle.surface as "'._("surface").'"', 'parcelle.section as "'._("section").'"', 'parcelle.commune as "'._("commune").'"', ); $tri="ORDER BY parcelle.debut ASC NULLS LAST"; $edition="parcelle"; /** * Gestion de la clause WHERE => $selection */ // Filtre listing standard $selection = ""; // Liste des clés étrangères avec leurs éventuelles surcharges $foreign_keys_extended = array( "pos" => array("pos", ), "proprietaire" => array("proprietaire", ), "rivoli" => array("rivoli", ), ); // Filtre listing sous formulaire - pos if (in_array($retourformulaire, $foreign_keys_extended["pos"])) { $selection = " WHERE (parcelle.pos = '".$idx."') "; } // Filtre listing sous formulaire - proprietaire if (in_array($retourformulaire, $foreign_keys_extended["proprietaire"])) { $selection = " WHERE (parcelle.proprietaire = '".$idx."') "; } // Filtre listing sous formulaire - rivoli if (in_array($retourformulaire, $foreign_keys_extended["rivoli"])) { $selection = " WHERE (parcelle.rivoli = '".$idx."') "; } /** * Gestion SOUSFORMULAIRE => $sousformulaire */ $sousformulaire = array( 'dossier', 'dossier_autorisation_parcelle', 'dossier_parcelle', ); ?>