forked from Wavyzz/dolibarr
250 lines
7.8 KiB
PHP
250 lines
7.8 KiB
PHP
<?php
|
|
/* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2005 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2005-2010 Regis Houssin <regis.houssin@inodbox.com>
|
|
* Copyright (C) 2010-2012 Juanjo Menent <jmenent@2byte.es>
|
|
*
|
|
* 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/compta/prelevement/fiche-rejet.php
|
|
* \ingroup prelevement
|
|
* \brief Withdraw reject
|
|
*/
|
|
|
|
require '../../main.inc.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/prelevement.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/compta/prelevement/class/bonprelevement.class.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/compta/prelevement/class/rejetprelevement.class.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/compta/paiement/class/paiement.class.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
|
|
|
|
// Load translation files required by the page
|
|
$langs->loadLangs(array("banks","categories",'withdrawals','bills'));
|
|
|
|
// Securite acces client
|
|
if ($user->societe_id > 0) accessforbidden();
|
|
|
|
// Get supervariables
|
|
$prev_id = GETPOST('id','int');
|
|
$ref = GETPOST('ref', 'alpha');
|
|
|
|
// Load variable for pagination
|
|
$limit = GETPOST('limit','int')?GETPOST('limit','int'):$conf->liste_limit;
|
|
$sortfield = GETPOST('sortfield','alpha');
|
|
$sortorder = GETPOST('sortorder','alpha');
|
|
$page = 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;
|
|
|
|
$object = new BonPrelevement($db,"");
|
|
|
|
|
|
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
llxHeader('',$langs->trans("WithdrawalsReceipts"));
|
|
|
|
if ($prev_id > 0 || $ref)
|
|
{
|
|
if ($object->fetch($prev_id, $ref) >= 0)
|
|
{
|
|
$head = prelevement_prepare_head($object);
|
|
dol_fiche_head($head, 'rejects', $langs->trans("WithdrawalsReceipts"), -1, 'payment');
|
|
|
|
$linkback = '<a href="'.DOL_URL_ROOT.'/compta/prelevement/bons.php">'.$langs->trans("BackToList").'</a>';
|
|
|
|
dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref');
|
|
|
|
print '<div class="fichecenter">';
|
|
print '<div class="underbanner clearboth"></div>';
|
|
print '<table class="border centpercent">'."\n";
|
|
|
|
//print '<tr><td class="titlefield">'.$langs->trans("Ref").'</td><td>'.$object->getNomUrl(1).'</td></tr>';
|
|
print '<tr><td class="titlefield">'.$langs->trans("Date").'</td><td>'.dol_print_date($object->datec,'day').'</td></tr>';
|
|
print '<tr><td>'.$langs->trans("Amount").'</td><td>'.price($object->amount).'</td></tr>';
|
|
|
|
// Status
|
|
/*
|
|
print '<tr><td>'.$langs->trans('Status').'</td>';
|
|
print '<td>'.$object->getLibStatut(1).'</td>';
|
|
print '</tr>';
|
|
*/
|
|
|
|
if($object->date_trans <> 0)
|
|
{
|
|
$muser = new User($db);
|
|
$muser->fetch($object->user_trans);
|
|
|
|
print '<tr><td>'.$langs->trans("TransData").'</td><td>';
|
|
print dol_print_date($object->date_trans,'day');
|
|
print ' '.$langs->trans("By").' '.$muser->getFullName($langs).'</td></tr>';
|
|
print '<tr><td>'.$langs->trans("TransMetod").'</td><td>';
|
|
print $object->methodes_trans[$object->method_trans];
|
|
print '</td></tr>';
|
|
}
|
|
if($object->date_credit <> 0)
|
|
{
|
|
print '<tr><td>'.$langs->trans('CreditDate').'</td><td>';
|
|
print dol_print_date($object->date_credit,'day');
|
|
print '</td></tr>';
|
|
}
|
|
|
|
print '</table>';
|
|
|
|
print '<br>';
|
|
|
|
print '<div class="underbanner clearboth"></div>';
|
|
print '<table class="border" width="100%">';
|
|
|
|
$acc = new Account($db);
|
|
$result=$acc->fetch($conf->global->PRELEVEMENT_ID_BANKACCOUNT);
|
|
|
|
print '<tr><td class="titlefield">';
|
|
print $langs->trans("BankToReceiveWithdraw");
|
|
print '</td>';
|
|
print '<td>';
|
|
if ($acc->id > 0)
|
|
print $acc->getNomUrl(1);
|
|
print '</td>';
|
|
print '</tr>';
|
|
|
|
print '<tr><td class="titlefield">';
|
|
print $langs->trans("WithdrawalFile").'</td><td>';
|
|
$relativepath = 'receipts/'.$object->ref.'.xml';
|
|
print '<a data-ajax="false" href="'.DOL_URL_ROOT.'/document.php?type=text/plain&modulepart=prelevement&file='.urlencode($relativepath).'">'.$relativepath.'</a>';
|
|
print '</td></tr></table>';
|
|
|
|
print '</div>';
|
|
|
|
dol_fiche_end();
|
|
}
|
|
else
|
|
{
|
|
dol_print_error($db);
|
|
}
|
|
}
|
|
|
|
$rej = new RejetPrelevement($db, $user);
|
|
|
|
/*
|
|
* List errors
|
|
*/
|
|
$sql = "SELECT pl.rowid, pl.amount, pl.statut";
|
|
$sql.= " , s.rowid as socid, s.nom as name";
|
|
$sql.= " , pr.motif, pr.afacturer, pr.fk_facture";
|
|
$sql.= " FROM ".MAIN_DB_PREFIX."prelevement_bons as p";
|
|
$sql.= " , ".MAIN_DB_PREFIX."prelevement_lignes as pl";
|
|
$sql.= " , ".MAIN_DB_PREFIX."societe as s";
|
|
$sql.= " , ".MAIN_DB_PREFIX."prelevement_rejet as pr";
|
|
$sql.= " WHERE p.rowid=".$object->id;
|
|
$sql.= " AND pl.fk_prelevement_bons = p.rowid";
|
|
$sql.= " AND p.entity = ".$conf->entity;
|
|
$sql.= " AND pl.fk_soc = s.rowid";
|
|
$sql.= " AND pl.statut = 3 ";
|
|
$sql.= " AND pr.fk_prelevement_lignes = pl.rowid";
|
|
if ($socid) $sql.= " AND s.rowid = ".$socid;
|
|
$sql.= " ORDER BY pl.amount DESC";
|
|
|
|
// Count total nb of records
|
|
$nbtotalofrecords = '';
|
|
if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST))
|
|
{
|
|
$result = $db->query($sql);
|
|
$nbtotalofrecords = $db->num_rows($result);
|
|
if (($page * $limit) > $nbtotalofrecords) // if total resultset is smaller then paging size (filtering), goto and load page 0
|
|
{
|
|
$page = 0;
|
|
$offset = 0;
|
|
}
|
|
}
|
|
|
|
$sql.= $db->plimit($limit+1, $offset);
|
|
|
|
$resql = $db->query($sql);
|
|
if ($resql)
|
|
{
|
|
$num = $db->num_rows($resql);
|
|
|
|
print_barre_liste($langs->trans("Rejects"), $page, $_SERVER["PHP_SELF"], $urladd, $sortfield, $sortorder, '', $num, $nbtotalofrecords, '');
|
|
|
|
print"\n<!-- debut table -->\n";
|
|
print '<div class="div-table-responsive-no-min">'; // You can use div-table-responsive-no-min if you dont need reserved height for your table
|
|
print '<table class="noborder" width="100%" cellspacing="0" cellpadding="4">';
|
|
print '<tr class="liste_titre">';
|
|
print '<td>'.$langs->trans("Line").'</td><td>'.$langs->trans("ThirdParty").'</td><td align="right">'.$langs->trans("Amount").'</td>';
|
|
print '<td>'.$langs->trans("Reason").'</td><td align="center">'.$langs->trans("ToBill").'</td><td align="center">'.$langs->trans("Invoice").'</td></tr>';
|
|
|
|
$total = 0;
|
|
|
|
if ($num > 0)
|
|
{
|
|
$i = 0;
|
|
while ($i < $num)
|
|
{
|
|
$obj = $db->fetch_object($resql);
|
|
|
|
print '<tr class="oddeven"><td>';
|
|
|
|
print '<a href="'.DOL_URL_ROOT.'/compta/prelevement/ligne.php?id='.$obj->rowid.'">';
|
|
print img_picto('', 'statut'.$obj->statut).' ';
|
|
print substr('000000'.$obj->rowid, -6);
|
|
print '</a></td>';
|
|
print '<td><a href="'.DOL_URL_ROOT.'/comm/card.php?socid='.$obj->socid.'">'.$obj->name."</a></td>\n";
|
|
|
|
print '<td align="right">'.price($obj->amount)."</td>\n";
|
|
print '<td>'.$rej->motifs[$obj->motif].'</td>';
|
|
|
|
print '<td align="center">'.yn($obj->afacturer).'</td>';
|
|
print '<td align="center">'.$obj->fk_facture.'</td>';
|
|
print "</tr>\n";
|
|
|
|
$total += $obj->amount;
|
|
|
|
$i++;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print '<tr><td colspan="5" class="opacitymedium">'.$langs->trans("None").'</td></tr>';
|
|
}
|
|
|
|
if ($num > 0)
|
|
{
|
|
print '<tr class="liste_total"><td> </td>';
|
|
print '<td class="liste_total">'.$langs->trans("Total").'</td>';
|
|
print '<td align="right">'.price($total)."</td>\n";
|
|
print '<td colspan="3"> </td>';
|
|
print "</tr>\n";
|
|
}
|
|
print "</table>\n";
|
|
print '</div>';
|
|
|
|
$db->free($resql);
|
|
}
|
|
else
|
|
{
|
|
dol_print_error($db);
|
|
}
|
|
|
|
// End of page
|
|
llxFooter();
|
|
$db->close();
|