if($mode=='customer')$this->where.=" AND (fk_statut != 3 OR close_code != 'replaced')";// Exclude replaced invoices as they are duplicated (we count closed invoices for other reasons)
if($this->socid)
{
$this->where.=" AND fk_soc = ".$this->socid;
}
}
/**
* \brief Renvoie le nombre de facture par annee
* \return array Array of values
*/
functiongetNbByYear()
{
$sql="SELECT YEAR(datef) as dm, count(*)";
$sql.=" FROM ".$this->from;
$sql.=" GROUP BY dm DESC";
$sql.=" WHERE ".$this->where;
return$this->_getNbByYear($sql);
}
/**
* \brief Renvoie le nombre de facture par mois pour une annee donnee
* \param year Year to scan
* \return array Array of values
*/
functiongetNbByMonth($year)
{
$sql="SELECT MONTH(datef) as dm, count(*)";
$sql.=" FROM ".$this->from;
$sql.=" WHERE YEAR(datef) = ".$year;
$sql.=" AND ".$this->where;
$sql.=" GROUP BY dm DESC";
$res=$this->_getNbByMonth($year,$sql);
//var_dump($res);print '<br>';
return$res;
}
/**
* \brief Renvoie le montant de facture par mois pour une annee donnee
* \param year Year to scan
* \return array Array of values
*/
functiongetAmountByMonth($year)
{
$sql="SELECT date_format(datef,'%m') as dm, sum(".$this->field.")";
$sql.=" FROM ".$this->from;
$sql.=" WHERE date_format(datef,'%Y') = ".$year;
$sql.=" AND ".$this->where;
$sql.=" GROUP BY dm DESC";
$res=$this->_getAmountByMonth($year,$sql);
//var_dump($res);print '<br>';
return$res;
}
/**
* \brief Return average amount
* \param year Year to scan
* \return array Array of values
*/
functiongetAverageByMonth($year)
{
$sql="SELECT date_format(datef,'%m') as dm, avg(".$this->field.")";
$sql.=" FROM ".$this->from;
$sql.=" WHERE date_format(datef,'%Y') = ".$year;
$sql.=" AND ".$this->where;
$sql.=" GROUP BY dm DESC";
return$this->_getAverageByMonth($year,$sql);
}
/**
* \brief Return nb, total and average
* \return array Array of values
*/
functiongetAllByYear()
{
$sql="SELECT date_format(datef,'%Y') as year, count(*) as nb, sum(".$this->field.") as total, avg(".$this->field.") as avg";