" . __( "suivi dossier" ) . " -> " . __( "num_dossier_a_numeriser" ); if (isset ( $idz ) && trim ( $idz ) != '') { $ent .= " " . strtoupper ( $idz ) . " "; } // Titre de l'onglet $tab_title = sprintf('%s %s', __("suivi des"), __("num_dossier_a_numeriser")); // Restriction aux num_dossiers à numériser if ( $selection == "" ) { $selection = " WHERE"; } else { $selection .= " AND"; } $selection .= " datenum IS NULL AND num_dossier.num_bordereau IS NOT NULL"; // TRI $tri="ORDER BY envoi ASC, num_commande ASC"; // ACTIONS DES LIGNES if ( isset($tab_actions) ) { unset($tab_actions['corner']['ajouter']); // Modification directement depuis la liste // // action latérale $tab_actions['left']['consulter'] = array(); $tab_actions['left']['modifier'] = array( 'lien' => OM_ROUTE_FORM.'&obj='.$obj.'&action=1'.'&idx=', 'id' => '&premier='.$premier.'&advs_id='.$advs_id.'&tricol='.$tricol.'&valide='.$valide.'&retour=tab', 'lib' => ''.__('modifier').'', 'rights' => array('list' => array($obj, $obj.'_modifier'), 'operator' => 'OR'), 'ordre' => 11, ); // action hyper-lien $tab_actions['content']['lien'] = str_replace("action=3","action=1",$tab_actions['content']['lien']); $tab_actions['content']['rights'] = array('list' => array($obj, $obj.'_modifier'), 'operator' => 'OR'); } // Aucun résultat affiché si l'option n'est pas activé if ($f->is_option_suivi_numerisation_enabled() === false) { $selection = " WHERE 1 = 2 "; }