2
0
forked from Wavyzz/dolibarr
Files
dolibarr-fork/htdocs/compta/facture/stats/facturestats.class.php
2004-02-01 00:55:46 +00:00

99 lines
2.5 KiB
PHP

<?PHP
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
*
* This program 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.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Id$
* $Source$
*
*/
include_once DOL_DOCUMENT_ROOT . "/stats.class.php";
class FactureStats extends Stats
{
var $db ;
Function FactureStats($DB, $socidp=0)
{
$this->db = $DB;
$this->socidp = $socidp;
}
/**
* Renvoie le nombre de facture par mois pour une année donnée
*
*/
Function getNbByMonth($year)
{
$sql = "SELECT date_format(datef,'%m') as dm, count(*) FROM ".MAIN_DB_PREFIX."facture";
$sql .= " WHERE date_format(datef,'%Y') = $year AND fk_statut > 0";
if ($this->socidp)
{
$sql .= " AND fk_soc = ".$this->socidp;
}
$sql .= " GROUP BY dm DESC";
return $this->_getNbByMonth($year, $sql);
}
/**
* Renvoie le nombre de facture par année
*
*/
Function getNbByYear()
{
$sql = "SELECT date_format(datef,'%Y') as dm, count(*) FROM ".MAIN_DB_PREFIX."facture GROUP BY dm DESC WHERE fk_statut > 0";
return $this->_getNbByYear($sql);
}
/**
* Renvoie le nombre de facture par mois pour une année donnée
*
*/
Function getAmountByMonth($year)
{
$sql = "SELECT date_format(datef,'%m') as dm, sum(total) FROM ".MAIN_DB_PREFIX."facture";
$sql .= " WHERE date_format(datef,'%Y') = $year AND fk_statut > 0";
if ($this->socidp)
{
$sql .= " AND fk_soc = ".$this->socidp;
}
$sql .= " GROUP BY dm DESC";
return $this->_getAmountByMonth($year, $sql);
}
/**
*
*
*/
Function getAverageByMonth($year)
{
$sql = "SELECT date_format(datef,'%m') as dm, avg(total) FROM ".MAIN_DB_PREFIX."facture";
$sql .= " WHERE date_format(datef,'%Y') = $year AND fk_statut > 0";
if ($this->socidp)
{
$sql .= " AND fk_soc = ".$this->socidp;
}
$sql .= " GROUP BY dm DESC";
return $this->_getAverageByMonth($year, $sql);
}
}
?>