forked from Wavyzz/dolibarr
This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
329 lines
12 KiB
PHP
329 lines
12 KiB
PHP
<?php
|
|
/* Copyright (C) 2011-2019 Alexandre Spangaro <aspangaro@open-dsi.fr>
|
|
* Copyright (C) 2015-2016 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
|
|
*
|
|
* 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/salaries/list.php
|
|
* \ingroup salaries
|
|
* \brief List of salaries payments
|
|
*/
|
|
|
|
require '../main.inc.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/salaries/class/paymentsalary.class.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
|
|
if (!empty($conf->accounting->enabled)) require_once DOL_DOCUMENT_ROOT.'/accountancy/class/accountingjournal.class.php';
|
|
|
|
// Load translation files required by the page
|
|
$langs->loadLangs(array("compta", "salaries", "bills", "hrm"));
|
|
|
|
// Security check
|
|
$socid = GETPOST("socid", "int");
|
|
if ($user->socid) $socid = $user->socid;
|
|
$result = restrictedArea($user, 'salaries', '', '', '');
|
|
|
|
$limit = GETPOST('limit', 'int') ?GETPOST('limit', 'int') : $conf->liste_limit;
|
|
$search_ref = GETPOST('search_ref', 'int');
|
|
$search_user = GETPOST('search_user', 'alpha');
|
|
$search_label = GETPOST('search_label', 'alpha');
|
|
$search_date_start = dol_mktime(0, 0, 0, GETPOST('search_date_startmonth', 'int'), GETPOST('search_date_startday', 'int'), GETPOST('search_date_startyear', 'int'));
|
|
$search_date_end = dol_mktime(23, 59, 59, GETPOST('search_date_endmonth', 'int'), GETPOST('search_date_endday', 'int'), GETPOST('search_date_endyear', 'int'));
|
|
$search_amount = GETPOST('search_amount', 'alpha');
|
|
$search_account = GETPOST('search_account', 'int');
|
|
|
|
$sortfield = GETPOST("sortfield", 'alpha');
|
|
$sortorder = GETPOST("sortorder", 'alpha');
|
|
$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 (!$sortfield) $sortfield = "s.datep,s.rowid";
|
|
if (!$sortorder) $sortorder = "DESC,DESC";
|
|
$optioncss = GETPOST('optioncss', 'alpha');
|
|
|
|
$filtre = GETPOST("filtre", 'none');
|
|
|
|
if (!GETPOST('typeid', 'int'))
|
|
{
|
|
$newfiltre = str_replace('filtre=', '', $filtre);
|
|
$filterarray = explode('-', $newfiltre);
|
|
foreach ($filterarray as $val)
|
|
{
|
|
$part = explode(':', $val);
|
|
if ($part[0] == 's.fk_typepayment') $typeid = $part[1];
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$typeid = GETPOST('typeid', 'int');
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
* Actions
|
|
*/
|
|
|
|
if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')) // All test are required to be compatible with all browsers
|
|
{
|
|
$search_ref = "";
|
|
$search_user = "";
|
|
$search_label = "";
|
|
$search_date_start = '';
|
|
$search_date_end = '';
|
|
$search_amount = "";
|
|
$search_account = '';
|
|
$typeid = "";
|
|
}
|
|
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
llxHeader('', $langs->trans("Salaries"));
|
|
|
|
$form = new Form($db);
|
|
$salstatic = new PaymentSalary($db);
|
|
$userstatic = new User($db);
|
|
$accountstatic = new Account($db);
|
|
|
|
$sql = "SELECT u.rowid as uid, u.lastname, u.firstname, u.login, u.email, u.admin, u.salary as current_salary, u.fk_soc as fk_soc, u.statut as status,";
|
|
$sql .= " s.rowid, s.fk_user, s.amount, s.salary, s.label, s.datep as datep, s.datev as datev, s.fk_typepayment as type, s.num_payment, s.fk_bank,";
|
|
$sql .= " ba.rowid as bid, ba.ref as bref, ba.number as bnumber, ba.account_number, ba.fk_accountancy_journal, ba.label as blabel,";
|
|
$sql .= " pst.code as payment_code";
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."payment_salary as s";
|
|
$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."c_paiement as pst ON s.fk_typepayment = pst.id";
|
|
$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."bank as b ON s.fk_bank = b.rowid";
|
|
$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."bank_account as ba ON b.fk_account = ba.rowid,";
|
|
$sql .= " ".MAIN_DB_PREFIX."user as u";
|
|
$sql .= " WHERE u.rowid = s.fk_user";
|
|
$sql .= " AND s.entity = ".$conf->entity;
|
|
|
|
// Search criteria
|
|
if ($search_ref) $sql .= " AND s.rowid=".$search_ref;
|
|
if ($search_user) $sql .= natural_search(array('u.login', 'u.lastname', 'u.firstname', 'u.email'), $search_user);
|
|
if ($search_label) $sql .= natural_search(array('s.label'), $search_label);
|
|
if ($search_date_start) $sql .= " AND s.datep >= '".$db->idate($search_date_start)."'";
|
|
if ($search_date_end) $sql .= " AND s.datep <= '".$db->idate($search_date_end)."'";
|
|
if ($search_amount) $sql .= natural_search("s.amount", $search_amount, 1);
|
|
if ($search_account > 0) $sql .= " AND b.fk_account=".$search_account;
|
|
if ($filtre) {
|
|
$filtre = str_replace(":", "=", $filtre);
|
|
$sql .= " AND ".$filtre;
|
|
}
|
|
if ($typeid) {
|
|
$sql .= " AND s.fk_typepayment=".$typeid;
|
|
}
|
|
$sql .= $db->order($sortfield, $sortorder);
|
|
|
|
//$sql.= " GROUP BY u.rowid, u.lastname, u.firstname, s.rowid, s.fk_user, s.amount, s.label, s.datev, s.fk_typepayment, s.num_payment, pst.code";
|
|
$totalnboflines = 0;
|
|
$result = $db->query($sql);
|
|
if ($result)
|
|
{
|
|
$totalnboflines = $db->num_rows($result);
|
|
}
|
|
$sql .= $db->plimit($limit + 1, $offset);
|
|
|
|
|
|
$result = $db->query($sql);
|
|
if ($result)
|
|
{
|
|
$num = $db->num_rows($result);
|
|
$i = 0;
|
|
$total = 0;
|
|
|
|
$param = '';
|
|
if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) $param .= '&contextpage='.$contextpage;
|
|
if ($limit > 0 && $limit != $conf->liste_limit) $param .= '&limit='.$limit;
|
|
if ($typeid) $param .= '&typeid='.$typeid;
|
|
if ($optioncss != '') $param .= '&optioncss='.$optioncss;
|
|
|
|
$newcardbutton = '';
|
|
if (!empty($user->rights->salaries->write))
|
|
{
|
|
$newcardbutton .= dolGetButtonTitle($langs->trans('NewSalaryPayment'), '', 'fa fa-plus-circle', DOL_URL_ROOT.'/salaries/card.php?action=create');
|
|
}
|
|
|
|
print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'">';
|
|
if ($optioncss != '') print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
|
|
print '<input type="hidden" name="token" value="'.newToken().'">';
|
|
print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
|
|
print '<input type="hidden" name="action" value="list">';
|
|
print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
|
|
print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
|
|
|
|
print_barre_liste($langs->trans("SalariesPayments"), $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num, $totalnboflines, 'object_payment', 0, $newcardbutton, '', $limit, 0, 0, 1);
|
|
|
|
print '<div class="div-table-responsive">';
|
|
print '<table class="tagtable liste'.($moreforfilter ? " listwithfilterbefore" : "").'">'."\n";
|
|
|
|
print '<tr class="liste_titre_filter">';
|
|
// Ref
|
|
print '<td class="liste_titre left">';
|
|
print '<input class="flat" type="text" size="3" name="search_ref" value="'.$db->escape($search_ref).'">';
|
|
print '</td>';
|
|
// Employee
|
|
print '<td class="liste_titre">';
|
|
print '<input class="flat" type="text" size="6" name="search_user" value="'.$db->escape($search_user).'">';
|
|
print '</td>';
|
|
// Label
|
|
print '<td class="liste_titre"><input type="text" class="flat" size="10" name="search_label" value="'.$db->escape($search_label).'"></td>';
|
|
// Date
|
|
print '<td class="liste_titre center">';
|
|
print '<div class="nowrap">';
|
|
print $langs->trans('From').' ';
|
|
print $form->selectDate($search_date_start ? $search_date_start : -1, 'search_date_start', 0, 0, 1);
|
|
print '</div>';
|
|
print '<div class="nowrap">';
|
|
print $langs->trans('to').' ';
|
|
print $form->selectDate($search_date_end ? $search_date_end : -1, 'search_date_end', 0, 0, 1);
|
|
print '</div>';
|
|
print '</td>';
|
|
// Type
|
|
print '<td class="liste_titre left">';
|
|
$form->select_types_paiements($typeid, 'typeid', '', 0, 1, 1, 16);
|
|
print '</td>';
|
|
// Account
|
|
if (!empty($conf->banque->enabled))
|
|
{
|
|
print '<td class="liste_titre">';
|
|
$form->select_comptes($search_account, 'search_account', 0, '', 1);
|
|
print '</td>';
|
|
}
|
|
// Amount
|
|
print '<td class="liste_titre right"><input name="search_amount" class="flat" type="text" size="8" value="'.$db->escape($search_amount).'"></td>';
|
|
|
|
print '<td class="liste_titre maxwidthsearch">';
|
|
$searchpicto = $form->showFilterAndCheckAddButtons(0);
|
|
print $searchpicto;
|
|
print '</td>';
|
|
|
|
print '<tr class="liste_titre">';
|
|
print_liste_field_titre("Ref", $_SERVER["PHP_SELF"], "s.rowid", "", $param, "", $sortfield, $sortorder);
|
|
print_liste_field_titre("Employee", $_SERVER["PHP_SELF"], "u.rowid", "", $param, "", $sortfield, $sortorder);
|
|
print_liste_field_titre("Label", $_SERVER["PHP_SELF"], "s.label", "", $param, 'class="left"', $sortfield, $sortorder);
|
|
print_liste_field_titre("DatePayment", $_SERVER["PHP_SELF"], "s.datep,s.rowid", "", $param, 'align="center"', $sortfield, $sortorder);
|
|
print_liste_field_titre("PaymentMode", $_SERVER["PHP_SELF"], "type", "", $param, 'class="left"', $sortfield, $sortorder);
|
|
if (!empty($conf->banque->enabled)) print_liste_field_titre("BankAccount", $_SERVER["PHP_SELF"], "ba.label", "", $param, "", $sortfield, $sortorder);
|
|
print_liste_field_titre("PayedByThisPayment", $_SERVER["PHP_SELF"], "s.amount", "", $param, 'class="right"', $sortfield, $sortorder);
|
|
print_liste_field_titre('', $_SERVER["PHP_SELF"], "", '', '', '', $sortfield, $sortorder, 'maxwidthsearch ');
|
|
print "</tr>\n";
|
|
|
|
print "</tr>\n";
|
|
|
|
while ($i < min($num, $limit))
|
|
{
|
|
$obj = $db->fetch_object($result);
|
|
|
|
print '<tr class="oddeven">';
|
|
|
|
$userstatic->id = $obj->uid;
|
|
$userstatic->lastname = $obj->lastname;
|
|
$userstatic->firstname = $obj->firstname;
|
|
$userstatic->admin = $obj->admin;
|
|
$userstatic->login = $obj->login;
|
|
$userstatic->email = $obj->email;
|
|
$userstatic->socid = $obj->fk_soc;
|
|
$userstatic->statut = $obj->status;
|
|
|
|
$salstatic->id = $obj->rowid;
|
|
$salstatic->ref = $obj->rowid;
|
|
|
|
// Ref
|
|
print "<td>".$salstatic->getNomUrl(1)."</td>\n";
|
|
if (!$i) $totalarray['nbfield']++;
|
|
|
|
// Employee
|
|
print "<td>".$userstatic->getNomUrl(1)."</td>\n";
|
|
if (!$i) $totalarray['nbfield']++;
|
|
|
|
// Label payment
|
|
print "<td>".dol_trunc($obj->label, 40)."</td>\n";
|
|
if (!$i) $totalarray['nbfield']++;
|
|
|
|
// Date payment
|
|
print '<td class="center">'.dol_print_date($db->jdate($obj->datep), 'day')."</td>\n";
|
|
if (!$i) $totalarray['nbfield']++;
|
|
|
|
// Type
|
|
print '<td>'.$langs->trans("PaymentTypeShort".$obj->payment_code).' '.$obj->num_payment.'</td>';
|
|
if (!$i) $totalarray['nbfield']++;
|
|
|
|
// Account
|
|
if (!empty($conf->banque->enabled))
|
|
{
|
|
print '<td>';
|
|
if ($obj->fk_bank > 0)
|
|
{
|
|
//$accountstatic->fetch($obj->fk_bank);
|
|
$accountstatic->id = $obj->bid;
|
|
$accountstatic->ref = $obj->bref;
|
|
$accountstatic->number = $obj->bnumber;
|
|
|
|
if (!empty($conf->accounting->enabled))
|
|
{
|
|
$accountstatic->account_number = $obj->account_number;
|
|
|
|
$accountingjournal = new AccountingJournal($db);
|
|
$accountingjournal->fetch($obj->fk_accountancy_journal);
|
|
|
|
$accountstatic->accountancy_journal = $accountingjournal->getNomUrl(0, 1, 1, '', 1);
|
|
}
|
|
$accountstatic->label = $obj->blabel;
|
|
print $accountstatic->getNomUrl(1);
|
|
}
|
|
else print ' ';
|
|
print '</td>';
|
|
if (!$i) $totalarray['nbfield']++;
|
|
}
|
|
|
|
// Amount
|
|
print '<td class="nowrap right">'.price($obj->amount).'</td>';
|
|
if (!$i) $totalarray['nbfield']++;
|
|
if (!$i) $totalarray['pos'][$totalarray['nbfield']] = 'totalttcfield';
|
|
$totalarray['val']['totalttcfield'] += $obj->amount;
|
|
|
|
print '<td></td>';
|
|
|
|
if (!$i) $totalarray['nbfield']++;
|
|
|
|
print "</tr>\n";
|
|
|
|
$i++;
|
|
}
|
|
|
|
// Show total line
|
|
include DOL_DOCUMENT_ROOT.'/core/tpl/list_print_total.tpl.php';
|
|
|
|
print "</table>";
|
|
print '</div>';
|
|
print '</form>';
|
|
|
|
$db->free($result);
|
|
}
|
|
else
|
|
{
|
|
dol_print_error($db);
|
|
}
|
|
|
|
// End of page
|
|
llxFooter();
|
|
$db->close();
|