mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-17 23:11:29 +01:00
257 lines
7.0 KiB
PHP
257 lines
7.0 KiB
PHP
<?php
|
|
/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2010-2013 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2012 Regis Houssin <regis.houssin@capnetworks.com>
|
|
* Copyright (C) 2013 Peter Fontaine <contact@peterfontaine.fr>
|
|
* Copyright (C) 2015 Alexandre Spangaro <aspangaro.dolibarr@gmail.com>
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/user/class/userbankaccount.class.php
|
|
* \ingroup user
|
|
* \brief File of class to manage bank accounts description of users
|
|
*/
|
|
|
|
require_once DOL_DOCUMENT_ROOT .'/compta/bank/class/account.class.php';
|
|
|
|
|
|
/**
|
|
* Class to manage bank accounts description of third parties
|
|
*/
|
|
class UserBankAccount extends Account
|
|
{
|
|
var $socid;
|
|
|
|
var $datec;
|
|
var $datem;
|
|
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param DoliDB $db Database handler
|
|
*/
|
|
function __construct($db)
|
|
{
|
|
$this->db = $db;
|
|
|
|
$this->socid = 0;
|
|
$this->clos = 0;
|
|
$this->solde = 0;
|
|
$this->error_number = 0;
|
|
return 1;
|
|
}
|
|
|
|
|
|
/**
|
|
* Create bank information record
|
|
*
|
|
* @param Object $user User
|
|
* @return int <0 if KO, >= 0 if OK
|
|
*/
|
|
function create($user='')
|
|
{
|
|
$now=dol_now();
|
|
|
|
$sql = "INSERT INTO ".MAIN_DB_PREFIX."user_rib (fk_user, datec)";
|
|
$sql.= " VALUES (".$this->userid.", '".$this->db->idate($now)."')";
|
|
$resql=$this->db->query($sql);
|
|
if ($resql)
|
|
{
|
|
if ($this->db->affected_rows($resql))
|
|
{
|
|
$this->id = $this->db->last_insert_id(MAIN_DB_PREFIX."user_rib");
|
|
return 1;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print $this->db->error();
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Update bank account
|
|
*
|
|
* @param User $user Object user
|
|
* @return int <=0 if KO, >0 if OK
|
|
*/
|
|
function update($user='')
|
|
{
|
|
global $conf;
|
|
|
|
if (! $this->id)
|
|
{
|
|
$this->create();
|
|
}
|
|
|
|
$sql = "UPDATE ".MAIN_DB_PREFIX."user_rib SET";
|
|
$sql.= " bank = '" .$this->db->escape($this->bank)."'";
|
|
$sql.= ",code_banque='".$this->code_banque."'";
|
|
$sql.= ",code_guichet='".$this->code_guichet."'";
|
|
$sql.= ",number='".$this->number."'";
|
|
$sql.= ",cle_rib='".$this->cle_rib."'";
|
|
$sql.= ",bic='".$this->bic."'";
|
|
$sql.= ",iban_prefix = '".$this->iban."'";
|
|
$sql.= ",domiciliation='".$this->db->escape($this->domiciliation)."'";
|
|
$sql.= ",proprio = '".$this->db->escape($this->proprio)."'";
|
|
$sql.= ",owner_address = '".$this->db->escape($this->owner_address)."'";
|
|
|
|
if (trim($this->label) != '')
|
|
$sql.= ",label = '".$this->db->escape($this->label)."'";
|
|
else
|
|
$sql.= ",label = NULL";
|
|
$sql.= " WHERE rowid = ".$this->id;
|
|
|
|
$result = $this->db->query($sql);
|
|
if ($result)
|
|
{
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
dol_print_error($this->db);
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Load record from database
|
|
*
|
|
* @param int $id Id of record
|
|
* @return int <0 if KO, >0 if OK
|
|
*/
|
|
function fetch($id)
|
|
{
|
|
if (empty($id)) return -1;
|
|
|
|
$sql = "SELECT rowid, fk_user, entity, bank, number, code_banque, code_guichet, cle_rib, bic, iban_prefix as iban, domiciliation, proprio,";
|
|
$sql.= " owner_address, label, datec, tms as datem";
|
|
$sql.= " FROM ".MAIN_DB_PREFIX."user_rib";
|
|
if ($id) $sql.= " WHERE rowid = ".$id;
|
|
if ($socid) $sql.= " WHERE fk_user = ".$userid;
|
|
|
|
$resql = $this->db->query($sql);
|
|
if ($resql)
|
|
{
|
|
if ($this->db->num_rows($resql))
|
|
{
|
|
$obj = $this->db->fetch_object($resql);
|
|
|
|
$this->id = $obj->rowid;
|
|
$this->socid = $obj->fk_soc;
|
|
$this->bank = $obj->bank;
|
|
$this->code_banque = $obj->code_banque;
|
|
$this->code_guichet = $obj->code_guichet;
|
|
$this->number = $obj->number;
|
|
$this->cle_rib = $obj->cle_rib;
|
|
$this->bic = $obj->bic;
|
|
$this->iban = $obj->iban;
|
|
$this->domiciliation = $obj->domiciliation;
|
|
$this->proprio = $obj->proprio;
|
|
$this->owner_address = $obj->owner_address;
|
|
$this->label = $obj->label;
|
|
$this->datec = $this->db->jdate($obj->datec);
|
|
$this->datem = $this->db->jdate($obj->datem);
|
|
}
|
|
$this->db->free($resql);
|
|
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
dol_print_error($this->db);
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Return RIB
|
|
*
|
|
* @param boolean $displayriblabel Prepend or Hide Label
|
|
* @return string RIB
|
|
*/
|
|
function getRibLabel($displayriblabel = true)
|
|
{
|
|
global $langs,$conf;
|
|
|
|
if ($this->code_banque || $this->code_guichet || $this->number || $this->cle_rib)
|
|
{
|
|
if ($this->label && $displayriblabel) $rib = $this->label." : ";
|
|
|
|
// Show fields of bank account
|
|
$fieldlists='BankCode DeskCode AccountNumber BankAccountNumberKey';
|
|
if (! empty($conf->global->BANK_SHOW_ORDER_OPTION))
|
|
{
|
|
if (is_numeric($conf->global->BANK_SHOW_ORDER_OPTION))
|
|
{
|
|
if ($conf->global->BANK_SHOW_ORDER_OPTION == '1') $fieldlists='BankCode DeskCode BankAccountNumberKey AccountNumber';
|
|
}
|
|
else $fieldlists=$conf->global->BANK_SHOW_ORDER_OPTION;
|
|
}
|
|
$fieldlistsarray=explode(' ',$fieldlists);
|
|
|
|
foreach($fieldlistsarray as $val)
|
|
{
|
|
if ($val == 'BankCode')
|
|
{
|
|
if ($this->useDetailedBBAN() == 1)
|
|
{
|
|
$rib.=$this->code_banque.' ';
|
|
}
|
|
}
|
|
|
|
if ($val == 'DeskCode')
|
|
{
|
|
if ($this->useDetailedBBAN() == 1)
|
|
{
|
|
$rib.=$this->code_guichet.' ';
|
|
}
|
|
}
|
|
|
|
if ($val == 'BankCode')
|
|
{
|
|
if ($this->useDetailedBBAN() == 2)
|
|
{
|
|
$rib.=$this->code_banque.' ';
|
|
}
|
|
}
|
|
|
|
if ($val == 'AccountNumber')
|
|
{
|
|
$rib.=$this->number.' ';
|
|
}
|
|
|
|
if ($val == 'BankAccountNumberKey')
|
|
{
|
|
if ($this->useDetailedBBAN() == 1)
|
|
{
|
|
$rib.=$this->cle_rib.' ';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$rib='';
|
|
}
|
|
|
|
return $rib;
|
|
}
|
|
}
|
|
|