svn+ssh://danydb@svn/svn/phpcompta/branches/rel500 ........ r2940 | danydb | 2010-02-11 19:20:28 +0100 (Thu, 11 Feb 2010) | 1 line Acc_Payment : "paiement par" is getting simpler ........ r2941 | danydb | 2010-02-11 19:41:39 +0100 (Thu, 11 Feb 2010) | 1 line Add a logout button to extension ........ r2942 | danydb | 2010-02-11 20:49:25 +0100 (Thu, 11 Feb 2010) | 1 line Translation dutch ........ r2943 | danydb | 2010-02-12 11:40:28 +0100 (Fri, 12 Feb 2010) | 1 line Add dutch translation ........ r2944 | danydb | 2010-02-12 17:09:59 +0100 (Fri, 12 Feb 2010) | 1 line Fix Bug : in quick writing you have now access to the listing ........ r2945 | danydb | 2010-02-13 14:11:36 +0100 (Sat, 13 Feb 2010) | 1 line Bug : it is not possible to change the limit of paiment : Fixed ........ r2946 | danydb | 2010-02-13 14:12:05 +0100 (Sat, 13 Feb 2010) | 1 line remove debug ........ r2947 | danydb | 2010-02-13 14:26:27 +0100 (Sat, 13 Feb 2010) | 2 lines Update Documentation ........ r2948 | danydb | 2010-02-13 17:27:07 +0100 (Sat, 13 Feb 2010) | 1 line Correction bilan belge ........ r2949 | danydb | 2010-02-13 18:07:46 +0100 (Sat, 13 Feb 2010) | 1 line Bug fixed : cannot type a middle of payment ........ r2950 | danydb | 2010-02-13 18:12:49 +0100 (Sat, 13 Feb 2010) | 1 line Fixed Bug: the amount in quant_sold in not rounded ........ r2951 | danydb | 2010-02-13 19:31:17 +0100 (Sat, 13 Feb 2010) | 1 line Add translation for payment ........ r2952 | danydb | 2010-02-13 19:40:32 +0100 (Sat, 13 Feb 2010) | 1 line Fixed Bug cannot add a new account ........ r2953 | danydb | 2010-02-21 20:31:52 +0100 (Sun, 21 Feb 2010) | 1 line Translation completed for english ........ r2954 | danydb | 2010-02-22 23:06:47 +0100 (Mon, 22 Feb 2010) | 9 lines Fix bugs : * Security was not respected, user can write in Readonly ledgers * Cannot modify or delete accounting entry with more than 8 digits * Cannot record information when not VAT * VMSKeytrade failed with ExecSql * ledger creation : cannot save the card on deb side ........ r2955 | danydb | 2010-02-22 23:17:33 +0100 (Mon, 22 Feb 2010) | 3 lines Improve Import bank must be able to import into CASH ........ r2956 | danydb | 2010-02-23 18:16:01 +0100 (Tue, 23 Feb 2010) | 1 line Fix Bug = Feb has 28 days and every 4 years 29 ........ r2957 | danydb | 2010-02-24 21:57:04 +0100 (Wed, 24 Feb 2010) | 3 lines Fix bug : warning messages when phpcompta is installed on windows about the languages ........ r2958 | danydb | 2010-02-25 23:37:40 +0100 (Thu, 25 Feb 2010) | 3 lines Update for windows ........ r2959 | danydb | 2010-02-26 00:29:06 +0100 (Fri, 26 Feb 2010) | 2 lines Fix Bug : cannot give an account to a card ........ r2960 | danydb | 2010-02-28 20:54:32 +0100 (Sun, 28 Feb 2010) | 1 line Bug Return button for IE ........ r2961 | danydb | 2010-02-28 20:54:51 +0100 (Sun, 28 Feb 2010) | 1 line Progress for Dutch translation ........
141 lines
4.1 KiB
PHP
141 lines
4.1 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
|
|
*/
|
|
|
|
/*! \brief this class is the mother class for the CA printing
|
|
*
|
|
*
|
|
*/
|
|
require_once("class_idate.php");
|
|
require_once("class_itext.php");
|
|
require_once("class_ihidden.php");
|
|
require_once("class_iselect.php");
|
|
require_once("class_ibutton.php");
|
|
require_once('class_database.php');
|
|
require_once('debug.php');
|
|
require_once('constant.php');
|
|
require_once('class_dossier.php');
|
|
require_once ('class_anc_plan.php');
|
|
|
|
class Anc_Print {
|
|
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 Anc_Print($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 Anc_Plan($this->db);
|
|
if ( $pa->count() == 0 ) {
|
|
echo '<h2 class="info">'._('Aucun plan défini').'</h2>';
|
|
exit();
|
|
}
|
|
|
|
$from=new IDate('from','from');
|
|
$from->size=10;
|
|
$from->value=$this->from;
|
|
|
|
$to=new IDate('to','to');
|
|
$to->value=$this->to;
|
|
$to->size=10;
|
|
|
|
$from_poste=new IText('from_poste','from_poste');
|
|
$from_poste->size=10;
|
|
$from_poste->value=$this->from_poste;
|
|
|
|
$to_poste=new IText('to_poste','to_poste');
|
|
$to_poste->value=$this->to_poste;
|
|
$to_poste->size=10;
|
|
|
|
$hidden=new IHidden();
|
|
$r=dossier::hidden();
|
|
$r.=$hidden->input("result","1");
|
|
$r.="Depuis : ".$from->input();
|
|
$r.= "jusque : ".$to->input();
|
|
$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 Anc_Plan($this->db);
|
|
$plan_id=new ISelect("pa_id");
|
|
$plan_id->value=$this->db->make_array("select pa_id, pa_name from plan_analytique order by pa_name");
|
|
$plan_id->selected=$this->pa_id;
|
|
$r.=_( "Plan Analytique :").$plan_id->input();
|
|
|
|
$poste=new IText();
|
|
$poste->size=10;
|
|
$r.=_("Entre le poste ").$poste->input("from_poste",$this->from_poste);
|
|
$choose=new IButton();
|
|
$choose->name=_("Choix Poste");
|
|
$choose->label=_("Recherche");
|
|
$choose->javascript="onClick=search_ca('".$_REQUEST['PHPSESSID']."',".dossier::id().",'from_poste','pa_id')";
|
|
$r.=$choose->input();
|
|
|
|
$r.=_(" et le poste ").$poste->input("to_poste",$this->to_poste);
|
|
$choose->javascript="onClick=search_ca('".$_REQUEST['PHPSESSID']."',".dossier::id().",'to_poste','pa_id')";
|
|
$r.=$choose->input();
|
|
$r.='<span class="notice" style="display:block">'._('Selectionnez le plan qui vous intéresse avant de cliquer sur Recherche').'</span>';
|
|
|
|
$r.='</span>';
|
|
return $r;
|
|
}
|
|
}
|