* * 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: fiche.php,v 1.1 2005/08/01 12:35:24 rodolphe Exp $ * $Source: /srv/cvs/sources/dolibarr/dolibarr/htdocs/fourn/paiement/fiche.php,v $ * */ /** \file htdocs/compta/paiement/fiche.php \ingroup facture \brief Onglet paiement d'un paiement \version $Revision: 1.1 $ */ require("./pre.inc.php"); require(DOL_DOCUMENT_ROOT."/fourn/facture/paiementfourn.class.php"); $user->getrights('facture'); $langs->load("bills"); $langs->load("banks"); $langs->load("companies"); /* * * */ llxHeader(); print '
'; print ''.$langs->trans("Payment").''; print ''.$langs->trans("Info").''; print '
'; print '
'; /* * Visualisation de la fiche * */ $facture = new FactureFournisseur($db); $paiement = new PaiementFourn($db); if ($paiement->fetch($_GET["id"], $user) == 0) { $html = new Form($db); $facture->fetch($paiement->facture_id); /* * Confirmation de la suppression du paiement * */ if ($_GET["action"] == 'delete') { print '
'; $html->form_confirm("fiche.php?id=$paiement->id","Supprimer le paiement","Etes-vous sūr de vouloir supprimer ce paiement ?","confirm_delete"); print '
'; } if ($_GET["action"] == 'valide') { print '
'; $html->form_confirm("fiche.php?id=$paiement->id","Valider le paiement","Etes-vous sūr de vouloir valider ce paiment, auncune modification n'est possible une fois le paiement validé ?","confirm_valide"); print '
'; } print '
'; print ''; print ''; print "
'; if ($paiement->bank_account) { // Si compte renseigné, on affiche libelle $bank=new Account($db); $bank->fetch($paiement->bank_account); print $langs->trans("BankAccount").' : '.$bank->label.'
'; } print $langs->trans("Date").' : '.dolibarr_print_date($paiement->date)."
"; print $langs->trans("Bill").' : '.$facture->ref."
"; print $langs->trans("Type").' : '.$paiement->type_libelle."
"; if ($paiement->numero) { print $langs->trans("Numero").' : '.$paiement->numero."
"; } print $langs->trans("Amount").' : '.$paiement->montant." ".$conf->monnaie."
"; print '
"; print nl2br($paiement->note); /* * * print "
"; print '
'; if ($user->societe_id == 0 && $paiement->statut == 0 && $_GET["action"] == '') { print ''.$langs->trans("Valid").''; } if ($user->societe_id == 0 && $allow_delete && $paiement->statut == 0 && $_GET["action"] == '') { print ''.$langs->trans("Delete").''; } print "
"; */ } else { print "Erreur de lecture"; } $db->close(); llxFooter("Dernière modification $Date: 2005/08/01 12:35:24 $ révision $Revision: 1.1 $"); ?>