mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-26 19:31:31 +01:00
464 lines
14 KiB
PHP
464 lines
14 KiB
PHP
<?php
|
|
/* Copyright (C) 2002-2006 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2003 Jean-Louis Bergamo <jlb@j1b.org>
|
|
* Copyright (C) 2004-2008 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copytight (C) 2005-2009 Regis Houssin <regis.houssin@capnetworks.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/compta/bank/bankid_fr.php
|
|
* \ingroup banque
|
|
* \brief Fiche creation compte bancaire
|
|
*/
|
|
|
|
require('../../main.inc.php');
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/bank.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
|
|
|
|
$langs->load("banks");
|
|
$langs->load("categories");
|
|
$langs->load("bills");
|
|
|
|
$action=GETPOST('action');
|
|
$id=GETPOST('id');
|
|
|
|
// Security check
|
|
if (isset($_GET["id"]) || isset($_GET["ref"]))
|
|
{
|
|
$id = isset($_GET["id"])?$_GET["id"]:(isset($_GET["ref"])?$_GET["ref"]:'');
|
|
}
|
|
$fieldid = isset($_GET["ref"])?'ref':'rowid';
|
|
if ($user->societe_id) $socid=$user->societe_id;
|
|
$result=restrictedArea($user,'banque',$id,'bank_account&bank_account','','',$fieldid);
|
|
|
|
|
|
/*
|
|
* Actions
|
|
*/
|
|
|
|
if ($action == 'update' && ! $_POST["cancel"])
|
|
{
|
|
// Modification
|
|
$account = new Account($db);
|
|
$account->fetch($id);
|
|
|
|
$account->bank = trim($_POST["bank"]);
|
|
$account->code_banque = trim($_POST["code_banque"]);
|
|
$account->code_guichet = trim($_POST["code_guichet"]);
|
|
$account->number = trim($_POST["number"]);
|
|
$account->cle_rib = trim($_POST["cle_rib"]);
|
|
$account->bic = trim($_POST["bic"]);
|
|
$account->iban = trim($_POST["iban_prefix"]);
|
|
$account->iban_prefix = trim($_POST["iban_prefix"]); // deprecated
|
|
$account->domiciliation = trim($_POST["domiciliation"]);
|
|
$account->proprio = trim($_POST["proprio"]);
|
|
$account->owner_address = trim($_POST["owner_address"]);
|
|
$account->state_id = trim($_POST["state_id"]);
|
|
//$account->country_id = trim($_POST["country_id"]); // We do not change this.
|
|
|
|
if ($account->id)
|
|
{
|
|
$result = $account->update_bban($user);
|
|
if ($result >= 0)
|
|
{
|
|
$_GET["id"]=$_POST["id"]; // Force chargement page en mode visu
|
|
}
|
|
else
|
|
{
|
|
$message='<div class="error">'.$account->error.'</div>';
|
|
$action='edit'; // Force chargement page edition
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($action == 'confirm_delete' && $_POST["confirm"] == "yes" && $user->rights->banque->configurer)
|
|
{
|
|
// Modification
|
|
$account = new Account($db, $_GET["id"]);
|
|
$account->delete($_GET["id"]);
|
|
|
|
header("Location: ".DOL_URL_ROOT."/compta/bank/index.php");
|
|
exit;
|
|
}
|
|
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
llxHeader();
|
|
|
|
$form = new Form($db);
|
|
|
|
/* ************************************************************************** */
|
|
/* */
|
|
/* Affichage page en mode creation */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
if (($_GET["id"] || $_GET["ref"]) && $action != 'edit')
|
|
{
|
|
$account = new Account($db);
|
|
if ($_GET["id"])
|
|
{
|
|
$result=$account->fetch($id);
|
|
}
|
|
if ($_GET["ref"])
|
|
{
|
|
$result=$account->fetch(0,$_GET["ref"]);
|
|
$_GET["id"]=$account->id;
|
|
}
|
|
|
|
// Onglets
|
|
$head=bank_prepare_head($account);
|
|
dol_fiche_head($head, 'bankid', $langs->trans("FinancialAccount"),0,'account');
|
|
|
|
// Confirmation de la suppression
|
|
if ($action == 'delete')
|
|
{
|
|
print $form->formconfirm($_SERVER["PHP_SELF"].'?id='.$account->id,$langs->trans("DeleteAccount"),$langs->trans("ConfirmDeleteAccount"),"confirm_delete");
|
|
|
|
}
|
|
|
|
|
|
print '<table class="border" width="100%">';
|
|
|
|
$linkback = '<a href="'.DOL_URL_ROOT.'/compta/bank/index.php">'.$langs->trans("BackToList").'</a>';
|
|
|
|
// Ref
|
|
print '<tr><td valign="top" width="25%">'.$langs->trans("Ref").'</td>';
|
|
print '<td colspan="3">';
|
|
print $form->showrefnav($account, 'ref', $linkback, 1, 'ref');
|
|
print '</td></tr>';
|
|
|
|
// Label
|
|
print '<tr><td valign="top">'.$langs->trans("Label").'</td>';
|
|
print '<td colspan="3">'.$account->label.'</td></tr>';
|
|
|
|
// Type
|
|
print '<tr><td valign="top">'.$langs->trans("AccountType").'</td>';
|
|
print '<td colspan="3">'.$account->type_lib[$account->type].'</td></tr>';
|
|
|
|
// Currency
|
|
print '<tr><td valign="top">'.$langs->trans("Currency").'</td>';
|
|
print '<td colspan="3">';
|
|
$selectedcode=$account->account_currency_code;
|
|
if (! $selectedcode) $selectedcode=$conf->currency;
|
|
print $langs->trans("Currency".$selectedcode);
|
|
print '</td></tr>';
|
|
|
|
// Status
|
|
print '<tr><td valign="top">'.$langs->trans("Status").'</td>';
|
|
print '<td colspan="3">'.$account->getLibStatut(4).'</td></tr>';
|
|
|
|
if ($account->type == 0 || $account->type == 1)
|
|
{
|
|
// Country
|
|
print '<tr><td valign="top">'.$langs->trans("BankAccountCountry").'</td><td colspan="3">';
|
|
$img=picto_from_langcode($account->country_code);
|
|
print $img?$img.' ':'';
|
|
print getCountry($account->getCountryCode(), 0, $db);
|
|
print "</td></tr>\n";
|
|
|
|
print '<tr><td valign="top">'.$langs->trans("BankName").'</td>';
|
|
print '<td colspan="3">'.$account->bank.'</td></tr>';
|
|
|
|
// 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 ($account->useDetailedBBAN() == 1)
|
|
{
|
|
print '<tr><td>'.$langs->trans("BankCode").'</td>';
|
|
print '<td colspan="3">'.$account->code_banque.'</td>';
|
|
print '</tr>';
|
|
}
|
|
}
|
|
if ($val == 'DeskCode')
|
|
{
|
|
if ($account->useDetailedBBAN() == 1)
|
|
{
|
|
print '<tr><td>'.$langs->trans("DeskCode").'</td>';
|
|
print '<td colspan="3">'.$account->code_guichet.'</td>';
|
|
print '</tr>';
|
|
}
|
|
}
|
|
|
|
if ($val == 'BankCode')
|
|
{
|
|
if ($account->useDetailedBBAN() == 2)
|
|
{
|
|
print '<tr><td>'.$langs->trans("BankCode").'</td>';
|
|
print '<td colspan="3">'.$account->code_banque.'</td>';
|
|
print '</tr>';
|
|
}
|
|
}
|
|
|
|
if ($val == 'AccountNumber')
|
|
{
|
|
print '<tr><td>'.$langs->trans("BankAccountNumber").'</td>';
|
|
print '<td colspan="3">'.$account->number.'</td>';
|
|
print '</tr>';
|
|
}
|
|
|
|
if ($val == 'BankAccountNumberKey')
|
|
{
|
|
if ($account->useDetailedBBAN() == 1)
|
|
{
|
|
print '<tr><td>'.$langs->trans("BankAccountNumberKey").'</td>';
|
|
print '<td colspan="3">'.$account->cle_rib.'</td>';
|
|
print '</tr>';
|
|
}
|
|
}
|
|
}
|
|
|
|
$ibankey="IBANNumber";
|
|
$bickey="BICNumber";
|
|
if ($account->getCountryCode() == 'IN') $ibankey="IFSC";
|
|
if ($account->getCountryCode() == 'IN') $bickey="SWIFT";
|
|
|
|
print '<tr><td valign="top">'.$langs->trans($ibankey).'</td>';
|
|
print '<td colspan="3">'.$account->iban_prefix.'</td></tr>';
|
|
|
|
print '<tr><td valign="top">'.$langs->trans($bickey).'</td>';
|
|
print '<td colspan="3">'.$account->bic.'</td></tr>';
|
|
|
|
print '<tr><td valign="top">'.$langs->trans("BankAccountDomiciliation").'</td><td colspan="3">';
|
|
print nl2br($account->domiciliation);
|
|
print "</td></tr>\n";
|
|
|
|
print '<tr><td valign="top">'.$langs->trans("BankAccountOwner").'</td><td colspan="3">';
|
|
print $account->proprio;
|
|
print "</td></tr>\n";
|
|
|
|
print '<tr><td valign="top">'.$langs->trans("BankAccountOwnerAddress").'</td><td colspan="3">';
|
|
print nl2br($account->owner_address);
|
|
print "</td></tr>\n";
|
|
|
|
}
|
|
|
|
print '</table>';
|
|
|
|
|
|
// Check BBAN
|
|
if (! checkBanForAccount($account))
|
|
{
|
|
print '<div class="warning">'.$langs->trans("RIBControlError").'</div>';
|
|
}
|
|
|
|
print "\n</div>\n";
|
|
|
|
|
|
/*
|
|
* Barre d'actions
|
|
*/
|
|
|
|
print '<div class="tabsAction">';
|
|
|
|
if ($user->rights->banque->configurer)
|
|
{
|
|
print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit&id='.$account->id.'">'.$langs->trans("Modify").'</a>';
|
|
}
|
|
|
|
print '</div>';
|
|
|
|
}
|
|
|
|
/* ************************************************************************** */
|
|
/* */
|
|
/* Edition */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
if ($_GET["id"] && $action == 'edit' && $user->rights->banque->configurer)
|
|
{
|
|
$account = new Account($db);
|
|
$account->fetch($id);
|
|
|
|
print_fiche_titre($langs->trans("EditFinancialAccount"));
|
|
print "<br>";
|
|
|
|
dol_htmloutput_mesg($message);
|
|
|
|
print '<form action="'.$_SERVER["PHP_SELF"].'?id='.$account->id.'" method="post">';
|
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
|
print '<input type="hidden" name="action" value="update">';
|
|
print '<input type="hidden" name="id" value="'.$_GET["id"].'">'."\n\n";
|
|
|
|
print '<table class="border" width="100%">';
|
|
|
|
// Ref
|
|
print '<tr><td valign="top" width="25%">'.$langs->trans("Ref").'</td>';
|
|
print '<td colspan="3">'.$account->ref;
|
|
print '</td></tr>';
|
|
|
|
// Label
|
|
print '<tr><td valign="top">'.$langs->trans("Label").'</td>';
|
|
print '<td colspan="3">'.$account->label;
|
|
print '</td></tr>';
|
|
|
|
// Type
|
|
print '<tr><td valign="top">'.$langs->trans("AccountType").'</td>';
|
|
print '<td colspan="3">'.$account->type_lib[$account->type];
|
|
print '</td></tr>';
|
|
|
|
// Currency
|
|
print '<tr><td valign="top">'.$langs->trans("Currency").'</td>';
|
|
print '<td colspan="3">';
|
|
$selectedcode=$account->account_currency_code;
|
|
if (! $selectedcode) $selectedcode=$conf->currency;
|
|
print $langs->trans("Currency".$selectedcode);
|
|
print '</td></tr>';
|
|
|
|
// Status
|
|
print '<tr><td valign="top">'.$langs->trans("Status").'</td>';
|
|
print '<td colspan="3">'.$account->getLibStatut(4);
|
|
print '</td></tr>';
|
|
|
|
if ($account->type == 0 || $account->type == 1)
|
|
{
|
|
print '<tr><td valign="top">'.$langs->trans("BankAccountCountry").'</td><td colspan="3">';
|
|
$img=picto_from_langcode($account->country_code);
|
|
print $img?$img.' ':'';
|
|
print getCountry($account->getCountryCode(), 0, $db);
|
|
print "</td></tr>\n";
|
|
|
|
// If bank account
|
|
print '<tr><td valign="top">'.$langs->trans("BankName").'</td>';
|
|
print '<td colspan="3"><input size="30" type="text" class="flat" name="bank" value="'.$account->bank.'"></td>';
|
|
print '</tr>';
|
|
|
|
// 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 ($account->useDetailedBBAN() == 1)
|
|
{
|
|
print '<tr><td>'.$langs->trans("BankCode").'</td>';
|
|
print '<td><input size="8" type="text" class="flat" name="code_banque" value="'.$account->code_banque.'"></td>';
|
|
print '</tr>';
|
|
}
|
|
}
|
|
|
|
if ($val == 'DeskCode')
|
|
{
|
|
if ($account->useDetailedBBAN() == 1)
|
|
{
|
|
print '<tr><td>'.$langs->trans("DeskCode").'</td>';
|
|
print '<td><input size="8" type="text" class="flat" name="code_guichet" value="'.$account->code_guichet.'"></td>';
|
|
print '</tr>';
|
|
}
|
|
}
|
|
|
|
if ($val == 'BankCode')
|
|
{
|
|
if ($account->useDetailedBBAN() == 2)
|
|
{
|
|
print '<tr><td>'.$langs->trans("BankCode").'</td>';
|
|
print '<td><input size="8" type="text" class="flat" name="code_banque" value="'.$account->code_banque.'"></td>';
|
|
print '</tr>';
|
|
}
|
|
}
|
|
|
|
if ($val == 'AccountNumber')
|
|
{
|
|
print '<td>'.$langs->trans("BankAccountNumber").'</td>';
|
|
print '<td><input size="18" type="text" class="flat" name="number" value="'.$account->number.'"></td>';
|
|
print '</tr>';
|
|
}
|
|
|
|
if ($val == 'BankAccountNumberKey')
|
|
{
|
|
if ($account->useDetailedBBAN() == 1)
|
|
{
|
|
print '<td>'.$langs->trans("BankAccountNumberKey").'</td>';
|
|
print '<td><input size="3" type="text" class="flat" name="cle_rib" value="'.$account->cle_rib.'"></td>';
|
|
print '</tr>';
|
|
}
|
|
}
|
|
}
|
|
|
|
$ibankey="IBANNumber";
|
|
$bickey="BICNumber";
|
|
if ($account->getCountryCode() == 'IN') $ibankey="IFSC";
|
|
if ($account->getCountryCode() == 'IN') $bickey="SWIFT";
|
|
|
|
// IBAN
|
|
print '<tr><td valign="top">'.$langs->trans($ibankey).'</td>';
|
|
print '<td colspan="3"><input size="26" type="text" class="flat" name="iban_prefix" value="'.$account->iban_prefix.'"></td></tr>';
|
|
|
|
print '<tr><td valign="top">'.$langs->trans($bickey).'</td>';
|
|
print '<td colspan="3"><input size="12" maxlength="11" type="text" class="flat" name="bic" value="'.$account->bic.'"></td></tr>';
|
|
|
|
print '<tr><td valign="top">'.$langs->trans("BankAccountDomiciliation").'</td><td colspan="3">';
|
|
print "<textarea class=\"flat\" name=\"domiciliation\" rows=\"2\" cols=\"40\">";
|
|
print $account->domiciliation;
|
|
print "</textarea></td></tr>";
|
|
|
|
print '<tr><td valign="top">'.$langs->trans("BankAccountOwner").'</td>';
|
|
print '<td colspan="3"><input size="30" type="text" class="flat" name="proprio" value="'.$account->proprio.'">';
|
|
print '</td></tr>';
|
|
|
|
print '<tr><td valign="top">'.$langs->trans("BankAccountOwnerAddress").'</td><td colspan="3">';
|
|
print "<textarea class=\"flat\" name=\"owner_address\" rows=\"2\" cols=\"40\">";
|
|
print $account->owner_address;
|
|
print "</textarea></td></tr>";
|
|
|
|
}
|
|
|
|
print '</table>';
|
|
|
|
print '<br>';
|
|
|
|
print '<div align="center">';
|
|
print '<input value="'.$langs->trans("Save").'" type="submit" class="button">';
|
|
print ' <input name="cancel" value="'.$langs->trans("Cancel").'" type="submit" class="button">';
|
|
print '</div>';
|
|
|
|
print '</form>';
|
|
}
|
|
|
|
|
|
llxFooter();
|
|
|
|
$db->close();
|
|
?>
|