(isset($_GET['nombre_de_jours']) ? $_GET['nombre_de_jours'] : ""), "codes_datd" => (isset($_GET['codes_datd']) ? $_GET['codes_datd'] : ""), "filtre" => (isset($_GET['filtre']) ? $_GET['filtre'] : ""), "restreindre_aux_tacites" => (isset($_GET['restreindre_aux_tacites']) ? $_GET['restreindre_aux_tacites'] : ""), ); /** * Récupération de la configuration de la requête à partir du widget. */ // require_once "../obj/om_widget.class.php"; $om_widget = new om_widget(0); // $conf = $om_widget->get_config_dossiers_limites($params); // $nombre_de_jours = $conf["arguments"]["nombre_de_jours"]; $codes_datd = $conf["arguments"]["codes_datd"]; $filtre = $conf["arguments"]["filtre"]; $restreindre_aux_tacites = $conf["arguments"]["restreindre_aux_tacites"]; /** * Configuration du listing */ // Titre de la page $ent = __("instruction")." -> ".__("Dossiers limites"); // $tab_description = $conf["message_help"]; // Aucune action de corner $tab_actions['corner'] = array(); // Le lien de consultation porte vers l'objet dossier_instruction sans // aucun paramètre car aucun retour sur le listing n'est possible $tab_actions['left']['consulter'] = array( 'lien' => ''.OM_ROUTE_FORM.'&obj=dossier_instruction&action=3&idx=', 'id' => '', 'lib' => ''.__('Consulter').'', 'rights' => array('list' => array($obj, $obj.'_consulter'), 'operator' => 'OR'), 'ordre' => 10, ); $tab_actions['content'] = $tab_actions['left']['consulter']; // Aucun champ pour la recherche simple $champRecherche = array(); // On cache la recherche simple $options[] = array( "type" => "search", "display" => false, ); /** * Composition de la requête */ $sqlFiltre = $om_widget->get_query_filter( sprintf( "%s WHERE %s %s %s ", $conf["query_ct_from"], $conf["query_ct_where_common"], $conf["query_ct_where_tacite_filter"], $conf["query_ct_where_datd_filter"] ), $filtre ); // SELECT $champAffiche = $conf["query_ct_select_champaffiche"]; // FROM $table = $conf["query_ct_from"]. $sqlFiltre['FROM']; // WHERE $selection = sprintf( "WHERE %s %s %s %s", $conf["query_ct_where_common"], $conf["query_ct_where_tacite_filter"], $conf["query_ct_where_datd_filter"], $sqlFiltre['WHERE'] ); // ORDER BY $tri = sprintf(" ORDER BY %s ASC NULLS LAST ", $conf["query_ct_orderby"] ); ?>