dolibarr 20.0.0
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 (getDolGlobalString('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, GETPOSTINT('MAIN_METEO'.$plus.'_LEVEL'.$i), '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('', '', '', '', 0, 0, '', '', '', 'mod-admin page-delais');
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";
214print "<br>\n";
215
216if ($action == 'edit') {
217 print '<form method="post" action="'.$_SERVER['PHP_SELF'].'" name="form_index">';
218 print '<input type="hidden" name="token" value="'.newToken().'">';
219 print '<input type="hidden" name="action" value="update">';
220
221 print '<table class="noborder centpercent">';
222 print '<tr class="liste_titre"><td colspan="2">'.$langs->trans("DelaysOfToleranceBeforeWarning").'</td>';
223 print '<td class="right">'.$langs->trans("LateWarningAfter").'</td></tr>';
224
225 foreach ($modules as $module => $delays) {
226 if (isModEnabled($module)) {
227 foreach ($delays as $delay) {
228 $value = getDolGlobalInt($delay['code']);
229 print '<tr class="oddeven">';
230 print '<td width="20px">' . img_object('', $delay['img']) . '</td>';
231 print '<td>' . $langs->trans('Delays_' . $delay['code']) . '</td><td class="nowraponall right">';
232 print '<input class="right maxwidth75" type="number" name="' . $delay['code'] . '" value="' . $value . '"> ' . $langs->trans("days") . '</td></tr>';
233 }
234 }
235 }
236
237 print '</table>';
238
239 print '<br>';
240
241 // Show if meteo is enabled
242 print '<table class="noborder centpercent">';
243 print '<tr class="liste_titre"><td>'.$langs->trans("Option").'</td><td class="right">'.$langs->trans("Value").'</td></tr>';
244
245 print '<tr class="oddeven">';
246 print '<td>'.$langs->trans("MAIN_DISABLE_METEO").'</td><td class="right">';
247 print $form->selectarray('MAIN_DISABLE_METEO', $labelmeteo, (!getDolGlobalString('MAIN_DISABLE_METEO') ? 0 : $conf->global->MAIN_DISABLE_METEO));
248 print '</td></tr>';
249
250 print '</table>';
251} else {
252 /*
253 * Show parameters
254 */
255
256 print '<table class="noborder centpercent">';
257 print '<tr class="liste_titre"><td colspan="2">'.$langs->trans("DelaysOfToleranceBeforeWarning").'</td><td class="right">'.$langs->trans("Value").'</td></tr>';
258
259 foreach ($modules as $module => $delays) {
260 if (isModEnabled($module)) {
261 foreach ($delays as $delay) {
262 $value = getDolGlobalInt($delay['code']);
263 print '<tr class="oddeven">';
264 print '<td width="20px">' . img_object('', $delay['img']) . '</td>';
265 print '<td>' . $langs->trans('Delays_' . $delay['code']) . '</td>';
266 print '<td class="right">' . $value . ' ' . $langs->trans("days") . '</td></tr>';
267 }
268 }
269 }
270
271 print '</table>';
272
273 print '<br>';
274
275 // Show if meteo is enabled
276 print '<table class="noborder centpercent">';
277 print '<tr class="liste_titre"><td>'.$langs->trans("Option").'</td><td class="right">'.$langs->trans("Value").'</td></tr>';
278
279 print '<tr class="oddeven">';
280 print '<td>'.$langs->trans("MAIN_DISABLE_METEO").'</td><td class="center">';
281 print $labelmeteo[getDolGlobalString('MAIN_DISABLE_METEO')];
282 print '</td></tr>';
283
284 print '</table>';
285}
286
287print '<br>';
288
289
290if (!getDolGlobalString('MAIN_DISABLE_METEO') || getDolGlobalInt('MAIN_DISABLE_METEO') != 1) {
291 // Show logo for weather
292 print '<span class="opacitymedium">'.$langs->trans("DescWeather").'</span> ';
293
294 if ($action == 'edit') {
295 $str_mode_std = $langs->trans('MeteoStdModEnabled').' : '.$langs->trans('MeteoUseMod', $langs->transnoentitiesnoconv('MeteoPercentageMod'));
296 $str_mode_percentage = $langs->trans('MeteoPercentageModEnabled').' : '.$langs->trans('MeteoUseMod', $langs->transnoentitiesnoconv('MeteoStdMod'));
297 if (!getDolGlobalString('MAIN_USE_METEO_WITH_PERCENTAGE')) {
298 $str_mode_enabled = $str_mode_std;
299 } else {
300 $str_mode_enabled = $str_mode_percentage;
301 }
302 print '<br><a href="#" onclick="return false;" id="change_mode">'.$str_mode_enabled.'</a>';
303 print '<input type="hidden" id="MAIN_USE_METEO_WITH_PERCENTAGE" name="MAIN_USE_METEO_WITH_PERCENTAGE" value="'.(getDolGlobalString('MAIN_USE_METEO_WITH_PERCENTAGE') ? $conf->global->MAIN_USE_METEO_WITH_PERCENTAGE : '').'" />';
304
305 print '<br><br>';
306 } else {
307 if (!getDolGlobalString('MAIN_USE_METEO_WITH_PERCENTAGE')) {
308 print $langs->trans('MeteoStdModEnabled');
309 } else {
310 print $langs->trans('MeteoPercentageModEnabled');
311 }
312 print '<br><br>';
313 }
314
315 $offset = 0;
316 $cursor = 10; // By default
317 //if (!empty($conf->global->MAIN_METEO_OFFSET)) $offset=$conf->global->MAIN_METEO_OFFSET;
318 //if (!empty($conf->global->MAIN_METEO_GAP)) $cursor=$conf->global->MAIN_METEO_GAP;
319 $level0 = $offset;
320 if (getDolGlobalString('MAIN_METEO_LEVEL0')) {
321 $level0 = getDolGlobalString('MAIN_METEO_LEVEL0');
322 }
323 $level1 = $offset + $cursor;
324 if (getDolGlobalString('MAIN_METEO_LEVEL1')) {
325 $level1 = getDolGlobalString('MAIN_METEO_LEVEL1');
326 }
327 $level2 = $offset + 2 * $cursor;
328 if (getDolGlobalString('MAIN_METEO_LEVEL2')) {
329 $level2 = getDolGlobalString('MAIN_METEO_LEVEL2');
330 }
331 $level3 = $offset + 3 * $cursor;
332 if (getDolGlobalString('MAIN_METEO_LEVEL3')) {
333 $level3 = getDolGlobalString('MAIN_METEO_LEVEL3');
334 }
335 $text = '';
336 $options = 'class="valignmiddle" height="60px"';
337
338
339 if ($action == 'edit') {
340 print '<div id="standard" '.(!getDolGlobalString('MAIN_USE_METEO_WITH_PERCENTAGE') ? '' : 'style="display:none;"').'>';
341
342 print '<div>';
343 print '<div class="inline-block" style="padding-right: 20px">';
344 print img_weather($text, 0, $options);
345 print ' &lt;= <input type="text" size="2" name="MAIN_METEO_LEVEL0" value="'.$level0.'"/></td>';
346 print '</div><div class="inline-block" style="padding-right: 20px">';
347 print img_weather($text, 1, $options);
348 print ' &lt;= <input type="text" size="2" name="MAIN_METEO_LEVEL1" value="'.$level1.'"/></td>';
349 print '</div><div class="inline-block" style="padding-right: 20px">';
350 print img_weather($text, 2, $options);
351 print ' &lt;= <input type="text" size="2" name="MAIN_METEO_LEVEL2" value="'.$level2.'"/></td>';
352 print '</div><div class="inline-block" style="padding-right: 20px">';
353 print img_weather($text, 3, $options);
354 print ' &lt;= <input type="text" size="2" name="MAIN_METEO_LEVEL3" value="'.$level3.'"/></td>';
355 print '</div>';
356 print '</div>';
357
358 print '</div>';
359
360 print '<div id="percentage" '.(!getDolGlobalString('MAIN_USE_METEO_WITH_PERCENTAGE') ? 'style="display:none;"' : '').'>';
361
362 print '<div>';
363 print '<div class="inline-block" style="padding-right: 20px">';
364 print img_weather($text, 0, $options);
365 print ' &lt;= <input type="text" size="2" name="MAIN_METEO_PERCENTAGE_LEVEL0" value="'.getDolGlobalString('MAIN_METEO_PERCENTAGE_LEVEL0').'"/>&nbsp;%</td>';
366 print '</div><div class="inline-block" style="padding-right: 20px">';
367 print img_weather($text, 1, $options);
368 print ' &lt;= <input type="text" size="2" name="MAIN_METEO_PERCENTAGE_LEVEL1" value="'.getDolGlobalString('MAIN_METEO_PERCENTAGE_LEVEL1').'"/>&nbsp;%</td>';
369 print '</div><div class="inline-block" style="padding-right: 20px">';
370 print img_weather($text, 2, $options);
371 print ' &lt;= <input type="text" size="2" name="MAIN_METEO_PERCENTAGE_LEVEL2" value="'.getDolGlobalString('MAIN_METEO_PERCENTAGE_LEVEL2').'"/>&nbsp;%</td>';
372 print '</div><div class="inline-block" style="padding-right: 20px">';
373 print img_weather($text, 3, $options);
374 print ' &lt;= <input type="text" size="2" name="MAIN_METEO_PERCENTAGE_LEVEL3" value="'.getDolGlobalString('MAIN_METEO_PERCENTAGE_LEVEL3').'"/>&nbsp;%</td>';
375 print '</div>';
376 print '</div>';
377
378 print '</div>'; ?>
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 (getDolGlobalString('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;= ' . getDolGlobalString('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;= ' . getDolGlobalString('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;= ' . getDolGlobalString('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;= ' . getDolGlobalString('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; ' . getDolGlobalString('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:55
llxFooter()
Empty footer.
Definition wrapper.php:69
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($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
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.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
Definition repair.php:139
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.