* Copyright (C) 2004-2010 Laurent Destailleur * Copyright (C) 2005 Simon Tosser * Copyright (C) 2005-2012 Regis Houssin * Copyright (C) 2016 Raphaël Doursenaud * Copyright (C) 2022-2024 Frédéric France * * 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 * along with this program. If not, see . */ /** * \file htdocs/admin/delais.php * \brief Page to setup late delays */ // Load Dolibarr environment require '../main.inc.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php'; // Load translation files required by the page $langs->load("admin"); if (!$user->admin) { accessforbidden(); } $action = GETPOST('action', 'aZ09'); if (empty($action)) { $action = 'edit'; } // Define list of managed delays $modules = array( 'agenda' => array( array( 'code' => 'MAIN_DELAY_ACTIONS_TODO', 'img' => 'action' ) ), 'projet' => array( array( 'code' => 'MAIN_DELAY_PROJECT_TO_CLOSE', 'img' => 'project' ), array( 'code' => 'MAIN_DELAY_TASKS_TODO', 'img' => 'projecttask' ) ), 'propal' => array( array( 'code' => 'MAIN_DELAY_PROPALS_TO_CLOSE', 'img' => 'propal' ), array( 'code' => 'MAIN_DELAY_PROPALS_TO_BILL', 'img' => 'propal' ) ), 'commande' => array( array( 'code' => 'MAIN_DELAY_ORDERS_TO_PROCESS', 'img' => 'order' ) ), 'facture' => array( array( 'code' => 'MAIN_DELAY_CUSTOMER_BILLS_UNPAYED', 'img' => 'bill' ) ), 'fournisseur' => array( array( 'code' => 'MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS', 'img' => 'order' ), array( 'code' => 'MAIN_DELAY_SUPPLIER_BILLS_TO_PAY', 'img' => 'bill' ) ), 'service' => array( array( 'code' => 'MAIN_DELAY_NOT_ACTIVATED_SERVICES', 'img' => 'service' ), array( 'code' => 'MAIN_DELAY_RUNNING_SERVICES', 'img' => 'service' ) ), 'banque' => array( array( 'code' => 'MAIN_DELAY_TRANSACTIONS_TO_CONCILIATE', 'img' => 'account' ), array( 'code' => 'MAIN_DELAY_CHEQUES_TO_DEPOSIT', 'img' => 'account' ) ), 'adherent' => array( array( 'code' => 'MAIN_DELAY_MEMBERS', 'img' => 'user' ) ), 'expensereport' => array( array( 'code' => 'MAIN_DELAY_EXPENSEREPORTS', 'img' => 'trip' ), /* TODO Enable this array( 'code' => 'MAIN_DELAY_EXPENSEREPORTS_TO_PAY', 'img' => 'trip' )*/ ), 'holiday' => array( array( 'code' => 'MAIN_DELAY_HOLIDAYS', 'img' => 'holiday' ), ), ); $labelmeteo = array(0=>$langs->trans("No"), 1=>$langs->trans("Yes"), 2=>$langs->trans("OnMobileOnly")); if (!isset($conf->global->MAIN_DELAY_MEMBERS)) { $conf->global->MAIN_DELAY_MEMBERS = 0; // Must be same value than into conf.class.php } if (!isset($conf->global->MAIN_DELAY_ACTIONS_TODO)) { $conf->global->MAIN_DELAY_ACTIONS_TODO = 7; // Must be same value than into conf.class.php } if (!isset($conf->global->MAIN_DELAY_ORDERS_TO_PROCESS)) { $conf->global->MAIN_DELAY_ORDERS_TO_PROCESS = 2; } if (!isset($conf->global->MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS)) { $conf->global->MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS = 7; } if (!isset($conf->global->MAIN_DELAY_ORDERS_TO_PROCESS)) { $conf->global->MAIN_DELAY_ORDERS_TO_PROCESS = 2; } if (!isset($conf->global->MAIN_DELAY_ORDERS_TO_PROCESS)) { $conf->global->MAIN_DELAY_ORDERS_TO_PROCESS = 2; } if (!isset($conf->global->MAIN_DELAY_ORDERS_TO_PROCESS)) { $conf->global->MAIN_DELAY_ORDERS_TO_PROCESS = 2; } /* * Actions */ if ($action == 'update') { foreach ($modules as $module => $delays) { if (isModEnabled($module)) { foreach ($delays as $delay) { if (GETPOST($delay['code']) != '') { dolibarr_set_const($db, $delay['code'], GETPOST($delay['code']), 'chaine', 0, '', $conf->entity); } } } } dolibarr_set_const($db, "MAIN_DISABLE_METEO", GETPOST("MAIN_DISABLE_METEO"), 'chaine', 0, '', $conf->entity); dolibarr_set_const($db, "MAIN_USE_METEO_WITH_PERCENTAGE", GETPOST("MAIN_USE_METEO_WITH_PERCENTAGE"), 'chaine', 0, '', $conf->entity); // For update value with percentage $plus = ''; if (getDolGlobalString('MAIN_USE_METEO_WITH_PERCENTAGE')) { $plus = '_PERCENTAGE'; } // Update values for ($i = 0; $i < 4; $i++) { if (GETPOSTISSET('MAIN_METEO'.$plus.'_LEVEL'.$i)) { dolibarr_set_const($db, 'MAIN_METEO'.$plus.'_LEVEL'.$i, GETPOSTINT('MAIN_METEO'.$plus.'_LEVEL'.$i), 'chaine', 0, '', $conf->entity); } } setEventMessages($langs->trans("SetupSaved"), null, 'mesgs'); $action = 'edit'; } /* * View */ $form = new Form($db); llxHeader('', '', '', '', 0, 0, '', '', '', 'mod-admin page-delais'); print load_fiche_titre($langs->trans("DelaysOfToleranceBeforeWarning"), '', 'title_setup'); print ''.$langs->transnoentities("DelaysOfToleranceDesc", img_warning('default', '', 'pictowarning nopaddingleft')); print " ".$langs->trans("OnlyActiveElementsAreShown", DOL_URL_ROOT.'/admin/modules.php')."
\n"; print "
\n"; print "
\n"; if ($action == 'edit') { print '
'; print ''; print ''; print ''; print ''; print ''; foreach ($modules as $module => $delays) { if (isModEnabled($module)) { foreach ($delays as $delay) { $value = getDolGlobalInt($delay['code']); print ''; print ''; print ''; } } } print '
'.$langs->trans("DelaysOfToleranceBeforeWarning").''.$langs->trans("LateWarningAfter").'
' . img_object('', $delay['img']) . '' . $langs->trans('Delays_' . $delay['code']) . ''; print ' ' . $langs->trans("days") . '
'; print '
'; // Show if meteo is enabled print ''; print ''; print ''; print ''; print '
'.$langs->trans("Option").''.$langs->trans("Value").'
'.$langs->trans("MAIN_DISABLE_METEO").''; print $form->selectarray('MAIN_DISABLE_METEO', $labelmeteo, (!getDolGlobalString('MAIN_DISABLE_METEO') ? 0 : $conf->global->MAIN_DISABLE_METEO)); print '
'; } else { /* * Show parameters */ print ''; print ''; foreach ($modules as $module => $delays) { if (isModEnabled($module)) { foreach ($delays as $delay) { $value = getDolGlobalInt($delay['code']); print ''; print ''; print ''; print ''; } } } print '
'.$langs->trans("DelaysOfToleranceBeforeWarning").''.$langs->trans("Value").'
' . img_object('', $delay['img']) . '' . $langs->trans('Delays_' . $delay['code']) . '' . $value . ' ' . $langs->trans("days") . '
'; print '
'; // Show if meteo is enabled print ''; print ''; print ''; print ''; print '
'.$langs->trans("Option").''.$langs->trans("Value").'
'.$langs->trans("MAIN_DISABLE_METEO").''; print $labelmeteo[getDolGlobalString('MAIN_DISABLE_METEO')]; print '
'; } print '
'; if (!getDolGlobalString('MAIN_DISABLE_METEO') || getDolGlobalInt('MAIN_DISABLE_METEO') != 1) { // Show logo for weather print ''.$langs->trans("DescWeather").' '; if ($action == 'edit') { $str_mode_std = $langs->trans('MeteoStdModEnabled').' : '.$langs->trans('MeteoUseMod', $langs->transnoentitiesnoconv('MeteoPercentageMod')); $str_mode_percentage = $langs->trans('MeteoPercentageModEnabled').' : '.$langs->trans('MeteoUseMod', $langs->transnoentitiesnoconv('MeteoStdMod')); if (!getDolGlobalString('MAIN_USE_METEO_WITH_PERCENTAGE')) { $str_mode_enabled = $str_mode_std; } else { $str_mode_enabled = $str_mode_percentage; } print '
'.$str_mode_enabled.''; print ''; print '

