mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-09 11:08:34 +01:00
224 lines
6.3 KiB
PHP
224 lines
6.3 KiB
PHP
<?php
|
|
/* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2005 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2005-2009 Regis Houssin <regis.houssin@capnetworks.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/lignes.php
|
|
* \ingroup prelevement
|
|
* \brief Prelevement lines
|
|
*/
|
|
|
|
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/ligneprelevement.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';
|
|
|
|
$langs->load("banks");
|
|
$langs->load("categories");
|
|
|
|
// Security check
|
|
if ($user->societe_id > 0) accessforbidden();
|
|
|
|
$langs->load('withdrawals');
|
|
$langs->load('bills');
|
|
|
|
// Get supervariables
|
|
$prev_id = GETPOST('id','int');
|
|
$socid = GETPOST('socid','int');
|
|
$page = GETPOST('page','int');
|
|
$sortorder = ((GETPOST('sortorder','alpha')=="")) ? "DESC" : GETPOST('sortorder','alpha');
|
|
$sortfield = ((GETPOST('sortfield','alpha')=="")) ? "pl.fk_soc" : GETPOST('sortfield','alpha');
|
|
|
|
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
llxHeader('',$langs->trans("WithdrawalsReceipts"));
|
|
|
|
if ($prev_id)
|
|
{
|
|
$bon = new BonPrelevement($db,"");
|
|
|
|
if ($bon->fetch($prev_id) == 0)
|
|
{
|
|
$head = prelevement_prepare_head($bon);
|
|
dol_fiche_head($head, 'lines', $langs->trans("WithdrawalsReceipts"), '', 'payment');
|
|
|
|
print '<table class="border" width="100%">';
|
|
|
|
print '<tr><td width="20%">'.$langs->trans("Ref").'</td><td>'.$bon->getNomUrl(1).'</td></tr>';
|
|
print '<tr><td width="20%">'.$langs->trans("Date").'</td><td>'.dol_print_date($bon->datec,'day').'</td></tr>';
|
|
print '<tr><td width="20%">'.$langs->trans("Amount").'</td><td>'.price($bon->amount).'</td></tr>';
|
|
|
|
// Status
|
|
print '<tr><td width="20%">'.$langs->trans('Status').'</td>';
|
|
print '<td>'.$bon->getLibStatut(1).'</td>';
|
|
print '</tr>';
|
|
|
|
if($bon->date_trans <> 0)
|
|
{
|
|
$muser = new User($db);
|
|
$muser->fetch($bon->user_trans);
|
|
|
|
print '<tr><td width="20%">'.$langs->trans("TransData").'</td><td>';
|
|
print dol_print_date($bon->date_trans,'day');
|
|
print ' '.$langs->trans("By").' '.$muser->getFullName($langs).'</td></tr>';
|
|
print '<tr><td width="20%">'.$langs->trans("TransMetod").'</td><td>';
|
|
print $bon->methodes_trans[$bon->method_trans];
|
|
print '</td></tr>';
|
|
}
|
|
if($bon->date_credit <> 0)
|
|
{
|
|
print '<tr><td width="20%">'.$langs->trans('CreditDate').'</td><td>';
|
|
print dol_print_date($bon->date_credit,'day');
|
|
print '</td></tr>';
|
|
}
|
|
|
|
print '</table>';
|
|
|
|
print '<br>';
|
|
|
|
print '<table class="border" width="100%"><tr><td width="20%">';
|
|
print $langs->trans("WithdrawalFile").'</td><td>';
|
|
$relativepath = 'receipts/'.$bon->ref;
|
|
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>';
|
|
|
|
dol_fiche_end();
|
|
|
|
}
|
|
else
|
|
{
|
|
dol_print_error($db);
|
|
}
|
|
}
|
|
|
|
$ligne=new LignePrelevement($db,$user);
|
|
|
|
if ($page == -1) { $page = 0 ; }
|
|
|
|
$offset = $conf->liste_limit * $page ;
|
|
$pageprev = $page - 1;
|
|
$pagenext = $page + 1;
|
|
|
|
/*
|
|
* Liste des lignes de prelevement
|
|
*
|
|
*
|
|
*/
|
|
$sql = "SELECT pl.rowid, pl.statut, pl.amount";
|
|
$sql.= ", s.rowid as socid, s.nom";
|
|
$sql.= " FROM ".MAIN_DB_PREFIX."prelevement_lignes as pl";
|
|
$sql.= ", ".MAIN_DB_PREFIX."prelevement_bons as pb";
|
|
$sql.= ", ".MAIN_DB_PREFIX."societe as s";
|
|
$sql.= " WHERE pl.fk_prelevement_bons = ".$prev_id;
|
|
$sql.= " AND pl.fk_prelevement_bons = pb.rowid";
|
|
$sql.= " AND pb.entity = ".$conf->entity;
|
|
$sql.= " AND pl.fk_soc = s.rowid";
|
|
if ($socid) $sql.= " AND s.rowid = ".$socid;
|
|
$sql.= " ORDER BY $sortfield $sortorder ";
|
|
$sql.= $db->plimit($conf->liste_limit+1, $offset);
|
|
|
|
$result = $db->query($sql);
|
|
|
|
if ($result)
|
|
{
|
|
$num = $db->num_rows($result);
|
|
$i = 0;
|
|
|
|
$urladd = "&id=".$prev_id;
|
|
|
|
print_barre_liste("", $page, "lignes.php", $urladd, $sortfield, $sortorder, '', $num);
|
|
print"\n<!-- debut table -->\n";
|
|
print '<table class="noborder" width="100%" cellspacing="0" cellpadding="4">';
|
|
print '<tr class="liste_titre">';
|
|
print_liste_field_titre($langs->trans("Lines"),"lignes.php","pl.rowid",'',$urladd);
|
|
print_liste_field_titre($langs->trans("ThirdParty"),"lignes.php","s.nom",'',$urladd);
|
|
print_liste_field_titre($langs->trans("Amount"),"lignes.php","pl.amount","",$urladd,'align="center"');
|
|
print '<td colspan="2"> </td></tr>';
|
|
|
|
$var=false;
|
|
|
|
$total = 0;
|
|
|
|
while ($i < min($num,$conf->liste_limit))
|
|
{
|
|
$obj = $db->fetch_object($result);
|
|
|
|
print "<tr ".$bc[$var]."><td>";
|
|
|
|
print $ligne->LibStatut($obj->statut,2);
|
|
print " ";
|
|
|
|
print '<a href="'.DOL_URL_ROOT.'/compta/prelevement/ligne.php?id='.$obj->rowid.'">';
|
|
print substr('000000'.$obj->rowid, -6);
|
|
print '</a></td>';
|
|
|
|
print '<td><a href="'.DOL_URL_ROOT.'/comm/fiche.php?socid='.$obj->socid.'">'.stripslashes($obj->nom)."</a></td>\n";
|
|
|
|
print '<td align="center">'.price($obj->amount)."</td>\n";
|
|
|
|
print '<td>';
|
|
|
|
if ($obj->statut == 3)
|
|
{
|
|
print '<b>'.$langs->trans("StatusRefused").'</b>';
|
|
}
|
|
else
|
|
{
|
|
print " ";
|
|
}
|
|
|
|
print '</td></tr>';
|
|
|
|
$total += $obj->total_ttc;
|
|
$var=!$var;
|
|
$i++;
|
|
}
|
|
|
|
if($socid)
|
|
{
|
|
print "<tr ".$bc[$var]."><td>";
|
|
|
|
print '<td>Total</td>';
|
|
|
|
print '<td align="center">'.price($total)."</td>\n";
|
|
|
|
print '<td> </td>';
|
|
|
|
print "</tr>\n";
|
|
}
|
|
|
|
print "</table>";
|
|
$db->free($result);
|
|
}
|
|
else
|
|
{
|
|
dol_print_error($db);
|
|
}
|
|
|
|
$db->close();
|
|
|
|
llxFooter();
|