altocompta/include/class/anc_acc_link.class.php
2021-11-07 21:47:20 +01:00

67 lines
1.8 KiB
PHP

<?php
/*
* This file is part of NOALYSS.
*
* NOALYSS 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.
*
* NOALYSS 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 NOALYSS; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
// Copyright Author Dany De Bontridder danydb@aevalys.eu
/*!
* \file
* \brief link between accountancy and analytic, like table but as a listing
*/
/*!
* \class Anc_Acc_Link
* \brief link between accountancy and analytic, like table but as a listing
*/
class Anc_Acc_Link extends Anc_Print
{
function __contruct($p_cn)
{
parent::__construct($p_cn);
//@todo to remove = useless since the parent has a database object $db
$this->cn=$p_cn;
}
/**
*@brief get the parameters
*/
function get_request()
{
parent::get_request();
$http=new HttpInput();
$this->card_poste=$http->get('card_poste',"string",1);
}
function set_sql_filter()
{
$sql="";
$and=" and ";
if ( $this->from != "" && $this->from=isDate($this->from) )
{
$sql.="$and oa_date >= to_date('".$this->from."','DD.MM.YYYY')";
}
if ( $this->to != "" && $this->to=isDate($this->to))
{
$sql.=" $and oa_date <= to_date('".$this->to."','DD.MM.YYYY')";
}
return $sql;
}
}