dolibarr 18.0.6
delais.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005 Simon Tosser <simon@kornog-computing.com>
5 * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
6 * Copyright (C) 2016 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr>
7 * Copyright (C) 2022 Frédéric France <frederic.france@netlogic.fr>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <https://www.gnu.org/licenses/>.
21 */
22
28// Load Dolibarr environment
29require '../main.inc.php';
30require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
31
32// Load translation files required by the page
33$langs->load("admin");
34
35if (!$user->admin) {
37}
38
39$action = GETPOST('action', 'aZ09');
40if (empty($action)) {
41 $action = 'edit';
42}
43
44// Define list of managed delays
45$modules = array(
46 'agenda' => array(
47 array(
48 'code' => 'MAIN_DELAY_ACTIONS_TODO',
49 'img' => 'action'
50 )
51 ),
52 'projet' => array(
53 array(
54 'code' => 'MAIN_DELAY_PROJECT_TO_CLOSE',
55 'img' => 'project'
56 ),
57 array(
58 'code' => 'MAIN_DELAY_TASKS_TODO',
59 'img' => 'projecttask'
60 )
61 ),
62 'propal' => array(
63 array(
64 'code' => 'MAIN_DELAY_PROPALS_TO_CLOSE',
65 'img' => 'propal'
66 ),
67 array(
68 'code' => 'MAIN_DELAY_PROPALS_TO_BILL',
69 'img' => 'propal'
70 )
71 ),
72 'commande' => array(
73 array(
74 'code' => 'MAIN_DELAY_ORDERS_TO_PROCESS',
75 'img' => 'order'
76 )
77 ),
78 'facture' => array(
79 array(
80 'code' => 'MAIN_DELAY_CUSTOMER_BILLS_UNPAYED',
81 'img' => 'bill'
82 )
83 ),
84 'fournisseur' => array(
85 array(
86 'code' => 'MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS',
87 'img' => 'order'
88 ),
89 array(
90 'code' => 'MAIN_DELAY_SUPPLIER_BILLS_TO_PAY',
91 'img' => 'bill'
92 )
93 ),
94 'service' => array(
95 array(
96 'code' => 'MAIN_DELAY_NOT_ACTIVATED_SERVICES',
97 'img' => 'service'
98 ),
99 array(
100 'code' => 'MAIN_DELAY_RUNNING_SERVICES',
101 'img' => 'service'
102 )
103 ),
104 'banque' => array(
105 array(
106 'code' => 'MAIN_DELAY_TRANSACTIONS_TO_CONCILIATE',
107 'img' => 'account'
108 ),
109 array(
110 'code' => 'MAIN_DELAY_CHEQUES_TO_DEPOSIT',
111 'img' => 'account'
112 )
113 ),
114 'adherent' => array(
115 array(
116 'code' => 'MAIN_DELAY_MEMBERS',
117 'img' => 'user'
118 )
119 ),
120 'expensereport' => array(
121 array(
122 'code' => 'MAIN_DELAY_EXPENSEREPORTS',
123 'img' => 'trip'
124 ),
125 /* TODO Enable this
126 array(
127 'code' => 'MAIN_DELAY_EXPENSEREPORTS_TO_PAY',
128 'img' => 'trip'
129 )*/
130 ),
131 'holiday' => array(
132 array(
133 'code' => 'MAIN_DELAY_HOLIDAYS',
134 'img' => 'holiday'
135 ),
136 ),
137);
138
139$labelmeteo = array(0=>$langs->trans("No"), 1=>$langs->trans("Yes"), 2=>$langs->trans("OnMobileOnly"));
140
141if (!isset($conf->global->MAIN_DELAY_MEMBERS)) {
142 $conf->global->MAIN_DELAY_MEMBERS = 0; // Must be same value than into conf.class.php
143}
144if (!isset($conf->global->MAIN_DELAY_ACTIONS_TODO)) {
145 $conf->global->MAIN_DELAY_ACTIONS_TODO = 7; // Must be same value than into conf.class.php
146}
147if (!isset($conf->global->MAIN_DELAY_ORDERS_TO_PROCESS)) {
148 $conf->global->MAIN_DELAY_ORDERS_TO_PROCESS = 2;
149}
150if (!isset($conf->global->MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS)) {
151 $conf->global->MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS = 7;
152}
153if (!isset($conf->global->MAIN_DELAY_ORDERS_TO_PROCESS)) {
154 $conf->global->MAIN_DELAY_ORDERS_TO_PROCESS = 2;
155}
156if (!isset($conf->global->MAIN_DELAY_ORDERS_TO_PROCESS)) {
157 $conf->global->MAIN_DELAY_ORDERS_TO_PROCESS = 2;
158}
159if (!isset($conf->global->MAIN_DELAY_ORDERS_TO_PROCESS)) {
160 $conf->global->MAIN_DELAY_ORDERS_TO_PROCESS = 2;
161}
162
163
164
165/*
166 * Actions
167 */
168
169if ($action == 'update') {
170 foreach ($modules as $module => $delays) {
171 if (isModEnabled($module)) {
172 foreach ($delays as $delay) {
173 if (GETPOST($delay['code']) != '') {
174 dolibarr_set_const($db, $delay['code'], GETPOST($delay['code']), 'chaine', 0, '', $conf->entity);
175 }
176 }
177 }
178 }
179
180 dolibarr_set_const($db, "MAIN_DISABLE_METEO", GETPOST("MAIN_DISABLE_METEO"), 'chaine', 0, '', $conf->entity);
181 dolibarr_set_const($db, "MAIN_USE_METEO_WITH_PERCENTAGE", GETPOST("MAIN_USE_METEO_WITH_PERCENTAGE"), 'chaine', 0, '', $conf->entity);
182
183 // For update value with percentage
184 $plus = '';
185 if (!empty($conf->global->MAIN_USE_METEO_WITH_PERCENTAGE)) {
186 $plus = '_PERCENTAGE';
187 }
188 // Update values
189 for ($i = 0; $i < 4; $i++) {
190 if (GETPOSTISSET('MAIN_METEO'.$plus.'_LEVEL'.$i)) {
191 dolibarr_set_const($db, 'MAIN_METEO'.$plus.'_LEVEL'.$i, GETPOST('MAIN_METEO'.$plus.'_LEVEL'.$i, 'int'), 'chaine', 0, '', $conf->entity);
192 }
193 }
194
195 setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
196
197 $action = 'edit';
198}
199
200
201/*
202 * View
203 */
204
205$form = new Form($db);
206
207llxHeader();
208
209print load_fiche_titre($langs->trans("DelaysOfToleranceBeforeWarning"), '', 'title_setup');
210
211print '<span class="opacitymedium">'.$langs->transnoentities("DelaysOfToleranceDesc", img_warning('default', '', 'pictowarning nopaddingleft'));
212print " ".$langs->trans("OnlyActiveElementsAreShown", DOL_URL_ROOT.'/admin/modules.php')."</span><br>\n";
213print "<br>\n";
214
215if ($action == 'edit') {
216 print '<form method="post" action="'.$_SERVER['PHP_SELF'].'" name="form_index">';
217 print '<input type="hidden" name="token" value="'.newToken().'">';
218 print '<input type="hidden" name="action" value="update">';
219
220 print '<table class="noborder centpercent">';
221 print '<tr class="liste_titre"><td colspan="2">'.$langs->trans("DelaysOfToleranceBeforeWarning").'</td>';
222 print '<td class="right">'.$langs->trans("LateWarningAfter").'</td></tr>';
223
224 foreach ($modules as $module => $delays) {
225 if (isModEnabled($module)) {
226 foreach ($delays as $delay) {
227 $value = (!empty($conf->global->{$delay['code']}) ? $conf->global->{$delay['code']} : 0);
228 print '<tr class="oddeven">';
229 print '<td width="20px">' . img_object('', $delay['img']) . '</td>';
230 print '<td>' . $langs->trans('Delays_' . $delay['code']) . '</td><td class="nowraponall right">';
231 print '<input class="right maxwidth75" type="number" name="' . $delay['code'] . '" value="' . $value . '"> ' . $langs->trans("days") . '</td></tr>';
232 }
233 }
234 }
235
236 print '</table>';
237
238 print '<br>';
239
240 // Show if meteo is enabled
241 print '<table class="noborder centpercent">';
242 print '<tr class="liste_titre"><td>'.$langs->trans("Option").'</td><td class="right">'.$langs->trans("Value").'</td></tr>';
243
244 print '<tr class="oddeven">';
245 print '<td>'.$langs->trans("MAIN_DISABLE_METEO").'</td><td class="right">';
246 print $form->selectarray('MAIN_DISABLE_METEO', $labelmeteo, (empty($conf->global->MAIN_DISABLE_METEO) ? 0 : $conf->global->MAIN_DISABLE_METEO));
247 print '</td></tr>';
248
249 print '</table>';
250} else {
251 /*
252 * Show parameters
253 */
254
255 print '<table class="noborder centpercent">';
256 print '<tr class="liste_titre"><td colspan="2">'.$langs->trans("DelaysOfToleranceBeforeWarning").'</td><td class="right">'.$langs->trans("Value").'</td></tr>';
257
258 foreach ($modules as $module => $delays) {
259 if (isModEnabled($module)) {
260 foreach ($delays as $delay) {
261 $value = (!empty($conf->global->{$delay['code']}) ? $conf->global->{$delay['code']} : 0);
262 print '<tr class="oddeven">';
263 print '<td width="20px">' . img_object('', $delay['img']) . '</td>';
264 print '<td>' . $langs->trans('Delays_' . $delay['code']) . '</td>';
265 print '<td class="right">' . $value . ' ' . $langs->trans("days") . '</td></tr>';
266 }
267 }
268 }
269
270 print '</table>';
271
272 print '<br>';
273
274 // Show if meteo is enabled
275 print '<table class="noborder centpercent">';
276 print '<tr class="liste_titre"><td>'.$langs->trans("Option").'</td><td class="right">'.$langs->trans("Value").'</td></tr>';
277
278 print '<tr class="oddeven">';
279 print '<td>'.$langs->trans("MAIN_DISABLE_METEO").'</td><td class="center">';
280 print $labelmeteo[$conf->global->MAIN_DISABLE_METEO];
281 print '</td></tr>';
282
283 print '</table>';
284}
285
286print '<br>';
287
288
289if (empty($conf->global->MAIN_DISABLE_METEO) || $conf->global->MAIN_DISABLE_METEO != 1) {
290 // Show logo for weather
291 print '<span class="opacitymedium">'.$langs->trans("DescWeather").'</span> ';
292
293 if ($action == 'edit') {
294 $str_mode_std = $langs->trans('MeteoStdModEnabled').' : '.$langs->trans('MeteoUseMod', $langs->transnoentitiesnoconv('MeteoPercentageMod'));
295 $str_mode_percentage = $langs->trans('MeteoPercentageModEnabled').' : '.$langs->trans('MeteoUseMod', $langs->transnoentitiesnoconv('MeteoStdMod'));
296 if (empty($conf->global->MAIN_USE_METEO_WITH_PERCENTAGE)) {
297 $str_mode_enabled = $str_mode_std;
298 } else {
299 $str_mode_enabled = $str_mode_percentage;
300 }
301 print '<br><a href="#" onclick="return false;" id="change_mode">'.$str_mode_enabled.'</a>';
302 print '<input type="hidden" id="MAIN_USE_METEO_WITH_PERCENTAGE" name="MAIN_USE_METEO_WITH_PERCENTAGE" value="'.(!empty($conf->global->MAIN_USE_METEO_WITH_PERCENTAGE) ? $conf->global->MAIN_USE_METEO_WITH_PERCENTAGE : '').'" />';
303
304 print '<br><br>';
305 } else {
306 if (empty($conf->global->MAIN_USE_METEO_WITH_PERCENTAGE)) {
307 print $langs->trans('MeteoStdModEnabled');
308 } else {
309 print $langs->trans('MeteoPercentageModEnabled');
310 }
311 print '<br><br>';
312 }
313
314 $offset = 0;
315 $cursor = 10; // By default
316 //if (!empty($conf->global->MAIN_METEO_OFFSET)) $offset=$conf->global->MAIN_METEO_OFFSET;
317 //if (!empty($conf->global->MAIN_METEO_GAP)) $cursor=$conf->global->MAIN_METEO_GAP;
318 $level0 = $offset;
319 if (!empty($conf->global->MAIN_METEO_LEVEL0)) {
320 $level0 = $conf->global->MAIN_METEO_LEVEL0;
321 }
322 $level1 = $offset + $cursor;
323 if (!empty($conf->global->MAIN_METEO_LEVEL1)) {
324 $level1 = $conf->global->MAIN_METEO_LEVEL1;
325 }
326 $level2 = $offset + 2 * $cursor;
327 if (!empty($conf->global->MAIN_METEO_LEVEL2)) {
328 $level2 = $conf->global->MAIN_METEO_LEVEL2;
329 }
330 $level3 = $offset + 3 * $cursor;
331 if (!empty($conf->global->MAIN_METEO_LEVEL3)) {
332 $level3 = $conf->global->MAIN_METEO_LEVEL3;
333 }
334 $text = ''; $options = 'class="valignmiddle" height="60px"';
335
336
337 if ($action == 'edit') {
338 print '<div id="standard" '.(empty($conf->global->MAIN_USE_METEO_WITH_PERCENTAGE) ? '' : 'style="display:none;"').'>';
339
340 print '<div>';
341 print '<div class="inline-block" style="padding-right: 20px">';
342 print img_weather($text, 0, $options);
343 print ' &lt;= <input type="text" size="2" name="MAIN_METEO_LEVEL0" value="'.$level0.'"/></td>';
344 print '</div><div class="inline-block" style="padding-right: 20px">';
345 print img_weather($text, 1, $options);
346 print ' &lt;= <input type="text" size="2" name="MAIN_METEO_LEVEL1" value="'.$level1.'"/></td>';
347 print '</div><div class="inline-block" style="padding-right: 20px">';
348 print img_weather($text, 2, $options);
349 print ' &lt;= <input type="text" size="2" name="MAIN_METEO_LEVEL2" value="'.$level2.'"/></td>';
350 print '</div><div class="inline-block" style="padding-right: 20px">';
351 print img_weather($text, 3, $options);
352 print ' &lt;= <input type="text" size="2" name="MAIN_METEO_LEVEL3" value="'.$level3.'"/></td>';
353 print '</div>';
354 print '</div>';
355
356 print '</div>';
357
358 print '<div id="percentage" '.(empty($conf->global->MAIN_USE_METEO_WITH_PERCENTAGE) ? 'style="display:none;"' : '').'>';
359
360 print '<div>';
361 print '<div class="inline-block" style="padding-right: 20px">';
362 print img_weather($text, 0, $options);
363 print ' &lt;= <input type="text" size="2" name="MAIN_METEO_PERCENTAGE_LEVEL0" value="'.getDolGlobalString('MAIN_METEO_PERCENTAGE_LEVEL0').'"/>&nbsp;%</td>';
364 print '</div><div class="inline-block" style="padding-right: 20px">';
365 print img_weather($text, 1, $options);
366 print ' &lt;= <input type="text" size="2" name="MAIN_METEO_PERCENTAGE_LEVEL1" value="'.getDolGlobalString('MAIN_METEO_PERCENTAGE_LEVEL1').'"/>&nbsp;%</td>';
367 print '</div><div class="inline-block" style="padding-right: 20px">';
368 print img_weather($text, 2, $options);
369 print ' &lt;= <input type="text" size="2" name="MAIN_METEO_PERCENTAGE_LEVEL2" value="'.getDolGlobalString('MAIN_METEO_PERCENTAGE_LEVEL2').'"/>&nbsp;%</td>';
370 print '</div><div class="inline-block" style="padding-right: 20px">';
371 print img_weather($text, 3, $options);
372 print ' &lt;= <input type="text" size="2" name="MAIN_METEO_PERCENTAGE_LEVEL3" value="'.getDolGlobalString('MAIN_METEO_PERCENTAGE_LEVEL3').'"/>&nbsp;%</td>';
373 print '</div>';
374 print '</div>';
375
376 print '</div>';
377
378 ?>
379
380 <script type="text/javascript">
381
382 $(document).ready(function() {
383
384 $("#change_mode").click(function() {
385 var use_percent = $("#MAIN_USE_METEO_WITH_PERCENTAGE");
386 var str_mode_std = "<?php print $str_mode_std; ?>";
387 var str_mode_percentage = "<?php print $str_mode_percentage; ?>";
388
389 if(use_percent.val() == 1) {
390 use_percent.val(0);
391 $("#standard").show();
392 $("#percentage").hide();
393 $(this).html(str_mode_std);
394 } else {
395 use_percent.val(1);
396 $("#standard").hide();
397 $("#percentage").show();
398 $(this).html(str_mode_percentage);
399 }
400 });
401
402 });
403
404 </script>
405
406 <?php
407 } else {
408 if (!empty($conf->global->MAIN_USE_METEO_WITH_PERCENTAGE)) {
409 print '<div>';
410 print '<div class="inline-block" style="padding-right: 20px">';
411 print img_weather($text, 0, $options);
412 print ' &lt;= '.$conf->global->MAIN_METEO_PERCENTAGE_LEVEL0.'&nbsp;%</td>';
413 print '</div><div class="inline-block" style="padding-right: 20px">';
414 print img_weather($text, 1, $options);
415 print ' &lt;= '.$conf->global->MAIN_METEO_PERCENTAGE_LEVEL1.'&nbsp;%</td>';
416 print '</div><div class="inline-block" style="padding-right: 20px">';
417 print img_weather($text, 2, $options);
418 print ' &lt;= '.$conf->global->MAIN_METEO_PERCENTAGE_LEVEL2.'&nbsp;%</td>';
419 print '</div><div class="inline-block" style="padding-right: 20px">';
420 print img_weather($text, 3, $options);
421 print ' &lt;= '.$conf->global->MAIN_METEO_PERCENTAGE_LEVEL3.'&nbsp;%</td>';
422 print '</div><div class="inline-block" style="padding-right: 20px">';
423 print img_weather($text, 4, $options);
424 print ' &gt; '.$conf->global->MAIN_METEO_PERCENTAGE_LEVEL3.'&nbsp;%</td>';
425 print '</div>';
426 print '</div>';
427 } else {
428 print '<div>';
429 print '<div class="inline-block" style="padding-right: 20px">';
430 print img_weather($text, 0, $options);
431 print ' &lt;= '.$level0;
432 print '</div><div class="inline-block" style="padding-right: 20px">';
433 print img_weather($text, 1, $options);
434 print ' &lt;= '.$level1;
435 print '</div><div class="inline-block" style="padding-right: 20px">';
436 print img_weather($text, 2, $options);
437 print ' &lt;= '.$level2;
438 print '</div><div class="inline-block" style="padding-right: 20px">';
439 print img_weather($text, 3, $options);
440 print ' &lt;= '.$level3;
441 print '</div><div class="inline-block" style="padding-right: 20px">';
442 print img_weather($text, 4, $options);
443 print ' &gt; '.$level3;
444 print '</div>';
445 print '</div>';
446 }
447 }
448}
449
450
451if ($action == 'edit') {
452 print $form->buttonsSaveCancel("Save", '');
453 print '</form>';
454} else {
455 print '<br><br><div class="tabsAction">';
456 print '<a class="butAction reposition" href="delais.php?action=edit&token='.newToken().'">'.$langs->trans("Modify").'</a>';
457 print '</div>';
458}
459
460// End of page
461llxFooter();
462$db->close();
dolibarr_set_const($db, $name, $value, $type='chaine', $visible=0, $note='', $entity=1)
Insert a parameter (key,value) into database (delete old key then insert it again).
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Definition wrapper.php:56
llxFooter()
Empty footer.
Definition wrapper.php:70
Class to manage generation of HTML components Only common components must be here.
img_weather($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $morecss='')
Show weather picto.
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
Definition repair.php:120
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.