Check(); //determine focus: if ( isset ( $_GET['search']) ) { html_page_start($User->theme,"onLoad=\"window.focus();SetFocus('select0',0)\""); } else { html_page_start($User->theme,"onLoad=\"window.focus();SetFocus('fic_search',0)\""); } require_once('class_dossier.php'); $gDossier=dossier::id(); include_once ("check_priv.php"); $cn=DbConnect($gDossier); // Get The priv on the selected folder if ( $User->CheckAction($cn,FICHE_READ) == 0 ){ /* Cannot Access */ echo '

Vous n\' avez pas accès

'; return; } function get_list_fiche($p_cn,$get,$p_jrn) { $sql="select $get as fiche from jrn_def where jrn_def_id=$p_jrn"; $Res=ExecSql($p_cn,$sql); // fetch it $Max=pg_NumRows($Res); if ( $Max==0) { echo_warning("No rows"); exit(); } // Normally Max must be == 1 $list=pg_fetch_array($Res,0); if ( $list['fiche']=="") { echo_warning("Journal mal paramètré"); exit(); } $list_fiche=$list['fiche']; return $list_fiche; } ?> $element) { // The value are e_name e_type e_PHPSESSID ${"e_$key"}=$element; echo_debug('fiche_search.php',__LINE__,"e_$key =$element
"); } $e_fic_search=(isset ($_REQUEST['fic_search']))?$_REQUEST['fic_search']:""; $r.="
"; $r.="Recherche : ".''; $r.=''; $r.="
"; echo $r; $r=""; foreach ($_GET as $k=>$h) { if ( $k != "fic_search" && $k != "first" ) echo ''; } // Show result of the search if ( (isset($_GET['first']) && strlen(trim($_GET['fic_search'])) != 0) || ! isset($_GET['first'] ) ) { // Get the field from database if ( $e_type == 'deb' ) { $get='jrn_def_fiche_deb'; $list_fiche=get_list_fiche($cn,$get,$_GET['p_jrn']); $sql="select * from vw_fiche_attr where fd_id in ( $list_fiche )"; } elseif ( $e_type == 'cred' ) { $get='jrn_def_fiche_cred'; $list_fiche=get_list_fiche($cn,$get,$_GET['p_jrn']); $sql="select * from vw_fiche_attr where fd_id in ( $list_fiche )"; } /*!\brief if $e_type (from widget::extra) equal all, all the card are shown * without restriction */ elseif ( $e_type == 'all' ) { $sql="select * from vw_fiche_attr where true"; } elseif ($e_type=='filter') { $get='jrn_def_fiche_cred'; $list_cred=get_list_fiche($cn,$get,$_GET['p_jrn']); $get='jrn_def_fiche_deb'; $list_deb=get_list_fiche($cn,$get,$_GET['p_jrn']); $list_fiche=$list_cred.','.$list_deb; if ( $list_fiche == ',' ) exit("Vous n'avez pas bien configure ce journal, vous devez aller dans Avance->Journal et indiquez les fiches utilisables"); $sql="select * from vw_fiche_attr where fd_id in ( $list_fiche )"; } // if e_type contains a list of value for filtering on fiche_def_ref.frd_id else{ $list_fiche=$e_type; $sql="select * from vw_fiche_attr where frd_id in ( $list_fiche )"; // $sql="select * from vw_fiche_attr "; } // e_fic_search contains the pattern if (strlen(trim($e_fic_search) ) == 0 ) { $Res=ExecSql($cn,$sql); } else { $e_fic_search=FormatString($e_fic_search); $Res=ExecSql($cn,"$sql and ( upper(vw_name) like upper('%$e_fic_search%') or ". "upper(quick_code) like upper('%$e_fic_search%'))" ); } // Test whether rows are returned if ( ($Max = pg_NumRows($Res) ) == 0 ) { echo_warning("Pas de fiche trouvée"); return; } // Show the cards for ( $i=0; $i < $Max; $i++) { //set focus on first "Select" button. $row=pg_fetch_array($Res,$i); // if quick code is empty pass if (trim($row['quick_code']) == "") continue; if ( $i %2 == 0 ) $class="even"; else $class="odd"; $text=FormatString($row['vw_name']); $r.=""; $qcode= $row['quick_code'] ; $r.=sprintf ('', "select" . $i, $e_name, $row['quick_code'] , $text, $row['vw_sell'], $row['vw_buy'], $row['tva_id'], $row['tva_label'] , $qcode ); $r.=" ".$row['vw_name']; if ( $row['vw_addr'] !="") $r.="
Adresse: ".$row['vw_addr']." ".$row['vw_cp'].""; $r.="
"; } } $r.="
"; $r.="
"; echo $r; ?>