dolibarr  13.0.2
info.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2004-2009 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2013 Marcos GarcĂ­a <marcosgdf@gmail.com>
5  * Copyright (C) 2015 Alexandre Spangaro <aspangaro@open-dsi.fr>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <https://www.gnu.org/licenses/>.
19  */
20 
27 require '../../main.inc.php';
28 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
29 require_once DOL_DOCUMENT_ROOT.'/expensereport/class/paymentexpensereport.class.php';
30 require_once DOL_DOCUMENT_ROOT.'/core/lib/expensereport.lib.php';
31 
32 // Load translation files required by the page
33 $langs->loadLangs(array('bills', 'trips'));
34 
35 $id = GETPOST('id');
36 $ref = GETPOST('ref', 'alpha');
37 $action = GETPOST('action', 'aZ09');
38 $confirm = GETPOST('confirm', 'alpha');
39 
40 /*
41  * Actions
42  */
43 
44 // None
45 
46 
47 /*
48  * View
49  */
50 
51 llxHeader('', $langs->trans("Payment"));
52 
53 $object = new PaymentExpenseReport($db);
54 $object->fetch($id, $ref);
55 $object->info($object->id);
56 
57 $head = payment_expensereport_prepare_head($object);
58 
59 print dol_get_fiche_head($head, 'info', $langs->trans("ExpenseReportPayment"), -1, 'payment');
60 
61 
62 //$linkback = '<a href="' . DOL_URL_ROOT . '/expensereport/payment/list.php">' . $langs->trans("BackToList") . '</a>';
63 
64 dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', '');
65 
66 
67 print '<div class="fichecenter">';
68 print '<div class="underbanner clearboth"></div>';
69 
70 print '<br>';
71 
72 print '<table width="100%"><tr><td>';
73 dol_print_object_info($object);
74 print '</td></tr></table>';
75 
76 print '</div>';
77 
79 
80 // End of page
81 llxFooter();
82 $db->close();
GETPOST($paramname, $check= 'alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_print_object_info($object, $usetable=0)
Show informations on an object TODO Move this into html.formother.
payment_expensereport_prepare_head(PaymentExpenseReport $object)
Returns an array with the tabs for the &quot;Expense report payment&quot; section It loads tabs from modules lo...
llxHeader()
Empty header.
Definition: wrapper.php:45
dol_get_fiche_head($links=array(), $active= '', $title= '', $notab=0, $picto= '', $pictoisfullpath=0, $morehtmlright= '', $morecss= '', $limittoshow=0, $moretabssuffix= '')
Show tabs of a record.
print
Draft customers invoices.
Definition: index.php:89
Class to manage payments of expense report.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dol_banner_tab($object, $paramid, $morehtml= '', $shownav=1, $fieldid= 'rowid', $fieldref= 'ref', $morehtmlref= '', $moreparam= '', $nodbprefix=0, $morehtmlleft= '', $morehtmlstatus= '', $onlybanner=0, $morehtmlright= '')
Show tab footer of a card.
llxFooter()
Empty footer.
Definition: wrapper.php:59