dolibarr/htdocs/compta/index.php3

280 lines
6.1 KiB
PHP
Raw Normal View History

2002-04-30 12:44:42 +02:00
<?PHP
2003-03-23 19:17:15 +01:00
/* Copyright (C) 2001-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
2002-04-30 12:44:42 +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 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.
*
2002-06-20 15:23:17 +02:00
* $Id$
* $Source$
*
2002-04-30 12:44:42 +02:00
*/
require("./pre.inc.php3");
2003-03-23 19:17:15 +01:00
/*
* S<EFBFBD>curit<EFBFBD> acc<EFBFBD>s client
*/
if ($user->societe_id > 0)
{
$action = '';
$socidp = $user->societe_id;
}
2002-04-30 12:44:42 +02:00
llxHeader();
2002-05-11 20:53:13 +02:00
$db = new Db();
2002-04-30 12:44:42 +02:00
2002-05-11 20:53:13 +02:00
function valeur($sql) {
global $db;
if ( $db->query($sql) ) {
if ( $db->num_rows() ) {
$valeur = $db->result(0,0);
}
$db->free();
}
return $valeur;
}
/*
*
*/
2002-04-30 12:44:42 +02:00
$db = new Db();
2002-05-11 20:53:13 +02:00
if ($action == 'add_bookmark') {
$sql = "INSERT INTO llx_bookmark (fk_soc, dateb, fk_user) VALUES ($socidp, now(),".$user->id.");";
if (! $db->query($sql) ) {
print $db->error();
}
2002-04-30 12:44:42 +02:00
}
2002-05-11 20:53:13 +02:00
if ($action == 'del_bookmark') {
$sql = "DELETE FROM llx_bookmark WHERE rowid=$bid";
$result = $db->query($sql);
2002-04-30 12:44:42 +02:00
}
2003-02-02 16:01:56 +01:00
/*
*
*
*/
2002-10-01 10:53:09 +02:00
print_titre(translate("Espace compta"));
2002-04-30 12:44:42 +02:00
2002-05-11 20:53:13 +02:00
print '<TABLE border="0" width="100%" cellspacing="0" cellpadding="4">';
2002-04-30 12:44:42 +02:00
2003-02-02 16:01:56 +01:00
print '<tr><td valign="top" width="33%">';
2002-04-30 12:44:42 +02:00
2003-03-23 19:17:15 +01:00
if ($user->societe_id == 0)
2002-12-20 00:17:19 +01:00
{
2003-03-23 19:17:15 +01:00
/*
* Charges a payer
*
*/
$sql = "SELECT c.amount, cc.libelle";
$sql .= " FROM llx_chargesociales as c, c_chargesociales as cc";
$sql .= " WHERE c.fk_type = cc.id AND c.paye=0";
if ( $db->query($sql) )
2002-12-20 00:17:19 +01:00
{
2003-03-23 19:17:15 +01:00
$num = $db->num_rows();
if ($num)
2002-12-20 00:17:19 +01:00
{
2003-03-23 19:17:15 +01:00
print "<TABLE border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"4\">";
print "<TR class=\"liste_titre\">";
print "<TD colspan=\"2\">Charges <20> payer</td>";
print "</TR>\n";
$i = 0;
while ($i < $num)
{
$obj = $db->fetch_object( $i);
$var = !$var;
print "<tr $bc[$var]>";
print '<td>'.$obj->libelle.'</td>';
print '<td align="right">'.price($obj->amount).'</td>';
print '</tr>';
$i++;
}
print '</table><br>';
2002-12-20 00:17:19 +01:00
}
2002-06-20 15:23:17 +02:00
}
2003-03-23 19:17:15 +01:00
else
{
print $db->error();
}
2002-06-20 15:23:17 +02:00
}
/*
* Propales
*/
2002-12-20 00:17:19 +01:00
if ($user->comm > 0 && $conf->commercial )
{
print '<TABLE border="0" cellspacing="0" cellpadding="3" width="100%">';
print "<TR class=\"liste_titre\">";
print '<td colspan="2">'.translate("Propositions commerciales").'</td>';
print "</TR>\n";
$sql = "SELECT count(*) FROM llx_propal WHERE fk_statut = 2";
2003-03-23 19:17:15 +01:00
if ($socidp)
{
$sql .= " AND fk_soc = $socidp";
}
2002-12-20 00:17:19 +01:00
if (valeur($sql))
{
$var=!$var;
print "<tr $bc[$var]><td><a href=\"propal.php3?viewstatut=2\">A facturer</a></td><td align=\"right\">".valeur($sql)."</td></tr>";
}
print "</table><br>";
2002-05-03 13:34:33 +02:00
}
2002-06-20 15:23:17 +02:00
/*
* Factures
*/
2002-05-11 20:53:13 +02:00
print '<TABLE border="0" cellspacing="0" cellpadding="3" width="100%">';
print "<TR class=\"liste_titre\">";
2002-10-01 10:53:09 +02:00
print '<td colspan="2">'.translate("Bills").'</td>';
2002-05-11 20:53:13 +02:00
print "</TR>\n";
$sql = "SELECT facnumber, rowid FROM llx_facture WHERE paye = 0";
2003-03-23 19:17:15 +01:00
if ($socidp)
{
$sql .= " AND fk_soc = $socidp";
}
if ( $db->query($sql) )
{
$num = $db->num_rows();
$i = 0;
while ($i < $num)
{
$obj = $db->fetch_object( $i);
$var=!$var;
print '<tr '.$bc[$var].'><td><a href="facture.php3?facid='.$obj->rowid.'">'.$obj->facnumber."</td></tr>";
$i++;
}
2002-05-03 13:34:33 +02:00
}
2002-05-03 14:16:51 +02:00
2002-05-11 20:53:13 +02:00
print "</table><br>";
/*
2002-06-20 15:23:17 +02:00
* Bookmark
2002-05-11 20:53:13 +02:00
*
*/
$sql = "SELECT s.idp, s.nom,b.rowid as bid";
$sql .= " FROM societe as s, llx_bookmark as b";
$sql .= " WHERE b.fk_soc = s.idp AND b.fk_user = ".$user->id;
$sql .= " ORDER BY lower(s.nom) ASC";
if ( $db->query($sql) ) {
$num = $db->num_rows();
2002-05-03 14:16:51 +02:00
$i = 0;
2002-05-11 20:53:13 +02:00
2002-05-03 14:16:51 +02:00
print "<TABLE border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"4\">";
2002-05-11 20:53:13 +02:00
print "<TR class=\"liste_titre\">";
print "<TD colspan=\"2\">Bookmark</td>";
2002-05-03 14:16:51 +02:00
print "</TR>\n";
2002-05-11 20:53:13 +02:00
while ($i < $num) {
$obj = $db->fetch_object( $i);
$var = !$var;
print "<tr $bc[$var]>";
print '<td><a href="fiche.php3?socid='.$obj->idp.'">'.$obj->nom.'</a></td>';
print '<td align="right"><a href="index.php3?action=del_bookmark&bid='.$obj->bid.'">';
print '<img src="/theme/'.$conf->theme.'/img/editdelete.png" border="0"></a></td>';
print '</tr>';
$i++;
2002-05-03 13:34:33 +02:00
}
2002-05-11 20:53:13 +02:00
print '</table>';
}
/*
2002-06-20 15:23:17 +02:00
* Actions a faire
2002-05-11 20:53:13 +02:00
*
*
*/
2003-02-02 16:01:56 +01:00
print '</td><td valign="top" width="33%">';
2002-05-11 20:53:13 +02:00
$result = 0;
if ( $result ) {
2002-04-30 12:44:42 +02:00
2002-05-11 20:53:13 +02:00
print '<TABLE border="0" cellspacing="0" cellpadding="3" width="100%">';
print "<TR class=\"liste_titre\">";
print "<td colspan=\"2\">Actions <20> faire</td>";
print "</TR>\n";
2002-04-30 12:44:42 +02:00
2002-05-11 20:53:13 +02:00
$i = 0;
while ($i < $db->num_rows() ) {
$obj = $db->fetch_object($i);
$var=!$var;
print "<tr $bc[$var]><td>".strftime("%d %b %Y",$obj->da)."</td><td><a href=\"action/fiche.php3\">$obj->libelle $obj->label</a></td></tr>";
$i++;
}
2002-04-30 12:44:42 +02:00
$db->free();
2002-05-11 20:53:13 +02:00
print "</table><br>";
2002-04-30 12:44:42 +02:00
} else {
print $db->error();
}
2003-02-02 16:01:56 +01:00
/*
*
*
*/
2003-03-23 19:17:15 +01:00
2003-02-02 16:01:56 +01:00
/*
* Charges a payer
*
*/
2003-03-23 19:17:15 +01:00
if ($user->societe_id == 0)
2003-02-02 16:01:56 +01:00
{
2003-03-23 19:17:15 +01:00
$sql = "SELECT ff.amount, ff.libelle";
$sql .= " FROM llx_facture_fourn as ff";
$sql .= " WHERE ff.paye=0";
if ( $db->query($sql) )
2003-02-02 16:01:56 +01:00
{
2003-03-23 19:17:15 +01:00
$num = $db->num_rows();
if ($num)
2003-02-02 16:01:56 +01:00
{
2003-03-23 19:17:15 +01:00
print '<table border="0" width="100%" cellspacing="0" cellpadding="4">';
print '<TR class="liste_titre">';
print '<TD colspan="2">Charges <20> payer</td>';
print "</TR>\n";
$i = 0;
while ($i < $num)
{
$obj = $db->fetch_object( $i);
$var = !$var;
print "<tr $bc[$var]>";
print '<td>'.$obj->libelle.'</td>';
print '<td align="right">'.price($obj->amount).'</td>';
print '</tr>';
$i++;
}
print '</table><br>';
2003-02-02 16:01:56 +01:00
}
}
2003-03-23 19:17:15 +01:00
else
{
print $db->error();
}
2003-02-02 16:01:56 +01:00
}
2002-05-03 13:34:33 +02:00
2003-02-02 16:01:56 +01:00
print '</td><td width="40%">&nbsp;</td></tr>';
2002-05-11 20:53:13 +02:00
print '</table>';
2002-05-03 13:34:33 +02:00
2002-04-30 12:44:42 +02:00
$db->close();
2002-05-11 20:53:13 +02:00
2002-04-30 12:44:42 +02:00
llxFooter("<em>Derni&egrave;re modification $Date$ r&eacute;vision $Revision$</em>");
?>