diff --git a/htdocs/compta/dons/fiche.php b/htdocs/compta/dons/fiche.php new file mode 100644 index 00000000000..5c0d3bb6cbb --- /dev/null +++ b/htdocs/compta/dons/fiche.php @@ -0,0 +1,290 @@ + + * + * 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.php"); +require("../../don.class.php"); +require("../../paiement.class.php"); + +$db = new Db(); + +if ($action == 'add') +{ + + if ($amount > 0) + { + + $don = new Don($db); + + $don->nom = $nom; + $don->adresse = $adresse; + $don->amount = $amount; + $don->cp = $cp; + $don->ville = $ville; + $don->date = $db->idate(mktime(12, 0 , 0, $remonth, $reday, $reyear)); + $don->note = $note; + $don->public = $public; + $don->projetid = $projetid; + $don->modepaiement = $modepaiement; + + if ($don->create($user->id) ) + { + + Header("Location: index.php"); + + } + } + else + { + print "Erreur"; + $action = "create"; + } + +} + +if ($action == 'delete') +{ + $don = new Don($db); + $don->delete($rowid); +} +if ($action == 'valid_promesse') +{ + $don = new Don($db); + if ($don->valid_promesse($rowid, $user->id)) + { + Header("Location: liste.php?statut=0"); + } +} +if ($action == 'set_paye') +{ + $don = new Don($db); + if ($don->set_paye($rowid)) + { + Header("Location: liste.php?statut=1"); + } +} +if ($action == 'set_encaisse') +{ + $don = new Don($db); + if ($don->set_encaisse($rowid)) + { + Header("Location: liste.php?statut=2"); + } +} + + + +llxHeader(); + +if ($action == 'create') { + + $sql = "SELECT s.nom,s.idp, f.amount, f.total, f.facnumber"; + $sql .= " FROM societe as s, llx_facture as f WHERE f.fk_soc = s.idp"; + $sql .= " AND f.rowid = $facid"; + + $result = $db->query($sql); + if ($result) { + $num = $db->num_rows(); + if ($num) { + $obj = $db->fetch_object( 0); + + $total = $obj->total; + } + } + print_titre("Saisir un don"); + print "