mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-06 09:38:23 +01:00
298 lines
12 KiB
PHP
298 lines
12 KiB
PHP
<?php
|
|
/* Copyright (C) 2012 Charles-François BENKE <charles.fr@benke.fr>
|
|
* Copyright (C) 2005-2013 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
*
|
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/core/boxes/box_activity.php
|
|
* \ingroup societes
|
|
* \brief Module to show box of bills, orders & propal of the current year
|
|
*/
|
|
|
|
include_once DOL_DOCUMENT_ROOT.'/core/boxes/modules_boxes.php';
|
|
|
|
/**
|
|
* Class to manage the box of customer activity (invoice, order, proposal)
|
|
*/
|
|
class box_activity extends ModeleBoxes
|
|
{
|
|
var $boxcode="activity";
|
|
var $boximg="object_bill";
|
|
var $boxlabel='BoxGlobalActivity';
|
|
var $depends = array("facture");
|
|
|
|
var $db;
|
|
var $param;
|
|
var $enabled = 1;
|
|
|
|
var $info_box_head = array();
|
|
var $info_box_contents = array();
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
function __construct($db)
|
|
{
|
|
$this->db = $db;
|
|
|
|
$this->enabled = 1;
|
|
// FIXME: Use a cache to save data because this slow down too much main home page. This box slow down too seriously software.
|
|
// FIXME: Removed number_format (not compatible with all languages)
|
|
// FIXME: Pb into some status
|
|
}
|
|
|
|
/**
|
|
* Charge les donnees en memoire pour affichage ulterieur
|
|
*
|
|
* @param int $max Maximum number of records to load
|
|
* @return void
|
|
*/
|
|
function loadBox($max=5)
|
|
{
|
|
global $conf, $user, $langs, $db;
|
|
|
|
$totalMnt = 0;
|
|
$totalnb = 0;
|
|
|
|
include_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
|
|
|
|
$nbofyears=2;
|
|
if (! empty($conf->global->MAIN_BOX_ACTIVITY_DURATION)) $nbofyears=$conf->global->MAIN_BOX_ACTIVITY_DURATION;
|
|
$textHead = $langs->trans("Activity").' ('.$nbofyears.' '.$langs->trans("DurationYears").')';
|
|
$this->info_box_head = array('text' => $textHead, 'limit'=> dol_strlen($textHead));
|
|
|
|
// compute the year limit to show
|
|
$tmpdate= dol_time_plus_duree(dol_now(), -1*$nbofyears, "y");
|
|
|
|
// list the summary of the bills
|
|
if (! empty($conf->facture->enabled) && $user->rights->facture->lire)
|
|
{
|
|
include_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
|
|
$facturestatic=new Facture($db);
|
|
|
|
$sql = "SELECT f.fk_statut, SUM(f.total_ttc) as Mnttot, COUNT(*) as nb";
|
|
$sql.= " FROM (".MAIN_DB_PREFIX."societe as s,".MAIN_DB_PREFIX."facture as f";
|
|
if (!$user->rights->societe->client->voir && !$user->societe_id) $sql.= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
|
|
$sql.= ")";
|
|
$sql.= " WHERE f.entity = ".$conf->entity;
|
|
if (!$user->rights->societe->client->voir && !$user->societe_id) $sql.= " AND s.rowid = sc.fk_soc AND sc.fk_user = " .$user->id;
|
|
if($user->societe_id) $sql.= " AND s.rowid = ".$user->societe_id;
|
|
$sql.= " AND f.fk_soc = s.rowid";
|
|
$sql.= " AND f.datef >= '".$db->idate($tmpdate)."' AND paye=1";
|
|
$sql.= " GROUP BY f.fk_statut";
|
|
$sql.= " ORDER BY f.fk_statut DESC";
|
|
|
|
$result = $db->query($sql);
|
|
if ($result)
|
|
{
|
|
$num = $db->num_rows($result);
|
|
$i = 0;
|
|
while ($i < $num)
|
|
{
|
|
$this->info_box_contents[$i][0] = array('td' => 'align="left" width="16"', 'logo' => 'bill');
|
|
$objp = $db->fetch_object($result);
|
|
|
|
$this->info_box_contents[$i][1] = array('td' => 'align="left"', 'text' => $langs->trans("Bills")." ".$facturestatic->LibStatut(1,$objp->fk_statut,0)." ".$objp->annee);
|
|
$billurl="viewstatut=2&paye=1&year=".$objp->annee;
|
|
|
|
$this->info_box_contents[$i][2] = array('td' => 'align="right"',
|
|
'text' => $objp->nb, 'url' => DOL_URL_ROOT."/compta/facture/liste.php?".$billurl."&mainmenu=accountancy&leftmenu=customers_bills"
|
|
);
|
|
|
|
$this->info_box_contents[$i][3] = array('td' => 'align="right"',
|
|
'text' => dol_trunc(number_format($objp->Mnttot, 0, ',', ' '),40)." ".$langs->getCurrencySymbol($conf->currency)
|
|
);
|
|
|
|
// We add only for the current year
|
|
if ($objp->annee == date("Y"))
|
|
{
|
|
$totalnb += $objp->nb;
|
|
$totalMnt += $objp->Mnttot;
|
|
}
|
|
$this->info_box_contents[$i][4] = array('td' => 'align="right" width="18"', 'text' => $facturestatic->LibStatut(1,$objp->fk_statut,3) );
|
|
$i++;
|
|
}
|
|
if ($num==0) $this->info_box_contents[$i][0] = array('td' => 'align="center"','text'=>$langs->trans("NoRecordedInvoices"));
|
|
}
|
|
else dol_print_error($db);
|
|
|
|
$sql = "SELECT f.fk_statut, SUM(f.total_ttc) as Mnttot, COUNT(*) as nb";
|
|
$sql.= " FROM ".MAIN_DB_PREFIX."societe as s,".MAIN_DB_PREFIX."facture as f";
|
|
$sql.= " WHERE f.entity = ".$conf->entity;
|
|
$sql.= " AND f.fk_soc = s.rowid";
|
|
$sql.= " AND paye=0";
|
|
$sql.= " GROUP BY f.fk_statut";
|
|
$sql.= " ORDER BY f.fk_statut DESC";
|
|
|
|
$result = $db->query($sql);
|
|
if ($result)
|
|
{
|
|
$num = $db->num_rows($result)+$i;
|
|
$now=dol_now();
|
|
|
|
while ($i < $num)
|
|
{
|
|
$this->info_box_contents[$i][0] = array('td' => 'align="left" width="16"',
|
|
'logo' => 'bill');
|
|
$objp = $db->fetch_object($result);
|
|
|
|
$this->info_box_contents[$i][1] = array('td' => 'align="left"',
|
|
'text' => $langs->trans("Bills")." ".$facturestatic->LibStatut(0,$objp->fk_statut,0));
|
|
|
|
$billurl="viewstatut=".$objp->fk_statut."&paye=0";
|
|
$this->info_box_contents[$i][2] = array('td' => 'align="right"',
|
|
'text' => $objp->nb, 'url' => DOL_URL_ROOT."/compta/facture/list.php?".$billurl."&mainmenu=accountancy&leftmenu=customers_bills"
|
|
);
|
|
$totalnb += $objp->nb;
|
|
$this->info_box_contents[$i][3] = array('td' => 'align="right"',
|
|
'text' => dol_trunc(number_format($objp->Mnttot, 0, ',', ' '),40)." ".$langs->getCurrencySymbol($conf->currency)
|
|
);
|
|
$totalMnt += $objp->Mnttot;
|
|
$this->info_box_contents[$i][4] = array('td' => 'align="right" width="18"',
|
|
'text' => $facturestatic->LibStatut(0,$objp->fk_statut,3)
|
|
);
|
|
$i++;
|
|
}
|
|
if ($num==0) $this->info_box_contents[$i][0] = array('td' => 'align="center"','text'=>$langs->trans("NoRecordedInvoices"));
|
|
} else {
|
|
$this->info_box_contents[0][0] = array( 'td' => 'align="left"', 'maxlength'=>500, 'text' => ($db->error().' sql='.$sql));
|
|
}
|
|
}
|
|
|
|
// list the summary of the orders
|
|
if (! empty($conf->commande->enabled) && $user->rights->commande->lire)
|
|
{
|
|
include_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php';
|
|
$commandestatic=new Commande($db);
|
|
|
|
$sql = "SELECT c.fk_statut, sum(c.total_ttc) as Mnttot, count(*) as nb";
|
|
$sql.= " FROM (".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."commande as c";
|
|
if (!$user->rights->societe->client->voir && !$user->societe_id) $sql.= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
|
|
$sql.= ")";
|
|
$sql.= " WHERE c.entity = ".$conf->entity;
|
|
$sql.= " AND c.fk_soc = s.rowid";
|
|
if (!$user->rights->societe->client->voir && !$user->societe_id) $sql.= " AND s.rowid = sc.fk_soc AND sc.fk_user = " .$user->id;
|
|
if($user->societe_id) $sql.= " AND s.rowid = ".$user->societe_id;
|
|
$sql.= " AND c.date_commande >= '".$db->idate($tmpdate)."'";
|
|
$sql.= " AND c.facture=0";
|
|
$sql.= " GROUP BY c.fk_statut";
|
|
$sql.= " ORDER BY c.fk_statut DESC";
|
|
|
|
$result = $db->query($sql);
|
|
|
|
if ($result)
|
|
{
|
|
$num = $db->num_rows($result)+$i;
|
|
while ($i < $num)
|
|
{
|
|
$this->info_box_contents[$i][0] = array('td' => 'align="left" width="16"','logo' => 'object_order');
|
|
|
|
$objp = $db->fetch_object($result);
|
|
$this->info_box_contents[$i][1] = array('td' => 'align="left"',
|
|
'text' =>$langs->trans("Orders")." ".$commandestatic->LibStatut($objp->fk_statut,0,0)
|
|
);
|
|
|
|
$this->info_box_contents[$i][2] = array('td' => 'align="right"',
|
|
'text' => $objp->nb,
|
|
'url' => DOL_URL_ROOT."/commande/liste.php?mainmenu=commercial&leftmenu=orders&viewstatut=".$objp->fk_statut
|
|
);
|
|
$totalnb += $objp->nb;
|
|
|
|
$this->info_box_contents[$i][3] = array('td' => 'align="right"',
|
|
'text' => dol_trunc(number_format($objp->Mnttot, 0, ',', ' '),40)." ".$langs->getCurrencySymbol($conf->currency)
|
|
);
|
|
$totalMnt += $objp->Mnttot;
|
|
$this->info_box_contents[$i][4] = array('td' => 'align="right" width="18"', 'text' => $commandestatic->LibStatut($objp->fk_statut,0,3));
|
|
|
|
$i++;
|
|
}
|
|
}
|
|
else dol_print_error($db);
|
|
}
|
|
|
|
// list the summary of the propals
|
|
if (! empty($conf->propal->enabled) && $user->rights->propal->lire)
|
|
{
|
|
include_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
|
|
$propalstatic=new Propal($db);
|
|
|
|
$sql = "SELECT p.fk_statut, SUM(p.total) as Mnttot, COUNT(*) as nb";
|
|
$sql.= " FROM (".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."propal as p";
|
|
if (!$user->rights->societe->client->voir && !$user->societe_id) $sql.= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
|
|
$sql.= ")";
|
|
$sql.= " WHERE p.entity = ".$conf->entity;
|
|
$sql.= " AND p.fk_soc = s.rowid";
|
|
if (!$user->rights->societe->client->voir && !$user->societe_id) $sql.= " AND s.rowid = sc.fk_soc AND sc.fk_user = " .$user->id;
|
|
if($user->societe_id) $sql.= " AND s.rowid = ".$user->societe_id;
|
|
$sql.= " AND p.datep >= '".$db->idate($tmpdate)."'";
|
|
$sql.= " AND p.date_cloture IS NULL"; // just unclosed
|
|
$sql.= " GROUP BY p.fk_statut";
|
|
$sql.= " ORDER BY p.fk_statut DESC";
|
|
|
|
$result = $db->query($sql);
|
|
|
|
if ($result)
|
|
{
|
|
$num = $db->num_rows($result)+$i;
|
|
while ($i < $num)
|
|
{
|
|
$this->info_box_contents[$i][0] = array('td' => 'align="left" width="16"','logo' => 'object_propal');
|
|
|
|
$objp = $db->fetch_object($result);
|
|
$this->info_box_contents[$i][1] = array('td' => 'align="left"',
|
|
'text' =>$langs->trans("Proposals")." ".$propalstatic->LibStatut($objp->fk_statut,0)
|
|
);
|
|
|
|
$this->info_box_contents[$i][2] = array('td' => 'align="right"',
|
|
'text' => $objp->nb,
|
|
'url' => DOL_URL_ROOT."/comm/propal/list.php?mainmenu=commercial&leftmenu=propals&viewstatut=".$objp->fk_statut
|
|
);
|
|
$totalnb += $objp->nb;
|
|
|
|
$this->info_box_contents[$i][3] = array('td' => 'align="right"',
|
|
'text' => dol_trunc(number_format($objp->Mnttot, 0, ',', ' '),40)." ".$langs->getCurrencySymbol($conf->currency)
|
|
);
|
|
$totalMnt += $objp->Mnttot;
|
|
$this->info_box_contents[$i][4] = array('td' => 'align="right" width="18"', 'text' => $propalstatic->LibStatut($objp->fk_statut,3));
|
|
|
|
$i++;
|
|
}
|
|
}
|
|
else dol_print_error($db);
|
|
}
|
|
|
|
// Add the sum in the bottom of the boxes
|
|
$this->info_box_contents[$i][1] = array('td' => 'align="left" ', 'text' => $langs->trans("Total")." ".$textHead);
|
|
$this->info_box_contents[$i][2] = array('td' => 'align="right" ', 'text' => number_format($totalnb, 0, ',', ' '));
|
|
$this->info_box_contents[$i][3] = array('td' => 'align="right" ', 'text' => number_format($totalMnt, 0, ',', ' ')." ".$langs->getCurrencySymbol($conf->currency));
|
|
$this->info_box_contents[$i][4] = array('td' => 'align="right" ', 'text' => "");
|
|
$this->info_box_contents[$i][5] = array('td' => 'align="right"', 'text' => "");
|
|
}
|
|
|
|
/**
|
|
* Method to show box
|
|
*
|
|
* @param array $head Array with properties of box title
|
|
* @param array $contents Array with properties of box lines
|
|
* @return void
|
|
*/
|
|
function showBox($head = null, $contents = null)
|
|
{
|
|
parent::showBox($this->info_box_head, $this->info_box_contents);
|
|
}
|
|
}
|
|
?>
|