'; } else { if (!getDolGlobalString('MAIN_USE_METEO_WITH_PERCENTAGE')) { print $langs->trans('MeteoStdModEnabled'); } else { print $langs->trans('MeteoPercentageModEnabled'); } print '

'; } $offset = 0; $cursor = 10; // By default //if (!empty($conf->global->MAIN_METEO_OFFSET)) $offset=$conf->global->MAIN_METEO_OFFSET; //if (!empty($conf->global->MAIN_METEO_GAP)) $cursor=$conf->global->MAIN_METEO_GAP; $level0 = $offset; if (getDolGlobalString('MAIN_METEO_LEVEL0')) { $level0 = getDolGlobalString('MAIN_METEO_LEVEL0'); } $level1 = $offset + $cursor; if (getDolGlobalString('MAIN_METEO_LEVEL1')) { $level1 = getDolGlobalString('MAIN_METEO_LEVEL1'); } $level2 = $offset + 2 * $cursor; if (getDolGlobalString('MAIN_METEO_LEVEL2')) { $level2 = getDolGlobalString('MAIN_METEO_LEVEL2'); } $level3 = $offset + 3 * $cursor; if (getDolGlobalString('MAIN_METEO_LEVEL3')) { $level3 = getDolGlobalString('MAIN_METEO_LEVEL3'); } $text = ''; $options = 'class="valignmiddle" height="60px"'; if ($action == 'edit') { print '
'; print '
'; print '
'; print img_weather($text, 0, $options); print ' <= '; print '
'; print img_weather($text, 1, $options); print ' <= '; print '
'; print img_weather($text, 2, $options); print ' <= '; print '
'; print img_weather($text, 3, $options); print ' <= '; print '
'; print '
'; print '
'; print '
'; print '
'; print '
'; print img_weather($text, 0, $options); print ' <=  %'; print '
'; print img_weather($text, 1, $options); print ' <=  %'; print '
'; print img_weather($text, 2, $options); print ' <=  %'; print '
'; print img_weather($text, 3, $options); print ' <=  %'; print '
'; print '
'; print '
'; ?> '; print '
'; print img_weather($text, 0, $options); print ' <= ' . getDolGlobalString('MAIN_METEO_PERCENTAGE_LEVEL0').' %'; print '
'; print img_weather($text, 1, $options); print ' <= ' . getDolGlobalString('MAIN_METEO_PERCENTAGE_LEVEL1').' %'; print '
'; print img_weather($text, 2, $options); print ' <= ' . getDolGlobalString('MAIN_METEO_PERCENTAGE_LEVEL2').' %'; print '
'; print img_weather($text, 3, $options); print ' <= ' . getDolGlobalString('MAIN_METEO_PERCENTAGE_LEVEL3').' %'; print '
'; print img_weather($text, 4, $options); print ' > ' . getDolGlobalString('MAIN_METEO_PERCENTAGE_LEVEL3').' %'; print '
'; print ''; } else { print '
'; print '
'; print img_weather($text, 0, $options); print ' <= '.$level0; print '
'; print img_weather($text, 1, $options); print ' <= '.$level1; print '
'; print img_weather($text, 2, $options); print ' <= '.$level2; print '
'; print img_weather($text, 3, $options); print ' <= '.$level3; print '
'; print img_weather($text, 4, $options); print ' > '.$level3; print '
'; print '
'; } } } if ($action == 'edit') { print $form->buttonsSaveCancel("Save", ''); print '
'; } else { print '

'; print ''.$langs->trans("Modify").''; print '
'; } // End of page llxFooter(); $db->close();