mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-06 17:48:25 +01:00
215 lines
7.0 KiB
PHP
215 lines
7.0 KiB
PHP
<?php
|
||
/* Copyright (C) 2001-2006 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||
* Copyright (C) 2004-2009 Laurent Destailleur <eldy@users.sourceforge.net>
|
||
*
|
||
* 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 2 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, write to the Free Software
|
||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||
*/
|
||
|
||
/**
|
||
\file htdocs/compta/recap-compta.php
|
||
\ingroup compta
|
||
\brief Page de fiche recap compta
|
||
\version $Id$
|
||
*/
|
||
|
||
require("./pre.inc.php");
|
||
require_once(DOL_DOCUMENT_ROOT."/lib/company.lib.php");
|
||
require_once(DOL_DOCUMENT_ROOT."/facture.class.php");
|
||
|
||
$langs->load("companies");
|
||
if ($conf->facture->enabled) $langs->load("bills");
|
||
|
||
// Security check
|
||
$socid = $_GET["socid"];
|
||
if ($user->societe_id > 0)
|
||
{
|
||
$action = '';
|
||
$socid = $user->societe_id;
|
||
}
|
||
|
||
|
||
/*
|
||
* View
|
||
*/
|
||
|
||
llxHeader();
|
||
|
||
if ($socid > 0)
|
||
{
|
||
$societe = new Societe($db);
|
||
$societe->fetch($socid);
|
||
|
||
/*
|
||
* Affichage onglets
|
||
*/
|
||
$head = societe_prepare_head($societe);
|
||
|
||
dol_fiche_head($head, 'compta', $langs->trans("ThirdParty"));
|
||
|
||
print "<table width=\"100%\">\n";
|
||
print '<tr><td valign="top" width="50%">';
|
||
|
||
print '<table class="border" width="100%">';
|
||
|
||
// Nom
|
||
print '<tr><td width="20%">'.$langs->trans("Name").'</td><td width="80%" colspan="3">'.$societe->nom.'</td></tr>';
|
||
|
||
// Prefix
|
||
print '<tr><td>'.$langs->trans("Prefix").'</td><td colspan="3">';
|
||
print ($societe->prefix_comm?$societe->prefix_comm:' ');
|
||
print '</td></tr>';
|
||
|
||
print "</table>";
|
||
|
||
print "</td></tr></table>\n";
|
||
|
||
print '</div>';
|
||
|
||
|
||
if ($conf->facture->enabled && $user->rights->facture->lire)
|
||
{
|
||
// Factures
|
||
print_fiche_titre($langs->trans("AccountancyPreview"));
|
||
|
||
print '<table class="noborder" width="100%">';
|
||
|
||
$sql = "SELECT s.nom, s.rowid as socid, f.facnumber, f.amount, ".$db->pdate("f.datef")." as df,";
|
||
$sql.= " f.paye as paye, f.fk_statut as statut, f.rowid as facid,";
|
||
$sql.= " u.login, u.rowid as userid";
|
||
$sql.= " FROM ".MAIN_DB_PREFIX."societe as s,".MAIN_DB_PREFIX."facture as f,".MAIN_DB_PREFIX."user as u";
|
||
$sql.= " WHERE f.fk_soc = s.rowid AND s.rowid = ".$societe->id;
|
||
$sql.= " AND f.fk_user_valid = u.rowid";
|
||
$sql.= " ORDER BY f.datef DESC";
|
||
|
||
$resql=$db->query($sql);
|
||
if ($resql)
|
||
{
|
||
$var=true;
|
||
$num = $db->num_rows($resql);
|
||
|
||
print '<tr class="liste_titre">';
|
||
print '<td width="100" align="center">'.$langs->trans("Date").'</td>';
|
||
print '<td> </td>';
|
||
print '<td>'.$langs->trans("Status").'</td>';
|
||
print '<td align="right">'.$langs->trans("Debit").'</td>';
|
||
print '<td align="right">'.$langs->trans("Credit").'</td>';
|
||
print '<td align="right">'.$langs->trans("Balance").'</td>';
|
||
print '<td> </td>';
|
||
print '</tr>';
|
||
|
||
if (! $num > 0)
|
||
{
|
||
print '<tr><td colspan="7">'.$langs->trans("NoInvoice").'</td></tr>';
|
||
}
|
||
|
||
$solde = 0;
|
||
|
||
// Boucle sur chaque facture
|
||
for ($i = 0 ; $i < $num ; $i++)
|
||
{
|
||
$objf = $db->fetch_object($resql);
|
||
|
||
$fac = new Facture($db);
|
||
$ret=$fac->fetch($objf->facid);
|
||
if ($ret < 0)
|
||
{
|
||
print $fac->error."<br>";
|
||
continue;
|
||
}
|
||
$totalpaye = $fac->getSommePaiement();
|
||
|
||
$var=!$var;
|
||
print "<tr $bc[$var]>";
|
||
|
||
print "<td align=\"center\">".dol_print_date($fac->date)."</td>\n";
|
||
print "<td><a href=\"../compta/facture.php?facid=$fac->id\">".img_object($langs->trans("ShowBill"),"bill")." ".$fac->ref."</a></td>\n";
|
||
|
||
print '<td aling="left">'.$fac->getLibStatut(2,$totalpaye).'</td>';
|
||
print '<td align="right">'.price($fac->total_ttc)."</td>\n";
|
||
$solde = $solde + $fac->total_ttc;
|
||
|
||
print '<td align="right"> </td>';
|
||
print '<td align="right">'.price($solde)."</td>\n";
|
||
|
||
// Auteur
|
||
print '<td nowrap="nowrap" width="50"><a href="'.DOL_URL_ROOT.'/user/fiche.php?id='.$objf->userid.'">'.img_object($langs->trans("ShowUser"),'user').' '.$objf->login.'</a></td>';
|
||
|
||
print "</tr>\n";
|
||
|
||
// Paiements
|
||
$sql = "SELECT p.rowid,".$db->pdate("p.datep")." as dp, pf.amount, p.statut,";
|
||
$sql.= " p.fk_user_creat, u.login, u.rowid as userid";
|
||
$sql.= " FROM ".MAIN_DB_PREFIX."paiement_facture as pf,";
|
||
$sql.= " ".MAIN_DB_PREFIX."paiement as p";
|
||
$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."user as u ON p.fk_user_creat = u.rowid";
|
||
$sql.= " WHERE pf.fk_paiement = p.rowid";
|
||
$sql.= " AND pf.fk_facture = ".$fac->id;
|
||
|
||
$resqlp = $db->query($sql);
|
||
if ($resqlp)
|
||
{
|
||
$nump = $db->num_rows($resqlp);
|
||
$j = 0;
|
||
|
||
while ($j < $nump)
|
||
{
|
||
$objp = $db->fetch_object($resqlp);
|
||
//$var=!$var;
|
||
print "<tr $bc[$var]>";
|
||
print '<td align="center">'.dol_print_date($objp->dp)."</td>\n";
|
||
print '<td>';
|
||
print ' '; // D<>calage
|
||
print '<a href="paiement/fiche.php?id='.$objp->rowid.'">'.img_object($langs->trans("ShowPayment"),"payment").' '.$langs->trans("Payment").' '.$objp->rowid.'</td>';
|
||
print "<td> </td>\n";
|
||
print "<td> </td>\n";
|
||
print '<td align="right">'.price($objp->amount).'</td>';
|
||
$solde = $solde - $objp->amount;
|
||
print '<td align="right">'.price($solde)."</td>\n";
|
||
|
||
// Auteur
|
||
print '<td nowrap="nowrap" width="50"><a href="'.DOL_URL_ROOT.'/user/fiche.php?id='.$objp->userid.'">'.img_object($langs->trans("ShowUser"),'user').' '.$objp->login.'</a></td>';
|
||
|
||
print '</tr>';
|
||
|
||
$j++;
|
||
}
|
||
|
||
$db->free($resqlp);
|
||
}
|
||
else
|
||
{
|
||
dol_print_error($db);
|
||
}
|
||
}
|
||
}
|
||
else
|
||
{
|
||
dol_print_error($db);
|
||
}
|
||
print "</table>";
|
||
print "<br>";
|
||
}
|
||
}
|
||
else
|
||
{
|
||
dol_print_error($db);
|
||
}
|
||
|
||
|
||
$db->close();
|
||
|
||
llxFooter('$Date$ - $Revision$');
|
||
?>
|