2002-06-18 22:58:44 +02:00
< ? PHP
/* Copyright ( C ) 2001 - 2002 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
*
* $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 );
}
2002-06-19 13:16:45 +02:00
print_titre ( " Charges sociales $year " );
2002-06-18 22:58:44 +02:00
/*
*
*
*/
print " <TABLE border= \" 0 \" width= \" 100% \" cellspacing= \" 0 \" cellpadding= \" 4 \" > " ;
print " <TR class= \" liste_titre \" > " ;
2002-06-19 13:16:45 +02:00
print '<td>Echeance</td><td>P<> riode</td><td colspan="2">' ;
print_liste_field_titre ( " Charges " , $PHP_SELF , " c.libelle " );
2002-06-20 15:23:17 +02:00
print '</td><td align="right">Montant</td><td colspan="2"> </td>' ;
2002-06-18 22:58:44 +02:00
print " </TR> \n " ;
2002-06-20 15:23:17 +02:00
$sql = " SELECT c.libelle as nom, s.amount, " . $db -> pdate ( " s.date_ech " ) . " as de, s.date_pai, s.libelle, s.paye, " . $db -> pdate ( " s.periode " ) . " as periode, " . $db -> pdate ( " s.date_pai " ) . " as dp " ;
2002-06-18 22:58:44 +02:00
$sql .= " FROM c_chargesociales as c, llx_chargesociales as s " ;
$sql .= " WHERE s.fk_type = c.id " ;
2002-06-19 00:34:04 +02:00
if ( $year > 0 ) {
$sql .= " AND date_format(s.periode, '%Y') = $year " ;
}
2002-06-18 22:58:44 +02:00
$sql .= " ORDER BY lower(s.date_ech) DESC " ;
if ( $db -> query ( $sql ) ) {
$num = $db -> num_rows ();
$i = 0 ;
while ( $i < $num ) {
$obj = $db -> fetch_object ( $i );
$var = ! $var ;
print " <tr $bc[$var] > " ;
2002-06-20 15:23:17 +02:00
print '<td>' . strftime ( " %d %b %y " , $obj -> de ) . '</td>' ;
print '<td><a href="index.php3?year=' . strftime ( " %Y " , $obj -> periode ) . '">' . strftime ( " %Y " , $obj -> periode ) . '</a></td>' ;
2002-06-18 23:21:43 +02:00
print '<td>' . $obj -> nom . '</td><td>' . $obj -> libelle . '</td>' ;
2002-06-18 22:58:44 +02:00
print '<td align="right">' . price ( $obj -> amount ) . '</td>' ;
2002-06-20 15:23:17 +02:00
2002-06-18 23:12:32 +02:00
if ( $obj -> paye ) {
2002-06-20 15:23:17 +02:00
print '<td colspan="2">' . strftime ( " %d/%m/%y " , $obj -> dp ) . '</td>' ;
2002-06-18 23:12:32 +02:00
} else {
2002-06-20 15:23:17 +02:00
print '<td><img src="/theme/' . $conf -> theme . '/img/editdelete.png" border="0"></a></td>' ;
print '<td><img src="/theme/' . $conf -> theme . '/img/editdelete.png" border="0"></a></td>' ;
2002-06-18 23:12:32 +02:00
}
2002-06-18 22:58:44 +02:00
print '</tr>' ;
$i ++ ;
}
} else {
print $db -> error ();
}
/*
*
*
*
*/
print '<tr><form method="post" action="index.php3">' ;
print '<input type="hidden" name="action" value="add">' ;
print '<td><input type="text" size="8" name="date"></td>' ;
2002-06-18 23:21:43 +02:00
print '<td colspan="2"><select name="type">' ;
2002-06-18 22:58:44 +02:00
$sql = " SELECT c.id, c.libelle as nom FROM c_chargesociales as c " ;
$sql .= " ORDER BY lower(c.libelle) ASC " ;
if ( $db -> query ( $sql ) ) {
$num = $db -> num_rows ();
$i = 0 ;
while ( $i < $num ) {
$obj = $db -> fetch_object ( $i );
print '<option value="' . $obj -> id . '">' . $obj -> nom ;
$i ++ ;
}
}
print '</select>' ;
print '<input type="text" size="20" name="libelle"></td>' ;
print '<td align="right"><input type="text" size="6" name="amount"></td>' ;
print '<tr><td><input type="submit"></form></td>' ;
print '</table>' ;
$db -> close ();
llxFooter ( " <em>Dernière modification $Date $ révision $Revision $ </em> " );
?>