/* * This file is part of PhpCompta. * * PhpCompta is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * PhpCompta is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with PhpCompta; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ // Copyright Author Dany De Bontridder ddebontridder@yahoo.fr /* $Revision$ */ include_once ("ac_common.php"); html_page_start($g_UserProperty['use_theme']); include_once ("postgres.php"); include_once("jrn.php"); /* Admin. Dossier */ $rep=DbConnect(); include_once ("class_user.php"); $User=new cl_user($rep); $User->Check(); //echo ''; echo JS_SEARCH_POSTE; if ( ! isset ( $g_dossier ) ) { echo "You must choose a Dossier "; exit -2; } $c_comment=""; $c_class=""; $condition=""; $cn=DbConnect($g_dossier); if ( isset($_POST['search']) ) { $c1=0; foreach( $HTTP_POST_VARS as $key=>$element){ ${"$key"}=$element; } if ( strlen(trim($p_comment)) != 0 ) { $c_comment=" where upper(pcm_lib) like upper('%$p_comment%')"; $c1=1; } if ( strlen(trim($p_class)) != 0 && (string) $p_class == (int)(string) $p_class) { if ($c1==1) $clause=" and "; else $clause = " where "; $c_class=sprintf(" %s pcm_val::text like '%s%%'",$clause,$p_class); } $condition=$c_comment.$c_class; } $url=""; // Filter ??? if ( isset($_GET['filter'])) { $url="?filter=1"; // There is a filter, the value of the filter is the journal id, we // have to find what account are available $SqlCred=""; // Load the property $l_line=GetJrnProperty($cn,$g_jrn); if ( strlen(trim ($l_line['jrn_def_class_cred']) ) > 0 ) { $valid_cred=split(" ",$l_line['jrn_def_class_cred']); // Creation query foreach ( $valid_cred as $item_cred) { if ( strlen (trim($item_cred))) { echo_debug(__FILE__,__LINE__,"l_line[jrn_def_class_cred] $l_line[jrn_def_class_cred] item_cred $item_cred"); if ( strstr($item_cred,"*") == true ) { $item_cred=strtr($item_cred,"*","%"); $Sql=" pcm_val like '$item_cred' or"; } else { $Sql=" pcm_val = '$item_cred' or"; } $SqlCred=$SqlCred.$Sql; } }//foreach } if ( strlen(trim ($l_line['jrn_def_class_deb']) ) > 0 ) { $valid_deb=split(" ",$l_line['jrn_def_class_deb']); // Creation query foreach ( $valid_deb as $item_deb) { if ( strlen (trim($item_deb))) { echo_debug(__FILE__,__LINE__,"l_line[jrn_def_class_deb] $l_line[jrn_def_class_deb] item_deb $item_deb"); if ( strstr($item_deb,"*") == true ) { $item_cred=strtr($item_deb,"*","%"); $Sql=" pcm_val like '$item_deb' or"; } else { $Sql=" pcm_val = '$item_deb' or"; } $SqlCred=$SqlCred.$Sql; } }//foreach } if ( $condition=="") { $condition .= ($SqlCred=="")?"":" where ".substr($SqlCred,0,strlen($SqlCred)-2); } else { $condition .= ($SqlCred=="")?"":" and ( ".substr($SqlCred,0,strlen($SqlCred)-2)." ) "; } }// if (isset($_GET['filter'])) if ( isset($_GET['p_ctl'])) { $p_ctl=$_GET['p_ctl']; } if ( isset($_POST['p_ctl'])) { $p_ctl=$_POST['p_ctl']; } echo_debug(__FILE__,__LINE__,"condition = $condition"); echo '
'; // if request search if ( isset($_POST['search']) or isset($_GET['filter']) ) { $Res=ExecSql($cn,"select * from tmp_pcmn $condition order by pcm_val::text"); $MaxLine=pg_NumRows($Res); if ( $MaxLine==0) { html_page_stop(); return; } echo '| '; echo ''; echo ' | '; } echo ''; echo $l_line['pcm_val']; echo ' | '; echo ''; echo $l_line['pcm_lib']; echo ' | '; echo "