dolibarr/htdocs/core/lib/accounting.lib.php

328 lines
9.1 KiB
PHP
Raw Normal View History

2014-08-27 07:03:42 +02:00
<?php
/* Copyright (C) 2013-2014 Olivier Geffroy <jeff@jeffinfo.com>
* Copyright (C) 2013-2021 Alexandre Spangaro <aspangaro@open-dsi.fr>
2017-05-25 05:32:13 +02:00
* Copyright (C) 2014 Florian Henry <florian.henry@open-concept.pro>
* Copyright (C) 2019 Eric Seigne <eric.seigne@cap-rel.fr>
* Copyright (C) 2021 Frédéric France <frederic.france@netlogic.fr>
2014-08-27 07:03:42 +02: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
* (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/>.
2014-08-27 07:03:42 +02:00
*/
/**
* \file htdocs/core/lib/accounting.lib.php
2019-06-18 22:38:52 +02:00
* \ingroup Accountancy (Double entries)
* \brief Library of accountancy functions
2014-08-27 07:03:42 +02:00
*/
2019-06-20 13:39:29 +02:00
2019-06-20 13:59:53 +02:00
/**
* Check if a value is empty with some options
*
* @author Michael - https://www.php.net/manual/fr/function.empty.php#90767
2019-06-20 13:59:53 +02:00
* @param mixed $var Value to test
* @param int|null $allow_false Setting this to true will make the function consider a boolean value of false as NOT empty. This parameter is false by default.
* @param int|null $allow_ws Setting this to true will make the function consider a string with nothing but white space as NOT empty. This parameter is false by default.
* @return boolean True of False
*/
2019-06-20 13:39:29 +02:00
function is_empty($var, $allow_false = false, $allow_ws = false)
{
if (!isset($var) || is_null($var) || ($allow_ws == false && trim($var) == "" && !is_bool($var)) || ($allow_false === false && is_bool($var) && $var === false) || (is_array($var) && empty($var))) {
return true;
}
2019-06-20 13:39:29 +02:00
return false;
}
2014-08-27 07:03:42 +02:00
/**
2014-08-30 05:44:12 +02:00
* Prepare array with list of tabs
2014-08-27 07:03:42 +02:00
*
* @param AccountingAccount $object Accounting account
2014-08-30 05:44:12 +02:00
* @return array Array of tabs to show
2014-08-27 07:03:42 +02:00
*/
function accounting_prepare_head(AccountingAccount $object)
2014-08-30 05:44:12 +02:00
{
2014-08-27 07:03:42 +02:00
global $langs, $conf;
2014-11-15 15:19:37 +01:00
2014-08-27 07:03:42 +02:00
$h = 0;
$head = array();
2014-11-15 15:19:37 +01:00
$head[$h][0] = DOL_URL_ROOT.'/accountancy/admin/card.php?id='.$object->id;
2020-09-08 04:58:42 +02:00
$head[$h][1] = $langs->trans("AccountAccounting");
2014-08-27 07:03:42 +02:00
$head[$h][2] = 'card';
$h++;
2014-11-15 15:19:37 +01:00
2014-08-27 07:03:42 +02: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, 'accounting_account');
2014-11-15 15:19:37 +01:00
2014-08-27 07:03:42 +02:00
complete_head_from_modules($conf, $langs, $object, $head, $h, 'accounting_account', 'remove');
2014-11-15 15:19:37 +01:00
2014-08-27 07:03:42 +02:00
return $head;
}
/**
* Return accounting account without zero on the right
*
* @param string $account Accounting account
* @return string String without zero on the right
*/
function clean_account($account)
{
$account = rtrim($account, "0");
2017-05-25 05:32:13 +02:00
return $account;
}
2014-08-27 07:03:42 +02:00
/**
2016-10-14 13:05:01 +02:00
* Return General accounting account with defined length (used for product and miscellaneous)
2014-08-27 07:03:42 +02:00
*
2014-08-30 06:05:02 +02:00
* @param string $account General accounting account
2014-11-15 15:19:37 +01:00
* @return string String with defined length
2014-08-27 07:03:42 +02:00
*/
2014-08-30 05:44:12 +02:00
function length_accountg($account)
{
2014-08-30 05:19:48 +02:00
global $conf;
2014-11-15 15:19:37 +01:00
2021-02-23 22:03:23 +01:00
if ($account < 0 || is_empty($account)) {
return '';
}
2017-05-25 05:32:13 +02:00
2021-02-23 22:03:23 +01:00
if (!empty($conf->global->ACCOUNTING_MANAGE_ZERO)) {
return $account;
}
2017-05-25 05:32:13 +02:00
2021-10-20 12:37:49 +02:00
$g = getDolGlobalInt('ACCOUNTING_LENGTH_GACCOUNT');
if (!is_empty($g)) {
2014-08-27 07:03:42 +02:00
// Clean parameters
$i = strlen($account);
2014-11-15 15:19:37 +01:00
if ($i >= 1) {
while ($i < $g) {
2014-08-27 07:03:42 +02:00
$account .= '0';
2014-11-15 15:19:37 +01:00
$i++;
2014-08-27 07:03:42 +02:00
}
2014-11-15 15:19:37 +01:00
2014-08-27 07:03:42 +02:00
return $account;
} else {
return $account;
}
} else {
return $account;
}
}
/**
2016-10-14 13:05:01 +02:00
* Return Auxiliary accounting account of thirdparties with defined length
2014-08-27 07:03:42 +02:00
*
2014-08-30 06:05:02 +02:00
* @param string $accounta Auxiliary accounting account
2014-11-15 15:19:37 +01:00
* @return string String with defined length
2014-08-27 07:03:42 +02:00
*/
2014-08-30 05:44:12 +02:00
function length_accounta($accounta)
{
2019-04-23 10:24:16 +02:00
global $conf;
2014-11-15 15:19:37 +01:00
2021-02-23 22:03:23 +01:00
if ($accounta < 0 || is_empty($accounta)) {
return '';
}
2017-05-25 05:32:13 +02:00
2021-02-23 22:03:23 +01:00
if (!empty($conf->global->ACCOUNTING_MANAGE_ZERO)) {
return $accounta;
}
2017-05-25 05:32:13 +02:00
2021-10-20 12:37:49 +02:00
$a = getDolGlobalInt('ACCOUNTING_LENGTH_AACCOUNT');
if (!is_empty($a)) {
2014-08-27 07:03:42 +02:00
// Clean parameters
$i = strlen($accounta);
2014-11-15 15:19:37 +01:00
if ($i >= 1) {
while ($i < $a) {
2014-08-27 07:03:42 +02:00
$accounta .= '0';
2014-11-15 15:19:37 +01:00
$i++;
2014-08-27 07:03:42 +02:00
}
2014-11-15 15:19:37 +01:00
2014-08-27 07:03:42 +02:00
return $accounta;
} else {
return $accounta;
}
} else {
return $accounta;
}
}
/**
2019-08-28 10:22:40 +02:00
* Show header of a page used to transfer/dispatch data in accounting
*
* @param string $nom Name of report
* @param string $variante Link for alternate report
* @param string $period Period of report
* @param string $periodlink Link to switch period
* @param string $description Description
2019-03-11 01:01:15 +01:00
* @param integer $builddate Date of generation
* @param string $exportlink Link for export or ''
* @param array $moreparam Array with list of params to add into form
* @param string $calcmode Calculation mode
* @param string $varlink Add a variable into the address of the page
* @return void
*/
function journalHead($nom, $variante, $period, $periodlink, $description, $builddate, $exportlink = '', $moreparam = array(), $calcmode = '', $varlink = '')
{
global $langs;
print "\n\n<!-- start banner journal -->\n";
2021-02-23 22:03:23 +01:00
if (!is_empty($varlink)) {
$varlink = '?'.$varlink;
}
$head = array();
$h = 0;
$head[$h][0] = $_SERVER["PHP_SELF"].$varlink;
$head[$h][1] = $langs->trans("Journalization");
$head[$h][2] = 'journal';
print '<form method="POST" action="'.$_SERVER["PHP_SELF"].$varlink.'">';
print '<input type="hidden" name="token" value="'.newToken().'">';
2020-10-22 22:50:03 +02:00
print dol_get_fiche_head($head, 'journal');
2021-02-23 22:03:23 +01:00
foreach ($moreparam as $key => $value) {
print '<input type="hidden" name="'.$key.'" value="'.$value.'">';
}
2021-02-28 11:48:35 +01:00
print '<table class="border centpercent tableforfield">';
// Ligne de titre
print '<tr>';
2021-02-28 11:48:35 +01:00
print '<td class="titlefieldcreate">'.$langs->trans("Name").'</td>';
print '<td colspan="3">';
print $nom;
print '</td>';
print '</tr>';
// Calculation mode
2021-02-23 22:03:23 +01:00
if ($calcmode) {
print '<tr>';
2021-02-28 11:48:35 +01:00
print '<td>'.$langs->trans("CalculationMode").'</td>';
2021-02-23 22:03:23 +01:00
if (!$variante) {
print '<td colspan="3">';
} else {
print '<td>';
}
print $calcmode;
2021-02-23 22:03:23 +01:00
if ($variante) {
print '</td><td colspan="2">'.$variante;
}
print '</td>';
print '</tr>';
}
// Ligne de la periode d'analyse du rapport
print '<tr>';
print '<td>'.$langs->trans("ReportPeriod").'</td>';
2021-02-23 22:03:23 +01:00
if (!$periodlink) {
print '<td colspan="3">';
} else {
print '<td>';
}
if ($period) {
print $period;
}
if ($periodlink) {
print '</td><td colspan="2">'.$periodlink;
}
print '</td>';
print '</tr>';
// Ligne de description
print '<tr>';
print '<td>'.$langs->trans("ReportDescription").'</td>';
print '<td colspan="3">'.$description.'</td>';
print '</tr>';
print '</table>';
2020-10-27 18:19:31 +01:00
print dol_get_fiche_end();
print '<div class="center"><input type="submit" class="button" name="submit" value="'.$langs->trans("Refresh").'"></div>';
print '</form>';
print "\n<!-- end banner journal -->\n\n";
}
2020-09-07 21:38:39 +02:00
/**
* Return Default dates for transfer based on periodicity option in accountancy setup
*
* @return array Dates of periodicity by default
*/
function getDefaultDatesForTransfer()
{
global $db, $conf;
// Period by default on transfer (0: previous month | 1: current month | 2: fiscal year)
2021-03-15 11:01:01 +01:00
$periodbydefaultontransfer = (empty($conf->global->ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER) ? 0 : $conf->global->ACCOUNTING_DEFAULT_PERIOD_ON_TRANSFER);
2020-09-07 21:38:39 +02:00
if ($periodbydefaultontransfer == 2) {
$sql = "SELECT date_start, date_end FROM ".MAIN_DB_PREFIX."accounting_fiscalyear ";
$sql .= " WHERE date_start < '".$db->idate(dol_now())."' AND date_end > '".$db->idate(dol_now())."'";
2020-09-07 21:38:39 +02:00
$sql .= $db->plimit(1);
$res = $db->query($sql);
if ($res->num_rows > 0) {
$fiscalYear = $db->fetch_object($res);
$date_start = strtotime($fiscalYear->date_start);
$date_end = strtotime($fiscalYear->date_end);
} else {
$month_start = ($conf->global->SOCIETE_FISCAL_MONTH_START ? ($conf->global->SOCIETE_FISCAL_MONTH_START) : 1);
$year_start = dol_print_date(dol_now(), '%Y');
if ($conf->global->SOCIETE_FISCAL_MONTH_START > dol_print_date(dol_now(), '%m')) {
$year_start = $year_start - 1;
}
2020-09-07 21:38:39 +02:00
$year_end = $year_start + 1;
$month_end = $month_start - 1;
2021-02-23 22:03:23 +01:00
if ($month_end < 1) {
2020-09-07 21:38:39 +02:00
$month_end = 12;
$year_end--;
}
$date_start = dol_mktime(0, 0, 0, $month_start, 1, $year_start);
$date_end = dol_get_last_day($year_end, $month_end);
}
} elseif ($periodbydefaultontransfer == 1) {
$year_current = strftime("%Y", dol_now());
$pastmonth = strftime("%m", dol_now());
$pastmonthyear = $year_current;
if ($pastmonth == 0) {
$pastmonth = 12;
$pastmonthyear--;
2020-09-07 21:38:39 +02:00
}
} else {
$year_current = strftime("%Y", dol_now());
$pastmonth = strftime("%m", dol_now()) - 1;
2020-09-07 21:38:39 +02:00
$pastmonthyear = $year_current;
if ($pastmonth == 0) {
$pastmonth = 12;
$pastmonthyear--;
2020-09-07 21:38:39 +02:00
}
}
return array(
'date_start' => $date_start,
'date_end' => $date_end,
'pastmonthyear' => $pastmonthyear,
'pastmonth' => $pastmonth
);
}