diff --git a/htdocs/compta/pre.inc.php3 b/htdocs/compta/pre.inc.php3 index 987bd81b692..62630e82495 100644 --- a/htdocs/compta/pre.inc.php3 +++ b/htdocs/compta/pre.inc.php3 @@ -37,6 +37,9 @@ function llxHeader($head = "") { $menu->add_submenu("paiement.php3","Paiements"); // $menu->add_submenu("fac.php3","admin fac"); + $menu->add("charges.php3","Charges"); + $menu->add_submenu("sociales/","Prestations sociales"); + $menu->add("ca.php3","Chiffres d'affaires"); $menu->add_submenu("prev.php3","Prévisionnel"); diff --git a/htdocs/compta/sociales/index.php3 b/htdocs/compta/sociales/index.php3 new file mode 100644 index 00000000000..9376ee4c40f --- /dev/null +++ b/htdocs/compta/sociales/index.php3 @@ -0,0 +1,134 @@ + + * + * $Id$ + * $Source$ + * + * 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. + * + */ +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') { + $sql = "INSERT INTO llx_chargesociales (fk_type, libelle, date_ech,amount) "; + $sql .= " VALUES ($type,'$libelle','$date',$amount);"; + + 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("Charges"); + +/* + * + * + */ + +print "
| Date | Charges | Montant | '; +print " |
| '.$obj->date_ech.' | '; + print ''.$obj->nom.' '.$obj->libelle.' | '; + print ''.price($obj->amount).' | '; + print '![]() | ';
+ print '