* * 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. * * $Id$ * $Source$ * */ require("./pre.inc.php3"); llxHeader(); $db = new Db(); function valeur($sql) { global $db; if ( $db->query($sql) ) { if ( $db->num_rows() ) { $valeur = $db->result(0,0); } $db->free(); } return $valeur; } /* * */ $db = new Db(); 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(); } } if ($action == 'del_bookmark') { $sql = "DELETE FROM llx_bookmark WHERE rowid=$bid"; $result = $db->query($sql); } print_titre(translate("Espace compta")); print ''; print ''; print '
'; /* * 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) ) { $num = $db->num_rows(); if ($num) { print ""; print ""; print ""; print "\n"; $i = 0; while ($i < $num) { $obj = $db->fetch_object( $i); $var = !$var; print ""; print ''; print ''; print ''; $i++; } print '
Charges à payer
'.$obj->libelle.''.price($obj->amount).'

'; } } else { print $db->error(); } /* * Propales */ if ($user->comm > 0 && $conf->commercial ) { print ''; print ""; print ''; print "\n"; $sql = "SELECT count(*) FROM llx_propal WHERE fk_statut = 2"; if (valeur($sql)) { $var=!$var; print ""; } print "
'.translate("Propositions commerciales").'
A facturer".valeur($sql)."

"; } /* * Factures */ print ''; print ""; print ''; print "\n"; $sql = "SELECT count(*) FROM llx_facture WHERE paye = 0"; if (valeur($sql)) { $var=!$var; print ""; } print "
'.translate("Bills").'
Non payées".valeur($sql)."

"; /* * Bookmark * */ $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(); $i = 0; print ""; print ""; print ""; print "\n"; while ($i < $num) { $obj = $db->fetch_object( $i); $var = !$var; print ""; print ''; print ''; print ''; $i++; } print '
Bookmark
'.$obj->nom.''; print '
'; } /* * Actions a faire * * */ print '
'; $result = 0; if ( $result ) { print ''; print ""; print ""; print "\n"; $i = 0; while ($i < $db->num_rows() ) { $obj = $db->fetch_object($i); $var=!$var; print ""; $i++; } $db->free(); print "
Actions à faire
".strftime("%d %b %Y",$obj->da)."$obj->libelle $obj->label

"; } else { print $db->error(); } print '
'; $db->close(); llxFooter("Dernière modification $Date$ révision $Revision$"); ?>