dolibarr/htdocs/core/lib/prelevement.lib.php

156 lines
5.1 KiB
PHP
Raw Permalink Normal View History

2010-11-18 18:10:31 +01:00
<?php
/* 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>
* 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
* 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
* \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
*
* @param BonPrelevement $object Object related to tabs
* @return array<array{0:string,1:string,2:string}> Array of tabs to show
2010-11-18 18:10:31 +01:00
*/
function prelevement_prepare_head(BonPrelevement $object)
2010-11-18 18:10:31 +01:00
{
global $langs, $conf;
$salary = $object->checkIfSalaryBonPrelevement();
$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();
$titleoftab = "WithdrawalsReceipts";
if ($object->type == 'bank-transfer') {
$titleoftab = "BankTransferReceipts";
}
$head[$h][0] = DOL_URL_ROOT.'/compta/prelevement/card.php?id='.$object->id;
$head[$h][1] = $langs->trans($titleoftab);
2010-11-18 18:10:31 +01:00
$head[$h][2] = 'prelevement';
$h++;
$titleoftab = $langs->trans("Bills");
if ($object->type == 'bank-transfer') {
$titleoftab = $langs->trans("SupplierBills");
}
if ($salary > 0) {
$titleoftab = $langs->trans("Salaries");
}
$head[$h][0] = DOL_URL_ROOT.'/compta/prelevement/factures.php?id='.$object->id;
$head[$h][1] = $titleoftab;
2010-11-18 18:10:31 +01:00
$head[$h][2] = 'invoices';
$h++;
$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++;
$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++;
// 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
complete_head_from_modules($conf, $langs, $object, $head, $h, 'prelevement', 'remove');
return $head;
2010-11-18 18:10:31 +01:00
}
/**
* Check need data to create standigns orders receipt file
2012-02-04 14:39:47 +01:00
*
* @param string $type 'bank-transfer' or 'direct-debit'
*
* @return int -1 if ko 0 if ok
*/
2020-12-31 10:49:27 +01:00
function prelevement_check_config($type = 'direct-debit')
{
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;
}
//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;
}
//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;
}
}
return 0;
}
/**
* Return array head with list of tabs to view object information
*
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
* @return array<array{0:string,1:string,2:string}> Array of tabs to show
*/
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>');
$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>');
$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;
}