mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-05 17:18:13 +01:00
245 lines
7.1 KiB
PHP
245 lines
7.1 KiB
PHP
<?php
|
|
/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2004-2015 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
|
|
*
|
|
* 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/don/index.php
|
|
* \ingroup donations
|
|
* \brief Home page of donation module
|
|
*/
|
|
|
|
require '../main.inc.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/don/class/don.class.php';
|
|
|
|
$langs->load("donations");
|
|
|
|
// Security check
|
|
$result = restrictedArea($user, 'don');
|
|
|
|
$donation_static=new Don($db);
|
|
|
|
|
|
/*
|
|
* Actions
|
|
*/
|
|
|
|
// None
|
|
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
$donstatic=new Don($db);
|
|
|
|
$help_url='EN:Module_Donations|FR:Module_Dons|ES:Módulo_Donaciones';
|
|
llxHeader('', $langs->trans("Donations"), $help_url);
|
|
|
|
$nb=array();
|
|
$somme=array();
|
|
$total = 0;
|
|
|
|
$sql = "SELECT count(d.rowid) as nb, sum(d.amount) as somme , d.fk_statut";
|
|
$sql.= " FROM ".MAIN_DB_PREFIX."don as d WHERE d.entity IN (".getEntity('donation').")";
|
|
$sql.= " GROUP BY d.fk_statut";
|
|
$sql.= " ORDER BY d.fk_statut";
|
|
|
|
$result = $db->query($sql);
|
|
if ($result)
|
|
{
|
|
$i = 0;
|
|
$num = $db->num_rows($result);
|
|
while ($i < $num)
|
|
{
|
|
$objp = $db->fetch_object($result);
|
|
|
|
$somme[$objp->fk_statut] = $objp->somme;
|
|
$nb[$objp->fk_statut] = $objp->nb;
|
|
$total += $objp->somme;
|
|
|
|
$i++;
|
|
}
|
|
$db->free($result);
|
|
} else {
|
|
dol_print_error($db);
|
|
}
|
|
|
|
print load_fiche_titre($langs->trans("DonationsArea"));
|
|
|
|
|
|
print '<div class="fichecenter"><div class="fichethirdleft">';
|
|
|
|
if (! empty($conf->global->MAIN_SEARCH_FORM_ON_HOME_AREAS)) // This is useless due to the global search combo
|
|
{
|
|
if (! empty($conf->don->enabled) && $user->rights->don->lire)
|
|
{
|
|
$listofsearchfields['search_donation']=array('text'=>'Donation');
|
|
}
|
|
|
|
if (count($listofsearchfields))
|
|
{
|
|
print '<form method="post" action="'.DOL_URL_ROOT.'/core/search.php">';
|
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
|
print '<table class="noborder nohover centpercent">';
|
|
$i=0;
|
|
foreach($listofsearchfields as $key => $value)
|
|
{
|
|
if ($i == 0) print '<tr class="liste_titre"><td colspan="3">'.$langs->trans("Search").'</td></tr>';
|
|
print '<tr '.$bc[false].'>';
|
|
print '<td class="nowrap"><label for="'.$key.'">'.$langs->trans($value["text"]).'</label></td><td><input type="text" class="flat inputsearch" name="'.$key.'" id="'.$key.'"></td>';
|
|
if ($i == 0) print '<td rowspan="'.count($listofsearchfields).'"><input type="submit" value="'.$langs->trans("Search").'" class="button"></td>';
|
|
print '</tr>';
|
|
$i++;
|
|
}
|
|
print '</table>';
|
|
print '</form>';
|
|
print '<br>';
|
|
}
|
|
}
|
|
|
|
|
|
print '<table class="noborder nohover" width="100%">';
|
|
print '<tr class="liste_titre">';
|
|
print '<th colspan="4">'.$langs->trans("Statistics").'</th>';
|
|
print "</tr>\n";
|
|
|
|
$listofstatus=array(0,1,-1,2);
|
|
foreach ($listofstatus as $status)
|
|
{
|
|
$dataseries[]=array($donstatic->LibStatut($status, 1), (isset($nb[$status])?(int) $nb[$status]:0));
|
|
}
|
|
|
|
if ($conf->use_javascript_ajax)
|
|
{
|
|
print '<tr><td class="center" colspan="4">';
|
|
|
|
include_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php';
|
|
$dolgraph = new DolGraph();
|
|
$dolgraph->SetData($dataseries);
|
|
$dolgraph->setShowLegend(1);
|
|
$dolgraph->setShowPercent(1);
|
|
$dolgraph->SetType(array('pie'));
|
|
$dolgraph->setWidth('100%');
|
|
$dolgraph->draw('idgraphstatus');
|
|
print $dolgraph->show($total?0:1);
|
|
|
|
print '</td></tr>';
|
|
}
|
|
|
|
print '<tr class="liste_titre">';
|
|
print '<td>'.$langs->trans("Status").'</td>';
|
|
print '<td class="right">'.$langs->trans("Number").'</td>';
|
|
print '<td class="right">'.$langs->trans("Total").'</td>';
|
|
print '<td class="right">'.$langs->trans("Average").'</td>';
|
|
print '</tr>';
|
|
|
|
$total=0;
|
|
$totalnb=0;
|
|
foreach ($listofstatus as $status)
|
|
{
|
|
|
|
print '<tr class="oddeven">';
|
|
print '<td><a href="list.php?statut='.$status.'">'.$donstatic->LibStatut($status, 4).'</a></td>';
|
|
print '<td class="right">'.(! empty($nb[$status])?$nb[$status]:' ').'</td>';
|
|
print '<td class="right">'.(! empty($nb[$status])?price($somme[$status], 'MT'):' ').'</td>';
|
|
print '<td class="right">'.(! empty($nb[$status])?price(price2num($somme[$status]/$nb[$status], 'MT')):' ').'</td>';
|
|
$totalnb += (! empty($nb[$status])?$nb[$status]:0);
|
|
$total += (! empty($somme[$status])?$somme[$status]:0);
|
|
print "</tr>";
|
|
}
|
|
|
|
print '<tr class="liste_total">';
|
|
print '<td>'.$langs->trans("Total").'</td>';
|
|
print '<td class="right">'.$totalnb.'</td>';
|
|
print '<td class="right">'.price($total, 'MT').'</td>';
|
|
print '<td class="right">'.($totalnb?price(price2num($total/$totalnb, 'MT')):' ').'</td>';
|
|
print '</tr>';
|
|
print "</table>";
|
|
|
|
|
|
print '</div><div class="fichetwothirdright"><div class="ficheaddleft">';
|
|
|
|
|
|
$max=10;
|
|
|
|
/*
|
|
* Last modified donations
|
|
*/
|
|
|
|
$sql = "SELECT c.rowid, c.ref, c.fk_statut, c.societe, c.lastname, c.firstname, c.tms as datem, c.amount";
|
|
$sql.= " FROM ".MAIN_DB_PREFIX."don as c";
|
|
$sql.= " WHERE c.entity = ".$conf->entity;
|
|
//$sql.= " AND c.fk_statut > 2";
|
|
$sql.= " ORDER BY c.tms DESC";
|
|
$sql.= $db->plimit($max, 0);
|
|
|
|
$resql=$db->query($sql);
|
|
if ($resql)
|
|
{
|
|
print '<table class="noborder" width="100%">';
|
|
print '<tr class="liste_titre">';
|
|
print '<th colspan="5">'.$langs->trans("LastModifiedDonations", $max).'</th></tr>';
|
|
|
|
$num = $db->num_rows($resql);
|
|
if ($num)
|
|
{
|
|
$i = 0;
|
|
while ($i < $num)
|
|
{
|
|
$obj = $db->fetch_object($resql);
|
|
|
|
print '<tr class="oddeven">';
|
|
|
|
$donation_static->id=$obj->rowid;
|
|
$donation_static->ref=$obj->ref?$obj->ref:$obj->rowid;
|
|
|
|
print '<td width="96" class="nobordernopadding nowrap">';
|
|
print $donation_static->getNomUrl(1);
|
|
print '</td>';
|
|
|
|
print '<td class="nobordernopadding">';
|
|
print $obj->societe;
|
|
print ($obj->societe && ($obj->lastname || $obj->firstname)?' / ':'');
|
|
print dolGetFirstLastname($obj->lastname, $obj->firstname);
|
|
print '</td>';
|
|
|
|
print '<td class="right nobordernopadding">';
|
|
print price($obj->amount, 1);
|
|
print '</td>';
|
|
|
|
// Date
|
|
print '<td class="center">'.dol_print_date($db->jdate($obj->datem), 'day').'</td>';
|
|
|
|
print '<td class="right">'.$donation_static->LibStatut($obj->fk_statut, 5).'</td>';
|
|
|
|
print '</tr>';
|
|
$i++;
|
|
}
|
|
}
|
|
print "</table><br>";
|
|
}
|
|
else dol_print_error($db);
|
|
|
|
|
|
print '</div></div></div>';
|
|
|
|
|
|
llxFooter();
|
|
|
|
$db->close();
|