dolibarr  16.0.5
info.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2005-2010 Laurent Destailleur <eldy@users.sourceforge.net>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program. If not, see <https://www.gnu.org/licenses/>.
16  */
17 
24 require '../../main.inc.php';
25 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
26 require_once DOL_DOCUMENT_ROOT.'/compta/paiement/class/paiement.class.php';
27 require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
28 
29 // Load translation files required by the page
30 $langs->loadLangs(array('banks', 'categories', 'companies'));
31 
32 $id = GETPOST("rowid", 'int');
33 $accountid = (GETPOST('id', 'int') ? GETPOST('id', 'int') : GETPOST('account', 'int'));
34 $ref = GETPOST('ref', 'alpha');
35 
36 // Security check
37 $fieldvalue = (!empty($id) ? $id : (!empty($ref) ? $ref : ''));
38 
39 $fieldtype = (!empty($ref) ? 'ref' : 'rowid');
40 if ($user->socid) {
41  $socid = $user->socid;
42 }
43 
44 $result = restrictedArea($user, 'banque', $accountid, 'bank_account');
45 if (empty($user->rights->banque->lire) && empty($user->rights->banque->consolidate)) {
47 }
48 
49 
50 /*
51  * View
52  */
53 
54 llxHeader();
55 
56 $object = new AccountLine($db);
57 $object->fetch($id);
58 $object->info($id);
59 
60 
61 $h = 0;
62 
63 $head[$h][0] = DOL_URL_ROOT.'/compta/bank/line.php?rowid='.$id;
64 $head[$h][1] = $langs->trans("BankTransaction");
65 $h++;
66 
67 $head[$h][0] = DOL_URL_ROOT.'/compta/bank/info.php?rowid='.$id;
68 $head[$h][1] = $langs->trans("Info");
69 $hselected = $h;
70 $h++;
71 
72 
73 print dol_get_fiche_head($head, $hselected, $langs->trans("LineRecord"), -1, 'accountline');
74 
75 $linkback = '<a href="'.DOL_URL_ROOT.'/compta/bank/bankentries_list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
76 
77 
78 dol_banner_tab($object, 'rowid', $linkback);
79 
80 print '<div class="underbanner clearboth"></div>';
81 print '<br>';
82 
83 print '<table width="100%"><tr><td>';
84 dol_print_object_info($object);
85 print '</td></tr></table>';
86 
87 print '</div>';
88 
89 // End of page
90 llxFooter();
91 $db->close();
restrictedArea
restrictedArea($user, $features, $objectid=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.
Definition: security.lib.php:234
llxFooter
llxFooter()
Empty footer.
Definition: wrapper.php:73
GETPOST
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
Definition: functions.lib.php:484
dol_banner_tab
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.
Definition: functions.lib.php:2046
dol_get_fiche_head
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
Definition: functions.lib.php:1822
dol_print_object_info
dol_print_object_info($object, $usetable=0)
Show informations on an object TODO Move this into html.formother.
Definition: functions2.lib.php:205
AccountLine
Class to manage bank transaction lines.
Definition: account.class.php:1779
accessforbidden
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program Calling this function terminate execution ...
Definition: security.lib.php:933
llxHeader
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOCSRFCHECK')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:59