2010-11-18 18:10:31 +01:00
|
|
|
<?php
|
2011-02-03 23:19:36 +01:00
|
|
|
/* Copyright (C) 2010-2011 Juanjo Menent <jmenent@2byte.es>
|
|
|
|
|
* Copyright (C) 2010 Laurent Destailleur <eldy@users.sourceforge.net>
|
2018-10-27 14:43:12 +02:00
|
|
|
* Copyright (C) 2011 Regis Houssin <regis.houssin@inodbox.com>
|
2024-09-23 00:37:30 +02:00
|
|
|
* Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
|
2010-11-18 18:10:31 +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
|
2010-11-18 18:10:31 +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/>.
|
|
|
|
|
* or see https://www.gnu.org/
|
2010-11-18 18:10:31 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
2011-10-24 12:59:44 +02:00
|
|
|
* \file htdocs/core/lib/prelevement.lib.php
|
2024-01-13 19:48:20 +01:00
|
|
|
* \brief Ensemble de functions de base pour le module prelevement
|
2010-11-18 18:10:31 +01:00
|
|
|
* \ingroup propal
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2012-02-04 10:48:47 +01:00
|
|
|
* Prepare array with list of tabs
|
|
|
|
|
*
|
2015-02-10 13:17:37 +01:00
|
|
|
* @param BonPrelevement $object Object related to tabs
|
2024-09-23 00:37:30 +02:00
|
|
|
* @return array<array{0:string,1:string,2:string}> Array of tabs to show
|
2010-11-18 18:10:31 +01:00
|
|
|
*/
|
2015-02-10 13:17:37 +01:00
|
|
|
function prelevement_prepare_head(BonPrelevement $object)
|
2010-11-18 18:10:31 +01:00
|
|
|
{
|
2023-12-09 20:28:28 +01:00
|
|
|
global $langs, $conf;
|
|
|
|
|
|
2023-11-06 16:09:05 +01:00
|
|
|
$salary = $object->checkIfSalaryBonPrelevement();
|
2023-12-09 20:28:28 +01:00
|
|
|
|
|
|
|
|
$langs->loadLangs(array("bills", "withdrawals"));
|
2011-01-25 00:35:21 +01:00
|
|
|
|
2010-11-18 18:10:31 +01:00
|
|
|
$h = 0;
|
|
|
|
|
$head = array();
|
|
|
|
|
|
2020-07-27 19:33:24 +02:00
|
|
|
$titleoftab = "WithdrawalsReceipts";
|
|
|
|
|
if ($object->type == 'bank-transfer') {
|
|
|
|
|
$titleoftab = "BankTransferReceipts";
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-18 21:18:25 +02:00
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/compta/prelevement/card.php?id='.$object->id;
|
2020-07-27 19:33:24 +02:00
|
|
|
$head[$h][1] = $langs->trans($titleoftab);
|
2010-11-18 18:10:31 +01:00
|
|
|
$head[$h][2] = 'prelevement';
|
|
|
|
|
$h++;
|
|
|
|
|
|
2023-12-09 20:28:28 +01:00
|
|
|
$titleoftab = $langs->trans("Bills");
|
|
|
|
|
if ($object->type == 'bank-transfer') {
|
|
|
|
|
$titleoftab = $langs->trans("SupplierBills");
|
|
|
|
|
}
|
|
|
|
|
if ($salary > 0) {
|
|
|
|
|
$titleoftab = $langs->trans("Salaries");
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-19 12:05:07 +01:00
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/compta/prelevement/factures.php?id='.$object->id;
|
2023-12-09 20:28:28 +01:00
|
|
|
$head[$h][1] = $titleoftab;
|
2010-11-18 18:10:31 +01:00
|
|
|
$head[$h][2] = 'invoices';
|
|
|
|
|
$h++;
|
|
|
|
|
|
2010-12-19 12:05:07 +01:00
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/compta/prelevement/fiche-rejet.php?id='.$object->id;
|
2010-11-18 18:10:31 +01:00
|
|
|
$head[$h][1] = $langs->trans("Rejects");
|
|
|
|
|
$head[$h][2] = 'rejects';
|
|
|
|
|
$h++;
|
|
|
|
|
|
2010-12-19 12:05:07 +01:00
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/compta/prelevement/fiche-stat.php?id='.$object->id;
|
2010-11-18 18:10:31 +01:00
|
|
|
$head[$h][1] = $langs->trans("Statistics");
|
|
|
|
|
$head[$h][2] = 'statistics';
|
|
|
|
|
$h++;
|
|
|
|
|
|
2020-03-23 15:54:02 +01:00
|
|
|
// Show more tabs from modules
|
|
|
|
|
// Entries must be declared in modules descriptor with line
|
|
|
|
|
// $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab
|
|
|
|
|
// $this->tabs = array('entity:-tabname); to remove a tab
|
|
|
|
|
complete_head_from_modules($conf, $langs, $object, $head, $h, 'prelevement');
|
2010-11-18 18:10:31 +01:00
|
|
|
|
2020-03-23 15:54:02 +01:00
|
|
|
complete_head_from_modules($conf, $langs, $object, $head, $h, 'prelevement', 'remove');
|
2012-12-01 15:45:05 +01:00
|
|
|
|
2020-03-23 15:54:02 +01:00
|
|
|
return $head;
|
2010-11-18 18:10:31 +01:00
|
|
|
}
|
2011-02-03 23:19:36 +01:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Check need data to create standigns orders receipt file
|
2012-02-04 14:39:47 +01:00
|
|
|
*
|
2020-11-09 13:17:24 +01:00
|
|
|
* @param string $type 'bank-transfer' or 'direct-debit'
|
|
|
|
|
*
|
2011-06-12 20:05:30 +02:00
|
|
|
* @return int -1 if ko 0 if ok
|
2011-02-03 23:19:36 +01:00
|
|
|
*/
|
2020-12-31 10:49:27 +01:00
|
|
|
function prelevement_check_config($type = 'direct-debit')
|
2011-02-03 23:19:36 +01:00
|
|
|
{
|
2020-11-09 13:17:24 +01:00
|
|
|
global $conf, $db;
|
2021-02-23 22:03:23 +01:00
|
|
|
if ($type == 'bank-transfer') {
|
2023-11-27 11:39:32 +01:00
|
|
|
if (!getDolGlobalString('PAYMENTBYBANKTRANSFER_ID_BANKACCOUNT')) {
|
2021-02-23 22:03:23 +01:00
|
|
|
return -1;
|
|
|
|
|
}
|
2020-11-09 13:17:24 +01:00
|
|
|
//if (empty($conf->global->PRELEVEMENT_ICS)) return -1;
|
2023-11-27 11:39:32 +01:00
|
|
|
if (!getDolGlobalString('PAYMENTBYBANKTRANSFER_USER')) {
|
2021-02-23 22:03:23 +01:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2023-11-27 11:39:32 +01:00
|
|
|
if (!getDolGlobalString('PRELEVEMENT_ID_BANKACCOUNT')) {
|
2021-02-23 22:03:23 +01:00
|
|
|
return -1;
|
|
|
|
|
}
|
2020-11-09 13:17:24 +01:00
|
|
|
//if (empty($conf->global->PRELEVEMENT_ICS)) return -1;
|
2023-11-27 11:39:32 +01:00
|
|
|
if (!getDolGlobalString('PRELEVEMENT_USER')) {
|
2021-02-23 22:03:23 +01:00
|
|
|
return -1;
|
|
|
|
|
}
|
2020-11-09 13:17:24 +01:00
|
|
|
}
|
2011-06-12 20:05:30 +02:00
|
|
|
return 0;
|
2011-02-03 23:19:36 +01:00
|
|
|
}
|
2023-11-06 16:09:05 +01:00
|
|
|
|
2024-09-23 00:37:30 +02:00
|
|
|
/**
|
2024-01-13 19:48:20 +01:00
|
|
|
* Return array head with list of tabs to view object information
|
2023-11-06 16:09:05 +01:00
|
|
|
*
|
2023-12-07 20:21:20 +01:00
|
|
|
* @param BonPrelevement $object Member
|
|
|
|
|
* @param int $nbOfInvoices No of invoices
|
|
|
|
|
* @param int $nbOfSalaryInvoice No of salary invoices
|
2024-10-14 01:59:44 +02:00
|
|
|
* @return array<array{0:string,1:string,2:string}> Array of tabs to show
|
2023-11-06 16:09:05 +01:00
|
|
|
*/
|
|
|
|
|
function bon_prelevement_prepare_head(BonPrelevement $object, $nbOfInvoices, $nbOfSalaryInvoice)
|
|
|
|
|
{
|
|
|
|
|
global $langs, $conf;
|
|
|
|
|
|
|
|
|
|
$h = 0;
|
|
|
|
|
$head = array();
|
|
|
|
|
|
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/compta/prelevement/create.php?type=bank-transfer';
|
2023-11-06 16:51:37 +01:00
|
|
|
$head[$h][1] = ($nbOfInvoices <= 0 ? $langs->trans("Invoices") : $langs->trans("Invoices").'<span class="badge marginleftonlyshort">'.$nbOfInvoices.'</span>');
|
2023-11-06 16:09:05 +01:00
|
|
|
$head[$h][2] = 'invoice';
|
|
|
|
|
$h++;
|
|
|
|
|
|
|
|
|
|
// Salaries
|
|
|
|
|
|
|
|
|
|
$head[$h][0] = DOL_URL_ROOT."/compta/prelevement/create.php?type=bank-transfer&sourcetype=salary";
|
2023-11-06 16:51:37 +01:00
|
|
|
$head[$h][1] = ($nbOfSalaryInvoice <= 0 ? $langs->trans("Salaries") : $langs->trans("Salaries").'<span class="badge marginleftonlyshort">'.$nbOfSalaryInvoice.'</span>');
|
2023-11-06 16:09:05 +01:00
|
|
|
$head[$h][2] = 'salary';
|
|
|
|
|
$h++;
|
|
|
|
|
|
|
|
|
|
// Show more tabs from modules
|
|
|
|
|
// Entries must be declared in modules descriptor with line
|
|
|
|
|
// $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab
|
|
|
|
|
// $this->tabs = array('entity:-tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to remove a tab
|
|
|
|
|
complete_head_from_modules($conf, $langs, $object, $head, $h, 'prelevement');
|
|
|
|
|
|
|
|
|
|
complete_head_from_modules($conf, $langs, $object, $head, $h, 'prelevement', 'remove');
|
|
|
|
|
return $head;
|
|
|
|
|
}
|