dolibarr/htdocs/compta/deplacement/list.php

208 lines
7.9 KiB
PHP
Raw Normal View History

2011-06-29 19:55:32 +02:00
<?php
2011-10-23 14:55:37 +02:00
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004-2012 Laurent Destailleur <eldy@users.sourceforge.net>
2011-10-23 14:55:37 +02:00
* Copyright (C) 2004 Eric Seigne <eric.seigne@ryxeo.com>
2018-10-27 14:43:12 +02:00
* Copyright (C) 2005-2011 Regis Houssin <regis.houssin@inodbox.com>
2012-03-27 09:56:37 +02:00
* Copyright (C) 2012 Juanjo Menent <jmenent@2byte.es>
2018-12-01 23:41:15 +01:00
* Copyright (C) 2018 charlene Benke <charlie@patas-monkey.com>
2011-06-29 19:55:32 +02:00
*
* 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
2011-06-29 19:55:32 +02:00
* (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
2019-09-23 21:55:30 +02:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2011-06-29 19:55:32 +02:00
*/
/**
* \file htdocs/compta/deplacement/list.php
* \brief Page to list trips and expenses
2011-06-29 19:55:32 +02:00
*/
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';
2014-11-02 21:12:40 +01:00
require_once DOL_DOCUMENT_ROOT.'/core/class/html.formother.class.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
2011-06-29 19:55:32 +02:00
2018-05-27 09:27:09 +02:00
// Load translation files required by the page
$langs->loadLangs(array('companies', 'users', 'trips'));
2011-06-29 19:55:32 +02:00
// Security check
$socid = GETPOST('socid', 'int');
if ($user->socid) $socid = $user->socid;
$result = restrictedArea($user, 'deplacement', '', '');
2011-06-29 19:55:32 +02:00
$search_ref = GETPOST('search_ref', 'int');
$search_name = GETPOST('search_name', 'alpha');
$search_company = GETPOST('search_company', 'alpha');
2014-11-02 21:12:40 +01:00
// $search_amount=GETPOST('search_amount','alpha');
$sortfield = GETPOST("sortfield", 'alpha');
$sortorder = GETPOST("sortorder", 'alpha');
$page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
$limit = GETPOST('limit', 'int') ?GETPOST('limit', 'int') : $conf->liste_limit;
2017-06-06 10:53:53 +02:00
if (empty($page) || $page == -1) { $page = 0; } // If $page is not defined, or '' or -1
$offset = $limit * $page;
2011-06-29 19:55:32 +02:00
$pageprev = $page - 1;
$pagenext = $page + 1;
if (!$sortorder) $sortorder = "DESC";
if (!$sortfield) $sortfield = "d.dated";
2011-06-29 19:55:32 +02:00
$year = GETPOST("year");
$month = GETPOST("month");
$day = GETPOST("day");
if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter', 'alpha')) // Both test are required to be compatible with all browsers
2014-11-02 21:12:40 +01:00
{
$search_ref = "";
$search_name = "";
$search_company = "";
2014-11-02 21:12:40 +01:00
// $search_amount="";
$year = "";
$month = "";
$day = "";
2014-11-02 21:12:40 +01:00
}
2011-06-29 19:55:32 +02:00
/*
* View
*/
2014-11-02 21:12:40 +01:00
$formother = new FormOther($db);
$tripandexpense_static = new Deplacement($db);
2014-09-06 17:10:22 +02:00
$userstatic = new User($db);
2011-06-29 19:55:32 +02:00
$childids = $user->getAllChildIds();
$childids[] = $user->id;
2011-06-29 19:55:32 +02:00
llxHeader();
$sql = "SELECT s.nom, d.fk_user, s.rowid as socid,"; // Ou
$sql .= " d.rowid, d.type, d.dated as dd, d.km,"; // Comment
$sql .= " d.fk_statut,";
$sql .= " u.lastname, u.firstname"; // Qui
$sql .= " FROM ".MAIN_DB_PREFIX."user as u";
$sql .= ", ".MAIN_DB_PREFIX."deplacement as d";
$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s ON d.fk_soc = s.rowid";
if (!$user->rights->societe->client->voir && !$socid) $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe_commerciaux as sc ON s.rowid = sc.fk_soc";
$sql .= " WHERE d.fk_user = u.rowid";
$sql .= " AND d.entity = ".$conf->entity;
if (empty($user->rights->deplacement->readall) && empty($user->rights->deplacement->lire_tous)) $sql .= ' AND d.fk_user IN ('.join(',', $childids).')';
if (!$user->rights->societe->client->voir && !$socid) $sql .= " AND (sc.fk_user = ".$user->id." OR d.fk_soc IS NULL) ";
if ($socid) $sql .= " AND s.rowid = ".$socid;
if ($search_ref) $sql .= " AND d.rowid=".$search_ref;
2014-11-02 21:12:40 +01:00
if ($search_name)
{
$sql .= natural_search('u.lastname', $search_name);
}
if ($search_company)
{
$sql .= natural_search('s.nom', $search_company);
}
$sql .= dolSqlDateFilter("d.dated", $day, $month, $year);
2014-11-02 21:12:40 +01:00
$sql .= $db->order($sortfield, $sortorder);
$sql .= $db->plimit($limit + 1, $offset);
2011-06-29 19:55:32 +02:00
//print $sql;
$resql = $db->query($sql);
2011-06-29 19:55:32 +02:00
if ($resql)
{
$num = $db->num_rows($resql);
print_barre_liste($langs->trans("ListOfFees"), $page, $_SERVER["PHP_SELF"], "&socid=$socid", $sortfield, $sortorder, '', $num);
2011-06-29 19:55:32 +02:00
$i = 0;
print '<form method="get" action="'.$_SERVER["PHP_SELF"].'">'."\n";
2019-11-05 21:24:41 +01:00
print '<table class="noborder centpercent">';
2011-06-29 19:55:32 +02:00
print "<tr class=\"liste_titre\">";
print_liste_field_titre("Ref", $_SERVER["PHP_SELF"], "d.rowid", "", "&socid=$socid", '', $sortfield, $sortorder);
print_liste_field_titre("Type", $_SERVER["PHP_SELF"], "d.type", "", "&socid=$socid", '', $sortfield, $sortorder);
print_liste_field_titre("Date", $_SERVER["PHP_SELF"], "d.dated", "", "&socid=$socid", 'align="center"', $sortfield, $sortorder);
print_liste_field_titre("Person", $_SERVER["PHP_SELF"], "u.lastname", "", "&socid=$socid", '', $sortfield, $sortorder);
print_liste_field_titre("Company", $_SERVER["PHP_SELF"], "s.nom", "", "&socid=$socid", '', $sortfield, $sortorder);
2019-02-04 13:51:39 +01:00
print_liste_field_titre("FeesKilometersOrAmout", $_SERVER["PHP_SELF"], "d.km", "", "&socid=$socid", 'class="right"', $sortfield, $sortorder);
2015-06-26 06:23:29 +02:00
print_liste_field_titre('');
2011-06-29 19:55:32 +02:00
print "</tr>\n";
// Filters lines
print '<tr class="liste_titre">';
print '<td class="liste_titre">';
2014-11-02 21:12:40 +01:00
print '<input class="flat" size="4" type="text" name="search_ref" value="'.$search_ref.'">';
print '</td>';
print '<td class="liste_titre">';
2014-11-02 21:12:40 +01:00
print '&nbsp;';
print '</td>';
2014-11-02 21:12:40 +01:00
print '<td class="liste_titre" align="center">';
if (!empty($conf->global->MAIN_LIST_FILTER_ON_DAY)) print '<input class="flat" type="text" size="1" maxlength="2" name="day" value="'.$day.'">';
2014-11-02 21:12:40 +01:00
print '<input class="flat" type="text" size="1" maxlength="2" name="month" value="'.$month.'">';
$formother->select_year($year ? $year : -1, 'year', 1, 20, 5);
print '</td>';
2014-11-02 21:12:40 +01:00
print '<td class="liste_titre">';
print '<input class="flat" size="10" type="text" name="search_name" value="'.$search_name.'">';
print '</td>';
2014-11-02 21:12:40 +01:00
print '<td class="liste_titre">';
print '<input class="flat" size="10" type="text" name="search_company" value="'.$search_company.'">';
print '</td>';
2019-02-04 13:51:39 +01:00
print '<td class="liste_titre right">';
2014-11-02 21:12:40 +01:00
// print '<input class="flat" size="10" type="text" name="search_amount" value="'.$search_amount.'">';
print '</td>';
2019-05-19 13:51:47 +02:00
print '<td class="liste_titre maxwidthsearch">';
$searchpicto = $form->showFilterAndCheckAddButtons(0);
2017-05-14 21:06:33 +02:00
print $searchpicto;
2016-02-07 15:50:48 +01:00
print '</td>';
print "</tr>\n";
while ($i < min($num, $limit))
2011-06-29 19:55:32 +02:00
{
$obj = $db->fetch_object($resql);
2011-06-29 19:55:32 +02:00
$soc = new Societe($db);
if ($obj->socid) $soc->fetch($obj->socid);
2011-06-29 19:55:32 +02:00
print '<tr class="oddeven">';
2014-09-06 17:10:22 +02:00
// Id
print '<td><a href="card.php?id='.$obj->rowid.'">'.img_object($langs->trans("ShowTrip"), "trip").' '.$obj->rowid.'</a></td>';
2014-09-06 17:10:22 +02:00
// Type
print '<td>'.$langs->trans($obj->type).'</td>';
2014-09-06 17:10:22 +02:00
// Date
2019-12-12 10:31:08 +01:00
print '<td class="center">'.dol_print_date($db->jdate($obj->dd), 'day').'</td>';
2014-09-06 17:10:22 +02:00
// User
2014-11-02 21:12:40 +01:00
print '<td>';
2016-06-06 16:12:27 +02:00
$userstatic->id = $obj->fk_user;
2014-09-06 17:10:22 +02:00
$userstatic->lastname = $obj->lastname;
$userstatic->firstname = $obj->firstname;
print $userstatic->getNomUrl(1);
print '</td>';
if ($obj->socid) print '<td>'.$soc->getNomUrl(1).'</td>';
2011-06-29 19:55:32 +02:00
else print '<td>&nbsp;</td>';
2014-09-06 17:10:22 +02:00
2019-01-24 16:47:19 +01:00
print '<td class="right">'.$obj->km.'</td>';
2011-06-29 19:55:32 +02:00
$tripandexpense_static->statut = $obj->fk_statut;
2019-01-24 16:47:19 +01:00
print '<td class="right">'.$tripandexpense_static->getLibStatut(5).'</td>';
2011-06-29 19:55:32 +02:00
print "</tr>\n";
$i++;
}
print "</table>";
print "</form>\n";
2011-06-29 19:55:32 +02:00
$db->free($resql);
}
else
{
dol_print_error($db);
}
2018-07-30 17:28:44 +02:00
// End of page
llxFooter();
$db->close();