dolibarr/htdocs/compta/paiement/info.php

81 lines
2.1 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
2018-05-27 09:27:09 +02:00
// Load translation files required by the page
$langs->loadLangs(array('bills', 'companies'));
2004-09-14 22:46:09 +02:00
$id=GETPOST('id');
2017-04-07 14:18:04 +02:00
$ref=GETPOST('ref', 'alpha');
$action=GETPOST('action','alpha');
$confirm=GETPOST('confirm','alpha');
/*
* Actions
*/
// None
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
*/
2017-04-07 14:18:04 +02:00
llxHeader('', $langs->trans("Payment"));
2016-05-18 21:04:37 +02:00
$object = new Paiement($db);
2017-04-07 14:18:04 +02:00
$object->fetch($id, $ref);
$object->info($object->id);
2004-01-31 18:37:48 +01:00
2016-05-18 21:04:37 +02:00
$head = payment_prepare_head($object);
2017-04-07 14:18:04 +02:00
dol_fiche_head($head, 'info', $langs->trans("PaymentCustomerInvoice"), -1, 'payment');
2016-05-18 21:04:37 +02:00
$linkback = '<a href="' . DOL_URL_ROOT . '/compta/paiement/list.php">' . $langs->trans("BackToList") . '</a>';
2017-04-07 14:18:04 +02:00
dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', '');
2016-05-18 21:04:37 +02:00
2017-04-07 14:18:04 +02:00
print '<div class="fichecenter">';
print '<div class="underbanner clearboth"></div>';
print '<br>';
2004-09-14 22:46:09 +02:00
print '<table width="100%"><tr><td>';
2016-05-18 21:04:37 +02:00
dol_print_object_info($object);
2004-09-14 22:46:09 +02:00
print '</td></tr></table>';
2004-01-31 18:37:48 +01:00
print '</div>';
2017-04-07 14:18:04 +02:00
dol_fiche_end();
llxFooter();
$db->close();