Files
dolibarr/htdocs/comm/propal/stats/propalestats.class.php
opensides 4f5f89f228 changement de <?PHPen <?php
suivra l'indentation correcte du code ;-)
2004-10-19 20:19:58 +00:00

85 lines
2.3 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 PropaleStats extends Stats
{
var $db ;
function PropaleStats($DB)
{
$this->db = $DB;
}
/**
* Renvoie le nombre de proposition par mois pour une année donnée
*
*/
function getNbByMonth($year)
{
$sql = "SELECT date_format(datep,'%m') as dm, count(*) FROM ".MAIN_DB_PREFIX."propal";
$sql .= " WHERE date_format(datep,'%Y') = $year AND fk_statut > 0";
$sql .= " GROUP BY dm DESC";
return $this->_getNbByMonth($year, $sql);
}
/**
* Renvoie le nombre de propale par année
*
*/
function getNbByYear()
{
$sql = "SELECT date_format(datep,'%Y') as dm, count(*) FROM ".MAIN_DB_PREFIX."propal GROUP BY dm DESC WHERE fk_statut > 0";
return $this->_getNbByYear($sql);
}
/**
* Renvoie le nombre de propale par mois pour une année donnée
*
*/
function getAmountByMonth($year)
{
$sql = "SELECT date_format(datep,'%m') as dm, sum(price) FROM ".MAIN_DB_PREFIX."propal";
$sql .= " WHERE date_format(datep,'%Y') = $year AND fk_statut > 0";
$sql .= " GROUP BY dm DESC";
return $this->_getAmountByMonth($year, $sql);
}
/**
*
*
*/
function getAverageByMonth($year)
{
$sql = "SELECT date_format(datep,'%m') as dm, avg(price) FROM ".MAIN_DB_PREFIX."propal";
$sql .= " WHERE date_format(datep,'%Y') = $year AND fk_statut > 0";
$sql .= " GROUP BY dm DESC";
return $this->_getAverageByMonth($year, $sql);
}
}
?>