2004-10-19 22:35:36 +02:00
|
|
|
<?php
|
2005-08-07 01:23:05 +02:00
|
|
|
/* Copyright (C) 2001-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
2008-12-05 12:51:16 +01:00
|
|
|
* Copyright (C) 2004-2008 Laurent Destailleur <eldy@users.sourceforge.net>
|
2015-03-03 06:32:46 +01:00
|
|
|
* Copyright (C) 2005-2009 Regis Houssin <regis.houssin@capnetworks.com>
|
|
|
|
|
* Copyright (C) 2012 Juanjo Menent <jmenent@2byte.es>
|
2015-04-18 23:11:17 +02:00
|
|
|
* Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
|
2015-04-12 20:24:22 +02:00
|
|
|
* Copyright (C) 2015 Marcos García <marcosgdf@gmail.com>
|
2002-12-22 04:32:07 +01:00
|
|
|
*
|
|
|
|
|
* 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
|
2013-01-16 15:36:08 +01:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2002-12-22 04:32:07 +01:00
|
|
|
* (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
|
2011-08-01 00:21:57 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2002-05-11 20:53:13 +02:00
|
|
|
*/
|
2004-10-10 15:53:57 +02:00
|
|
|
|
2005-04-27 23:57:59 +02:00
|
|
|
/**
|
2009-08-07 20:39:01 +02:00
|
|
|
* \file htdocs/compta/bank/virement.php
|
|
|
|
|
* \ingroup banque
|
|
|
|
|
* \brief Page de saisie d'un virement
|
|
|
|
|
*/
|
2004-10-10 15:53:57 +02:00
|
|
|
|
2013-04-15 13:11:29 +02:00
|
|
|
require('../../main.inc.php');
|
2012-08-22 23:11:24 +02:00
|
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/bank.lib.php';
|
2013-06-05 16:24:32 +02:00
|
|
|
require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
|
|
|
|
|
|
|
|
|
|
$langs->load("banks");
|
|
|
|
|
$langs->load("categories");
|
2006-09-16 01:05:25 +02:00
|
|
|
|
2007-12-14 10:35:15 +01:00
|
|
|
if (! $user->rights->banque->transfer)
|
2003-11-05 10:59:16 +01:00
|
|
|
accessforbidden();
|
|
|
|
|
|
2012-03-08 12:20:47 +01:00
|
|
|
$action = GETPOST('action','alpha');
|
|
|
|
|
|
2004-10-10 15:53:57 +02:00
|
|
|
|
|
|
|
|
/*
|
2013-04-15 13:11:29 +02:00
|
|
|
* Actions
|
2004-10-10 15:53:57 +02:00
|
|
|
*/
|
2013-04-15 13:11:29 +02:00
|
|
|
|
2012-03-08 12:20:47 +01:00
|
|
|
if ($action == 'add')
|
2002-12-22 04:32:07 +01:00
|
|
|
{
|
2007-11-23 23:47:50 +01:00
|
|
|
$langs->load("errors");
|
2009-08-07 20:39:01 +02:00
|
|
|
|
2012-03-08 12:20:47 +01:00
|
|
|
$dateo = dol_mktime(12,0,0,GETPOST('remonth','int'),GETPOST('reday','int'),GETPOST('reyear','int'));
|
|
|
|
|
$label = GETPOST('label','alpha');
|
2015-04-12 20:24:22 +02:00
|
|
|
$amount= GETPOST('amount');
|
2006-04-02 04:18:06 +02:00
|
|
|
|
2006-09-16 01:05:25 +02:00
|
|
|
if (! $label)
|
|
|
|
|
{
|
2009-08-07 20:39:01 +02:00
|
|
|
$error=1;
|
2014-07-20 02:32:13 +02:00
|
|
|
setEventMessage($langs->trans("ErrorFieldRequired",$langs->transnoentities("Description")), 'errors');
|
2006-09-16 01:05:25 +02:00
|
|
|
}
|
|
|
|
|
if (! $amount)
|
|
|
|
|
{
|
2009-08-07 20:39:01 +02:00
|
|
|
$error=1;
|
2014-07-20 02:32:13 +02:00
|
|
|
setEventMessage($langs->trans("ErrorFieldRequired",$langs->transnoentities("Amount")), 'errors');
|
2006-09-16 01:05:25 +02:00
|
|
|
}
|
2012-03-08 12:20:47 +01:00
|
|
|
if (! GETPOST('account_from','int'))
|
2007-11-23 23:47:50 +01:00
|
|
|
{
|
2009-08-07 20:39:01 +02:00
|
|
|
$error=1;
|
2014-07-20 02:32:13 +02:00
|
|
|
setEventMessage($langs->trans("ErrorFieldRequired",$langs->transnoentities("TransferFrom")), 'errors');
|
2007-11-23 23:47:50 +01:00
|
|
|
}
|
2012-03-08 12:20:47 +01:00
|
|
|
if (! GETPOST('account_to','int'))
|
2007-11-23 23:47:50 +01:00
|
|
|
{
|
2009-08-07 20:39:01 +02:00
|
|
|
$error=1;
|
2014-07-20 02:32:13 +02:00
|
|
|
setEventMessage($langs->trans("ErrorFieldRequired",$langs->transnoentities("TransferTo")), 'errors');
|
2007-11-23 23:47:50 +01:00
|
|
|
}
|
2006-09-16 01:05:25 +02:00
|
|
|
if (! $error)
|
2006-04-02 04:18:06 +02:00
|
|
|
{
|
2012-08-22 23:11:24 +02:00
|
|
|
require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
|
2007-10-30 00:11:42 +01:00
|
|
|
|
|
|
|
|
$accountfrom=new Account($db);
|
2012-03-08 12:20:47 +01:00
|
|
|
$accountfrom->fetch(GETPOST('account_from','int'));
|
2006-04-02 04:18:06 +02:00
|
|
|
|
2007-10-30 00:11:42 +01:00
|
|
|
$accountto=new Account($db);
|
2012-03-08 12:20:47 +01:00
|
|
|
$accountto->fetch(GETPOST('account_to','int'));
|
2006-04-02 04:18:06 +02:00
|
|
|
|
2015-04-08 09:09:11 +02:00
|
|
|
if (($accountto->id != $accountfrom->id) && ($accountto->currency_code == $accountfrom->currency_code))
|
2007-10-30 00:11:42 +01:00
|
|
|
{
|
2007-11-23 16:10:31 +01:00
|
|
|
$db->begin();
|
2009-08-07 20:39:01 +02:00
|
|
|
|
2008-05-14 01:21:28 +02:00
|
|
|
$error=0;
|
|
|
|
|
$bank_line_id_from=0;
|
|
|
|
|
$bank_line_id_to=0;
|
|
|
|
|
$result=0;
|
2009-08-07 20:39:01 +02:00
|
|
|
|
2008-05-14 01:21:28 +02:00
|
|
|
// By default, electronic transfert from bank to bank
|
|
|
|
|
$typefrom='PRE';
|
|
|
|
|
$typeto='VIR';
|
|
|
|
|
if ($accountto->courant == 2 || $accountfrom->courant == 2)
|
|
|
|
|
{
|
|
|
|
|
// This is transfert of change
|
|
|
|
|
$typefrom='LIQ';
|
|
|
|
|
$typeto='LIQ';
|
|
|
|
|
}
|
2009-08-07 20:39:01 +02:00
|
|
|
|
2008-05-14 01:21:28 +02:00
|
|
|
if (! $error) $bank_line_id_from = $accountfrom->addline($dateo, $typefrom, $label, -1*price2num($amount), '', '', $user);
|
|
|
|
|
if (! ($bank_line_id_from > 0)) $error++;
|
|
|
|
|
if (! $error) $bank_line_id_to = $accountto->addline($dateo, $typeto, $label, price2num($amount), '', '', $user);
|
|
|
|
|
if (! ($bank_line_id_to > 0)) $error++;
|
2009-08-07 20:39:01 +02:00
|
|
|
|
2008-05-14 01:21:28 +02:00
|
|
|
if (! $error) $result=$accountfrom->add_url_line($bank_line_id_from, $bank_line_id_to, DOL_URL_ROOT.'/compta/bank/ligne.php?rowid=', '(banktransfert)', 'banktransfert');
|
|
|
|
|
if (! ($result > 0)) $error++;
|
|
|
|
|
if (! $error) $result=$accountto->add_url_line($bank_line_id_to, $bank_line_id_from, DOL_URL_ROOT.'/compta/bank/ligne.php?rowid=', '(banktransfert)', 'banktransfert');
|
|
|
|
|
if (! ($result > 0)) $error++;
|
2009-08-07 20:39:01 +02:00
|
|
|
|
2008-05-14 01:21:28 +02:00
|
|
|
if (! $error)
|
2007-11-23 16:10:31 +01:00
|
|
|
{
|
2014-07-20 02:32:13 +02:00
|
|
|
$mesgs = $langs->trans("TransferFromToDone","<a href=\"account.php?account=".$accountfrom->id."\">".$accountfrom->label."</a>","<a href=\"account.php?account=".$accountto->id."\">".$accountto->label."</a>",$amount,$langs->transnoentities("Currency".$conf->currency));
|
|
|
|
|
setEventMessage($mesgs);
|
2007-11-23 16:10:31 +01:00
|
|
|
$db->commit();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2014-07-20 02:32:13 +02:00
|
|
|
setEventMessage($accountfrom->error.' '.$accountto->error, 'errors');
|
2007-11-23 16:10:31 +01:00
|
|
|
$db->rollback();
|
|
|
|
|
}
|
2006-04-02 04:18:06 +02:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2014-07-20 02:32:13 +02:00
|
|
|
setEventMessage($langs->trans("ErrorFromToAccountsMustDiffers"), 'errors');
|
2006-04-02 04:18:06 +02:00
|
|
|
}
|
|
|
|
|
}
|
2004-06-11 02:54:19 +02:00
|
|
|
}
|
2002-06-20 15:23:17 +02:00
|
|
|
|
2006-04-02 04:18:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Affichage
|
|
|
|
|
*/
|
2009-08-07 20:39:01 +02:00
|
|
|
|
2006-04-02 04:18:06 +02:00
|
|
|
llxHeader();
|
|
|
|
|
|
2011-11-08 10:18:45 +01:00
|
|
|
$form=new Form($db);
|
2006-04-02 04:18:06 +02:00
|
|
|
|
2012-03-08 12:20:47 +01:00
|
|
|
$account_from='';
|
|
|
|
|
$account_to='';
|
|
|
|
|
$label='';
|
|
|
|
|
$amount='';
|
|
|
|
|
|
|
|
|
|
if($error)
|
|
|
|
|
{
|
|
|
|
|
$account_from = GETPOST('account_from','int');
|
|
|
|
|
$account_to = GETPOST('account_to','int');
|
|
|
|
|
$label = GETPOST('label','alpha');
|
|
|
|
|
$amount = GETPOST('amount','int');
|
|
|
|
|
}
|
2006-04-02 04:18:06 +02:00
|
|
|
|
2015-04-18 23:11:17 +02:00
|
|
|
print_fiche_titre($langs->trans("BankTransfer"), '', 'title_bank.png');
|
2002-06-20 15:23:17 +02:00
|
|
|
|
2006-09-16 01:05:25 +02:00
|
|
|
print $langs->trans("TransferDesc");
|
|
|
|
|
print "<br><br>";
|
2002-05-11 20:53:13 +02:00
|
|
|
|
2006-03-01 17:59:18 +01:00
|
|
|
print "<form name='add' method=\"post\" action=\"virement.php\">";
|
2009-05-17 10:01:54 +02:00
|
|
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
2002-05-11 20:53:13 +02:00
|
|
|
|
2003-05-16 12:48:34 +02:00
|
|
|
print '<input type="hidden" name="action" value="add">';
|
2002-05-11 20:53:13 +02:00
|
|
|
|
2004-10-10 15:53:57 +02:00
|
|
|
print '<table class="noborder" width="100%">';
|
2004-02-15 04:05:16 +01:00
|
|
|
print '<tr class="liste_titre">';
|
2006-09-16 01:05:25 +02:00
|
|
|
print '<td>'.$langs->trans("TransferFrom").'</td><td>'.$langs->trans("TransferTo").'</td><td>'.$langs->trans("Date").'</td><td>'.$langs->trans("Description").'</td><td>'.$langs->trans("Amount").'</td>';
|
2004-02-15 04:05:16 +01:00
|
|
|
print '</tr>';
|
2005-05-11 02:58:27 +02:00
|
|
|
|
|
|
|
|
$var=false;
|
|
|
|
|
print '<tr '.$bc[$var].'><td>';
|
2015-02-10 13:17:37 +01:00
|
|
|
$form->select_comptes($account_from,'account_from',0,'',1);
|
2007-11-23 23:47:50 +01:00
|
|
|
print "</td>";
|
2002-05-11 20:53:13 +02:00
|
|
|
|
2007-11-23 23:47:50 +01:00
|
|
|
print "<td>\n";
|
2015-02-10 13:17:37 +01:00
|
|
|
$form->select_comptes($account_to,'account_to',0,'',1);
|
2007-11-23 23:47:50 +01:00
|
|
|
print "</td>\n";
|
2002-05-11 20:53:13 +02:00
|
|
|
|
2003-05-16 12:48:34 +02:00
|
|
|
print "<td>";
|
2011-11-08 10:18:45 +01:00
|
|
|
$form->select_date($dateo,'','','','','add');
|
2003-05-16 12:48:34 +02:00
|
|
|
print "</td>\n";
|
2012-03-08 12:20:47 +01:00
|
|
|
print '<td><input name="label" class="flat" type="text" size="40" value="'.$label.'"></td>';
|
|
|
|
|
print '<td><input name="amount" class="flat" type="text" size="8" value="'.$amount.'"></td>';
|
2003-05-16 12:48:34 +02:00
|
|
|
|
2004-10-10 15:53:57 +02:00
|
|
|
print "</table>";
|
|
|
|
|
|
2014-11-25 20:13:43 +01:00
|
|
|
print '<br><div class="center"><input type="submit" class="button" value="'.$langs->trans("Add").'"></div>';
|
2002-05-11 20:53:13 +02:00
|
|
|
|
2004-10-10 15:53:57 +02:00
|
|
|
print "</form>";
|
2002-05-11 20:53:13 +02:00
|
|
|
|
|
|
|
|
$db->close();
|
|
|
|
|
|
2011-08-27 16:24:16 +02:00
|
|
|
llxFooter();
|