dolibarr/htdocs/compta/bank/transfer.php

298 lines
10 KiB
PHP
Raw Normal View History

<?php
/* Copyright (C) 2001-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
2019-12-25 23:15:56 +01:00
* Copyright (C) 2004-2019 Laurent Destailleur <eldy@users.sourceforge.net>
2018-10-27 14:43:12 +02:00
* Copyright (C) 2005-2015 Regis Houssin <regis.houssin@inodbox.com>
2015-03-03 06:32:46 +01:00
* 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>
* Copyright (C) 2015 Marcos García <marcosgdf@gmail.com>
2021-03-15 21:07:30 +01:00
* Copyright (C) 2018-2021 Frédéric France <frederic.france@netlogic.fr>
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
* 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
2019-09-23 21:55:30 +02:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2002-05-11 20:53:13 +02:00
*/
2005-04-27 23:57:59 +02:00
/**
* \file htdocs/compta/bank/transfer.php
2009-08-07 20:39:01 +02:00
* \ingroup banque
* \brief Page de saisie d'un virement
*/
2018-07-26 11:57:25 +02:00
require '../../main.inc.php';
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';
2018-05-27 09:40:17 +02:00
// Load translation files required by the page
$langs->loadLangs(array("banks", "categories", "multicurrency"));
2021-03-15 21:07:30 +01:00
$socid = 0;
if ($user->socid > 0) {
$socid = $user->socid;
}
2021-02-23 21:09:01 +01:00
if (!$user->rights->banque->transfer) {
accessforbidden();
}
2020-09-16 19:39:50 +02:00
$action = GETPOST('action', 'aZ09');
2017-07-07 20:24:39 +02:00
$error = 0;
$hookmanager->initHooks(array('banktransfer'));
2021-04-12 10:32:41 +02:00
/*
* Actions
*/
2021-04-12 10:32:41 +02:00
$parameters = array('socid' => $socid);
$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
2021-02-23 21:09:01 +01:00
if ($reshook < 0) {
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
}
if ($action == 'add') {
2007-11-23 23:47:50 +01:00
$langs->load("errors");
2009-08-07 20:39:01 +02:00
$dateo = dol_mktime(12, 0, 0, GETPOST('remonth', 'int'), GETPOST('reday', 'int'), GETPOST('reyear', 'int'));
$label = GETPOST('label', 'alpha');
2021-11-11 13:46:58 +01:00
$amount = price2num(GETPOST('amount', 'alpha'), 'MT', 2);
$amountto = price2num(GETPOST('amountto', 'alpha'), 'MT', 2);
2021-02-23 21:09:01 +01:00
if (!$label) {
$error++;
2015-10-17 16:18:33 +02:00
setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("Description")), null, 'errors');
2006-09-16 01:05:25 +02:00
}
2021-02-23 21:09:01 +01:00
if (!$amount) {
2017-07-07 20:24:39 +02:00
$error++;
2015-10-17 16:18:33 +02:00
setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("Amount")), null, 'errors');
2006-09-16 01:05:25 +02:00
}
2021-02-23 21:09:01 +01:00
if (!GETPOST('account_from', 'int')) {
2017-07-07 20:24:39 +02:00
$error++;
2015-10-17 16:18:33 +02:00
setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("TransferFrom")), null, 'errors');
2007-11-23 23:47:50 +01:00
}
2021-02-23 21:09:01 +01:00
if (!GETPOST('account_to', 'int')) {
2017-07-07 20:24:39 +02:00
$error++;
2015-10-17 16:18:33 +02:00
setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("TransferTo")), null, 'errors');
2007-11-23 23:47:50 +01:00
}
2021-02-23 21:09:01 +01:00
if (!$error) {
require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
$accountfrom = new Account($db);
$accountfrom->fetch(GETPOST('account_from', 'int'));
$accountto = new Account($db);
$accountto->fetch(GETPOST('account_to', 'int'));
2021-02-23 21:09:01 +01:00
if ($accountto->currency_code == $accountfrom->currency_code) {
$amountto = $amount;
2020-05-21 15:05:19 +02:00
} else {
2021-02-23 21:09:01 +01:00
if (!$amountto) {
$error++;
setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("AmountTo")), null, 'errors');
}
}
2021-04-12 10:32:41 +02:00
if ($amountto < 0) {
$error++;
setEventMessages($langs->trans("AmountMustBePositive"), null, 'errors');
}
2021-04-12 10:32:41 +02:00
if ($accountto->id == $accountfrom->id) {
$error++;
setEventMessages($langs->trans("ErrorFromToAccountsMustDiffers"), null, 'errors');
}
if (empty($error)) {
$db->begin();
2009-08-07 20:39:01 +02:00
$bank_line_id_from = 0;
$bank_line_id_to = 0;
$result = 0;
2009-08-07 20:39:01 +02:00
// By default, electronic transfert from bank to bank
$typefrom = 'PRE';
$typeto = 'VIR';
2021-02-23 21:09:01 +01:00
if ($accountto->courant == Account::TYPE_CASH || $accountfrom->courant == Account::TYPE_CASH) {
// This is transfer of change
$typefrom = 'LIQ';
$typeto = 'LIQ';
}
2009-08-07 20:39:01 +02:00
2021-02-23 21:09:01 +01:00
if (!$error) {
$bank_line_id_from = $accountfrom->addline($dateo, $typefrom, $label, price2num(-1 * $amount), '', '', $user);
}
if (!($bank_line_id_from > 0)) {
$error++;
}
if (!$error) {
$bank_line_id_to = $accountto->addline($dateo, $typeto, $label, $amountto, '', '', $user);
}
if (!($bank_line_id_to > 0)) {
$error++;
}
2009-08-07 20:39:01 +02:00
2021-02-23 21:09:01 +01:00
if (!$error) {
$result = $accountfrom->add_url_line($bank_line_id_from, $bank_line_id_to, DOL_URL_ROOT.'/compta/bank/line.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/line.php?rowid=', '(banktransfert)', 'banktransfert');
}
if (!($result > 0)) {
$error++;
}
2009-08-07 20:39:01 +02:00
2021-02-23 21:09:01 +01:00
if (!$error) {
2021-01-17 11:24:24 +01:00
$mesgs = $langs->trans("TransferFromToDone", '{s1}', '{s2}', $amount, $langs->transnoentitiesnoconv("Currency".$conf->currency));
$mesgs = str_replace('{s1}', '<a href="bankentries_list.php?id='.$accountfrom->id.'&sortfield=b.datev,b.dateo,b.rowid&sortorder=desc">'.$accountfrom->label.'</a>', $mesgs);
$mesgs = str_replace('{s2}', '<a href="bankentries_list.php?id='.$accountto->id.'">'.$accountto->label.'</a>', $mesgs);
2015-11-11 12:27:09 +01:00
setEventMessages($mesgs, null, 'mesgs');
$db->commit();
2020-05-21 15:05:19 +02:00
} else {
2015-11-11 12:27:09 +01:00
setEventMessages($accountfrom->error.' '.$accountto->error, null, 'errors');
$db->rollback();
}
}
}
}
2002-06-20 15:23:17 +02:00
/*
2015-11-11 12:27:09 +01:00
* View
*/
2009-08-07 20:39:01 +02:00
$help_url = 'EN:Module_Banks_and_Cash|FR:Module_Banques_et_Caisses|ES:M&oacute;dulo_Bancos_y_Cajas';
$title = $langs->trans('MenuBankInternalTransfer');
llxHeader('', $title, $help_url);
2020-04-09 16:36:39 +02:00
print ' <script type="text/javascript">
$(document).ready(function () {
$(".selectbankaccount").change(function() {
2018-04-07 12:28:10 +02:00
console.log("We change bank account");
init_page();
});
function init_page() {
console.log("Set fields according to currency");
var account1 = $("#selectaccount_from").val();
var account2 = $("#selectaccount_to").val();
var currencycode1="";
var currencycode2="";
$.get("'.DOL_URL_ROOT.'/core/ajax/getaccountcurrency.php", {id: account1})
.done(function( data ) {
if (data != null)
{
var item= $.parseJSON(data);
if (item.num==-1) {
console.error("Error: "+item.error);
} else if (item.num!==0) {
currencycode1 = item.value;
}
$.get("'.DOL_URL_ROOT.'/core/ajax/getaccountcurrency.php", {id: account2})
.done(function( data ) {
if (data != null)
{
var item=$.parseJSON(data);
if (item.num==-1) {
console.error("Error: "+item.error);
} else if (item.num!==0) {
currencycode2 = item.value;
}
if (currencycode2!==currencycode1 && currencycode2!=="" && currencycode1!=="") {
$(".multicurrency").show();
} else {
$(".multicurrency").hide();
}
}
else {
console.error("Error: Ajax url has returned an empty page. Should be an empty json array.");
}
}).fail(function( data ) {
console.error("Error: has returned an empty page. Should be an empty json array.");
});
}
else {
console.error("Error: has returned an empty page. Should be an empty json array.");
}
}).fail(function( data ) {
console.error("Error: has returned an empty page. Should be an empty json array.");
});
2018-04-07 12:28:10 +02:00
}
init_page();
});
</script>';
$form = new Form($db);
$account_from = '';
$account_to = '';
$label = '';
$amount = '';
2021-03-17 23:55:46 +01:00
$amountto = '';
2021-02-23 21:09:01 +01:00
if ($error) {
$account_from = GETPOST('account_from', 'int');
$account_to = GETPOST('account_to', 'int');
$label = GETPOST('label', 'alpha');
$amount = GETPOST('amount', 'alpha');
}
2020-04-09 16:36:39 +02:00
print load_fiche_titre($langs->trans("MenuBankInternalTransfer"), '', 'bank_account');
2002-06-20 15:23:17 +02:00
2020-04-11 14:13:16 +02:00
print '<span class="opacitymedium">'.$langs->trans("TransferDesc").'</span>';
2006-09-16 01:05:25 +02:00
print "<br><br>";
2002-05-11 20:53:13 +02:00
print '<form name="add" method="post" action="'.$_SERVER["PHP_SELF"].'">';
print '<input type="hidden" name="token" value="'.newToken().'">';
2002-05-11 20:53:13 +02:00
print '<input type="hidden" name="action" value="add">';
2002-05-11 20:53:13 +02:00
2019-12-25 23:15:56 +01:00
print '<div class="div-table-responsive-no-min">';
2019-11-05 21:24:41 +01:00
print '<table class="noborder centpercent">';
print '<tr class="liste_titre">';
2021-04-12 10:32:41 +02:00
print '<td>'.$langs->trans("TransferFrom").'</td><td>'.$langs->trans("TransferTo").'</td><td>'.$langs->trans("Date").'</td><td>'.$langs->trans("Description").'</td>';
print '<td class="right">'.$langs->trans("Amount").'</td>';
print '<td style="display:none" class="multicurrency">'.$langs->trans("AmountToOthercurrency").'</td>';
print '</tr>';
print '<tr class="oddeven"><td>';
2021-04-15 15:30:02 +02:00
print img_picto('', 'bank_account', 'class="paddingright"');
2022-08-29 11:57:59 +02:00
$form->select_comptes($account_from, 'account_from', 0, '', 1, '', !isModEnabled('multicurrency') ? 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";
2021-04-15 15:30:02 +02:00
print img_picto('', 'bank_account', 'class="paddingright"');
2022-08-29 11:57:59 +02:00
$form->select_comptes($account_to, 'account_to', 0, '', 1, '', !isModEnabled('multicurrency') ? 0 : 1);
2007-11-23 23:47:50 +01:00
print "</td>\n";
2002-05-11 20:53:13 +02:00
print "<td>";
print $form->selectDate((!empty($dateo) ? $dateo : ''), '', '', '', '', 'add');
print "</td>\n";
2018-04-07 12:28:10 +02:00
print '<td><input name="label" class="flat quatrevingtpercent" type="text" value="'.dol_escape_htmltag($label).'"></td>';
2021-04-12 10:32:41 +02:00
print '<td class="right"><input name="amount" class="flat right" type="text" size="6" value="'.dol_escape_htmltag($amount).'"></td>';
2018-04-07 12:28:10 +02:00
print '<td style="display:none" class="multicurrency"><input name="amountto" class="flat" type="text" size="6" value="'.dol_escape_htmltag($amountto).'"></td>';
print "</table>";
2019-12-25 23:15:56 +01:00
print '</div>';
2021-04-12 10:32:41 +02:00
print '<br><div class="center"><input type="submit" class="button" value="'.$langs->trans("Create").'"></div>';
2002-05-11 20:53:13 +02:00
print "</form>";
2002-05-11 20:53:13 +02:00
2018-07-29 19:16:28 +02:00
// End of page
llxFooter();
$db->close();