123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- <?php
- /* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2004-2015 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2004 Eric Seigne <eric.seigne@ryxeo.com>
- * Copyright (C) 2005-2011 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 <https://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/compta/deplacement/index.php
- * \brief Page list of expenses
- */
- require '../../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/compta/tva/class/tva.class.php';
- require_once DOL_DOCUMENT_ROOT.'/compta/deplacement/class/deplacement.class.php';
- // Load translation files required by the page
- $langs->loadLangs(array('companies', 'users', 'trips'));
- // Security check
- $socid = GETPOST('socid', 'int');
- if ($user->socid) {
- $socid = $user->socid;
- }
- $result = restrictedArea($user, 'deplacement', '', '');
- $limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit;
- $sortfield = GETPOST('sortfield', 'aZ09comma');
- $sortorder = GETPOST('sortorder', 'aZ09comma');
- $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
- if (empty($page) || $page == -1) {
- $page = 0;
- } // If $page is not defined, or '' or -1
- $offset = $limit * $page;
- $pageprev = $page - 1;
- $pagenext = $page + 1;
- if (!$sortorder) {
- $sortorder = "DESC";
- }
- if (!$sortfield) {
- $sortfield = "d.dated";
- }
- $limit = GETPOST('limit', 'int') ?GETPOST('limit', 'int') : $conf->liste_limit;
- /*
- * View
- */
- $tripandexpense_static = new Deplacement($db);
- $childids = $user->getAllChildIds();
- $childids[] = $user->id;
- //$help_url='EN:Module_Donations|FR:Module_Dons|ES:Módulo_Donaciones';
- $help_url = '';
- llxHeader('', $langs->trans("ListOfFees"), $help_url);
- $totalnb = 0;
- $sql = "SELECT count(d.rowid) as nb, sum(d.km) as km, d.type";
- $sql .= " FROM ".MAIN_DB_PREFIX."deplacement as d";
- $sql .= " WHERE d.entity = ".$conf->entity;
- if (empty($user->rights->deplacement->readall) && empty($user->rights->deplacement->lire_tous)) {
- $sql .= ' AND d.fk_user IN ('.$db->sanitize(join(',', $childids)).')';
- }
- $sql .= " GROUP BY d.type";
- $sql .= " ORDER BY d.type";
- $result = $db->query($sql);
- if ($result) {
- $num = $db->num_rows($result);
- $i = 0;
- while ($i < $num) {
- $objp = $db->fetch_object($result);
- $somme[$objp->type] = $objp->km;
- $nb[$objp->type] = $objp->nb;
- $totalnb += $objp->nb;
- $i++;
- }
- $db->free($result);
- } else {
- dol_print_error($db);
- }
- print load_fiche_titre($langs->trans("ExpensesArea"));
- print '<div class="fichecenter"><div class="fichethirdleft">';
- // Statistics
- print '<table class="noborder nohover centpercent">';
- print '<tr class="liste_titre">';
- print '<td colspan="4">'.$langs->trans("Statistics").'</td>';
- print "</tr>\n";
- $listoftype = $tripandexpense_static->listOfTypes();
- foreach ($listoftype as $code => $label) {
- $dataseries[] = array($label, (isset($nb[$code]) ? (int) $nb[$code] : 0));
- }
- if ($conf->use_javascript_ajax) {
- print '<tr><td align="center" colspan="4">';
- include_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php';
- $dolgraph = new DolGraph();
- $dolgraph->SetData($dataseries);
- $dolgraph->setShowLegend(2);
- $dolgraph->setShowPercent(1);
- $dolgraph->SetType(array('pie'));
- $dolgraph->setHeight('200');
- $dolgraph->draw('idgraphstatus');
- print $dolgraph->show($totalnb ? 0 : 1);
- print '</td></tr>';
- }
- print '<tr class="liste_total">';
- print '<td>'.$langs->trans("Total").'</td>';
- print '<td class="right">'.$totalnb.'</td>';
- print '</tr>';
- print '</table>';
- print '</div><div class="fichetwothirdright">';
- $max = 10;
- $langs->load("boxes");
- $sql = "SELECT u.rowid as uid, u.lastname, u.firstname, d.rowid, d.dated as date, d.tms as dm, d.km, d.fk_statut";
- $sql .= " FROM ".MAIN_DB_PREFIX."deplacement as d, ".MAIN_DB_PREFIX."user as u";
- if (empty($user->rights->societe->client->voir) && !$user->socid) {
- $sql .= ", ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."societe_commerciaux as sc";
- }
- $sql .= " WHERE u.rowid = d.fk_user";
- $sql .= " AND d.entity = ".$conf->entity;
- if (empty($user->rights->deplacement->readall) && empty($user->rights->deplacement->lire_tous)) {
- $sql .= ' AND d.fk_user IN ('.$db->sanitize(join(',', $childids)).')';
- }
- if (empty($user->rights->societe->client->voir) && !$user->socid) {
- $sql .= " AND d.fk_soc = s. rowid AND s.rowid = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
- }
- if ($socid) {
- $sql .= " AND d.fk_soc = ".((int) $socid);
- }
- $sql .= $db->order("d.tms", "DESC");
- $sql .= $db->plimit($max, 0);
- $result = $db->query($sql);
- if ($result) {
- $var = false;
- $num = $db->num_rows($result);
- $i = 0;
- print '<table class="noborder centpercent">';
- print '<tr class="liste_titre">';
- print '<td colspan="2">'.$langs->trans("BoxTitleLastModifiedExpenses", min($max, $num)).'</td>';
- print '<td class="right">'.$langs->trans("FeesKilometersOrAmout").'</td>';
- print '<td class="right">'.$langs->trans("DateModificationShort").'</td>';
- print '<td width="16"> </td>';
- print '</tr>';
- if ($num) {
- $total_ttc = $totalam = $total = 0;
- $deplacementstatic = new Deplacement($db);
- $userstatic = new User($db);
- while ($i < $num && $i < $max) {
- $obj = $db->fetch_object($result);
- $deplacementstatic->ref = $obj->rowid;
- $deplacementstatic->id = $obj->rowid;
- $userstatic->id = $obj->uid;
- $userstatic->lastname = $obj->lastname;
- $userstatic->firstname = $obj->firstname;
- print '<tr class="oddeven">';
- print '<td>'.$deplacementstatic->getNomUrl(1).'</td>';
- print '<td>'.$userstatic->getNomUrl(1).'</td>';
- print '<td class="right">'.$obj->km.'</td>';
- print '<td class="right">'.dol_print_date($db->jdate($obj->dm), 'day').'</td>';
- print '<td>'.$deplacementstatic->LibStatut($obj->fk_statut, 3).'</td>';
- print '</tr>';
- $i++;
- }
- } else {
- print '<tr class="oddeven"><td colspan="2" class="opacitymedium">'.$langs->trans("None").'</td></tr>';
- }
- print '</table><br>';
- } else {
- dol_print_error($db);
- }
- print '</div></div>';
- // End of page
- llxFooter();
- $db->close();
|