dolibarr/htdocs/compta/paiement/info.php

69 lines
1.8 KiB
PHP
Raw Normal View History

<?php
2005-04-15 23:49:23 +02:00
/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
2009-02-19 20:06:12 +01:00
* Copyright (C) 2004-2009 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2013 Marcos García <marcosgdf@gmail.com>
2004-01-31 18:37:48 +01:00
*
* 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 3 of the License, or
2004-01-31 18:37:48 +01:00
* (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
2011-08-03 02:45:22 +02:00
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2004-01-31 18:37:48 +01:00
*/
2004-09-14 22:46:09 +02:00
2005-04-15 23:49:23 +02:00
/**
2009-08-05 20:22:40 +02:00
* \file htdocs/compta/paiement/info.php
* \ingroup facture
* \brief Onglet info d'un paiement
*/
2004-09-14 22:46:09 +02:00
require '../../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
require_once DOL_DOCUMENT_ROOT.'/compta/paiement/class/paiement.class.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/payments.lib.php';
2004-09-14 22:46:09 +02:00
$langs->load("bills");
$langs->load("companies");
$id=GETPOST('id');
2004-01-31 18:37:48 +01:00
/*
2009-02-19 20:06:12 +01:00
* View
2004-01-31 18:37:48 +01:00
*/
llxHeader();
2004-01-31 18:37:48 +01:00
$paiement = new Paiement($db);
$paiement->fetch($id);
$paiement->info($id);
2004-01-31 18:37:48 +01:00
$head = payment_prepare_head($paiement);
dol_fiche_head($head, 'info', $langs->trans("PaymentCustomerInvoice"), 0, 'payment');
print '<table class="border" width="100%">';
// Ref
print '<tr><td valign="top" width="140">'.$langs->trans('Ref').'</td><td colspan="3">'.$paiement->id.'</td></tr>';
print '</table>';
print '<br>';
2004-09-14 22:46:09 +02:00
print '<table width="100%"><tr><td>';
dol_print_object_info($paiement);
2004-09-14 22:46:09 +02:00
print '</td></tr></table>';
2004-01-31 18:37:48 +01:00
print '</div>';
2004-01-31 18:37:48 +01:00
$db->close();
llxFooter();