136 lines
4 KiB
PHP
136 lines
4 KiB
PHP
<?php
|
|
/*
|
|
* 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
|
|
*/
|
|
/* $Revision$ */
|
|
|
|
// Copyright Author Dany De Bontridder ddebontridder@yahoo.fr
|
|
|
|
/* !\file
|
|
*/
|
|
|
|
/* \brief this class is the mother class for the CA printing
|
|
*
|
|
*
|
|
*/
|
|
require_once('postgres.php');
|
|
require_once('debug.php');
|
|
require_once('constant.php');
|
|
require_once ('class_widget.php');
|
|
require_once('class_dossier.php');
|
|
require_once ('class_plananalytic.php');
|
|
|
|
class print_ca {
|
|
var $db; /*!< $db database connection */
|
|
var $to; /*!< $to start date */
|
|
var $from; /*!< $from end date */
|
|
var $from_poste; /*!< $from_poste from poste */
|
|
var $to_poste; /*!< $to_poste to the poste */
|
|
|
|
function print_ca($p_cn) {
|
|
$this->db=$p_cn;
|
|
$this->from="";
|
|
$this->to="";
|
|
$this->from_poste="";
|
|
$this->to_poste="";
|
|
|
|
}
|
|
/*!
|
|
* \brief complete the object with the data in $_REQUEST
|
|
*/
|
|
function get_request() {
|
|
if ( isset($_REQUEST['from']))
|
|
$this->from=$_REQUEST['from'];
|
|
|
|
if ( isset($_REQUEST['to']))
|
|
$this->to=$_REQUEST['to'];
|
|
|
|
if ( isset($_REQUEST['from_poste']))
|
|
$this->from_poste=$_REQUEST['from_poste'];
|
|
|
|
if ( isset($_REQUEST['to_poste']))
|
|
$this->to_poste=$_REQUEST['to_poste'];
|
|
if ( isset($_REQUEST['pa_id']))
|
|
$this->pa_id=$_REQUEST['pa_id'];
|
|
else
|
|
$this->pa_id="";
|
|
|
|
}
|
|
/*!
|
|
* \brief Compute the form to display
|
|
* \param $p_hidden hidden tag to be included (gDossier,...)
|
|
*
|
|
*
|
|
* \return string containing the data
|
|
*/
|
|
function display_form($p_hidden="") {
|
|
/* if there is no analytic plan return */
|
|
$pa=new PlanAnalytic($this->db);
|
|
if ( $pa->count() == 0 ) {
|
|
echo '<h2 class="info"> Aucun plan défini</h2>';
|
|
exit();
|
|
}
|
|
|
|
$from=new widget ('js_date','from','from');
|
|
$from->size=10;
|
|
$from->value=$this->from;
|
|
|
|
$to=new widget('js_date','to','to');
|
|
$to->value=$this->to;
|
|
$to->size=10;
|
|
|
|
$from_poste=new widget ('text','from_poste','from_poste');
|
|
$from_poste->size=10;
|
|
$from_poste->value=$this->from_poste;
|
|
|
|
$to_poste=new widget('text','to_poste','to_poste');
|
|
$to_poste->value=$this->to_poste;
|
|
$to_poste->size=10;
|
|
|
|
$hidden=new widget("hidden");
|
|
$r=dossier::hidden();
|
|
$r.=$hidden->IOValue("result","1");
|
|
$r.="Depuis : ".$from->IOValue();
|
|
$r.= "jusque : ".$to->IOValue();
|
|
$r.= '<span class="notice"> Les dates sont en format DD.MM.YYYY</span>';
|
|
|
|
$r.=$p_hidden;
|
|
$r.='<span style="padding:5px;margin:5px;border:2px double blue;display:block;">';
|
|
$plan=new PlanAnalytic($this->db);
|
|
$plan_id=new widget("select","","pa_id");
|
|
$plan_id->value=make_array($this->db,"select pa_id, pa_name from plan_analytique order by pa_name");
|
|
$plan_id->selected=$this->pa_id;
|
|
$r.= "Plan Analytique :".$plan_id->IOValue();
|
|
|
|
$poste=new widget("text");
|
|
$poste->size=10;
|
|
$r.="Entre le poste ".$poste->IOValue("from_poste",$this->from_poste);
|
|
$choose=new widget("button");
|
|
$choose->name="Choix Poste";
|
|
$choose->label="Recherche";
|
|
$choose->javascript="onClick=search_ca('".$_REQUEST['PHPSESSID']."',".dossier::id().",'from_poste','pa_id')";
|
|
$r.=$choose->IOValue();
|
|
|
|
$r.=" et le poste ".$poste->IOValue("to_poste",$this->to_poste);
|
|
$choose->javascript="onClick=search_ca('".$_REQUEST['PHPSESSID']."',".dossier::id().",'to_poste','pa_id')";
|
|
$r.=$choose->IOValue();
|
|
$r.='<span class="notice" style="display:block">Selectionnez le plan qui vous intéresse avant de cliquer sur Recherche</span>';
|
|
|
|
$r.='</span>';
|
|
return $r;
|
|
}
|
|
}
|