dolibarr/htdocs/admin/delais.php

282 lines
8.2 KiB
PHP
Raw Normal View History

2005-10-13 19:42:08 +02:00
<?php
/* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
2010-12-31 11:37:48 +01:00
* Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
2007-10-24 01:28:13 +02:00
* Copyright (C) 2005 Simon Tosser <simon@kornog-computing.com>
2012-12-30 15:13:49 +01:00
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@capnetworks.com>
*
* 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
2011-08-01 00:21:57 +02:00
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
2009-10-02 01:31:27 +02:00
* \file htdocs/admin/delais.php
* \brief Page to setup late delays
*/
2005-10-14 23:05:13 +02:00
require '../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
$langs->load("admin");
2012-07-09 18:09:44 +02:00
if (! $user->admin) accessforbidden();
2009-10-02 01:31:27 +02:00
2012-07-09 18:09:44 +02:00
$action=GETPOST('action','alpha');
2012-07-11 11:23:32 +02:00
$modules=array(
'agenda' => array(
array(
2012-07-11 12:05:43 +02:00
'code' => 'MAIN_DELAY_ACTIONS_TODO',
'img' => 'action'
2012-07-11 11:23:32 +02:00
)
),
'propal' => array(
array(
2012-07-11 12:05:43 +02:00
'code' => 'MAIN_DELAY_PROPALS_TO_CLOSE',
'img' => 'propal'
2012-07-11 11:23:32 +02:00
),
array(
2012-07-11 12:05:43 +02:00
'code' => 'MAIN_DELAY_PROPALS_TO_BILL',
'img' => 'propal'
2012-07-11 11:23:32 +02:00
)
),
'commande' => array(
array(
2012-07-11 12:05:43 +02:00
'code' => 'MAIN_DELAY_ORDERS_TO_PROCESS',
'img' => 'order'
2012-07-11 11:23:32 +02:00
)
),
'facture' => array(
array(
2012-07-11 12:05:43 +02:00
'code' => 'MAIN_DELAY_CUSTOMER_BILLS_UNPAYED',
'img' => 'bill'
2012-07-11 11:23:32 +02:00
)
),
'fournisseur' => array(
array(
2012-07-11 12:05:43 +02:00
'code' => 'MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS',
'img' => 'order'
2012-07-11 11:23:32 +02:00
),
array(
2012-07-11 12:05:43 +02:00
'code' => 'MAIN_DELAY_SUPPLIER_BILLS_TO_PAY',
'img' => 'bill'
2012-07-11 11:23:32 +02:00
)
),
'service' => array(
array(
2012-07-11 12:05:43 +02:00
'code' => 'MAIN_DELAY_NOT_ACTIVATED_SERVICES',
'img' => 'service'
2012-07-11 11:23:32 +02:00
),
array(
2012-07-11 12:05:43 +02:00
'code' => 'MAIN_DELAY_RUNNING_SERVICES',
'img' => 'service'
2012-07-11 11:23:32 +02:00
)
),
'banque' => array(
array(
2012-07-11 12:05:43 +02:00
'code' => 'MAIN_DELAY_TRANSACTIONS_TO_CONCILIATE',
'img' => 'account'
2012-07-11 11:23:32 +02:00
),
array(
2012-07-11 12:05:43 +02:00
'code' => 'MAIN_DELAY_CHEQUES_TO_DEPOSIT',
'img' => 'account'
2012-07-11 11:23:32 +02:00
)
),
'adherent' => array(
array(
2012-07-11 12:05:43 +02:00
'code' => 'MAIN_DELAY_MEMBERS',
'img' => 'user'
2012-07-11 11:23:32 +02:00
)
),
);
2012-07-11 12:05:43 +02:00
if ($action == 'update')
{
foreach($modules as $module => $delays)
{
if (! empty($conf->$module->enabled))
{
foreach($delays as $delay)
{
2014-02-14 12:58:03 +01:00
if (GETPOST($delay['code']) != '')
2012-07-11 12:05:43 +02:00
{
dolibarr_set_const($db, $delay['code'], GETPOST($delay['code']), 'chaine', 0, '', $conf->entity);
}
}
}
}
dolibarr_set_const($db, "MAIN_DISABLE_METEO",$_POST["MAIN_DISABLE_METEO"],'chaine',0,'',$conf->entity);
}
/*
* View
*/
$form = new Form($db);
2012-07-11 12:05:43 +02:00
llxHeader();
print_fiche_titre($langs->trans("DelaysOfToleranceBeforeWarning"),'','setup');
print $langs->transnoentities("DelaysOfToleranceDesc",img_warning());
2013-07-31 18:43:37 +02:00
print " ".$langs->trans("OnlyActiveElementsAreShown",DOL_URL_ROOT.'/admin/modules.php')."<br>\n";
2012-07-11 12:05:43 +02:00
print "<br>\n";
$countrynotdefined='<font class="error">'.$langs->trans("ErrorSetACountryFirst").' ('.$langs->trans("SeeAbove").')</font>';
2012-07-09 18:09:44 +02:00
if ($action == 'edit')
{
2012-07-11 11:23:32 +02:00
print '<form method="post" action="'.$_SERVER['PHP_SELF'].'" name="form_index">';
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
print '<input type="hidden" name="action" value="update">';
$var=true;
print '<table class="noborder" width="100%">';
2010-12-31 11:37:48 +01:00
print '<tr class="liste_titre"><td colspan="2">'.$langs->trans("DelaysOfToleranceBeforeWarning").'</td><td width="120px">'.$langs->trans("Value").'</td></tr>';
2012-07-11 11:23:32 +02:00
foreach($modules as $module => $delays)
{
2012-07-11 11:23:32 +02:00
if (! empty($conf->$module->enabled))
{
foreach($delays as $delay)
{
$var=!$var;
2012-07-11 12:05:43 +02:00
$value=(! empty($conf->global->$delay['code'])?$conf->global->$delay['code']:0);
2012-07-11 11:23:32 +02:00
print '<tr '.$bc[$var].'>';
print '<td width="20px">'.img_object('',$delay['img']).'</td>';
2012-07-11 12:05:43 +02:00
print '<td>'.$langs->trans('Delays_'.$delay['code']).'</td><td>';
print '<input size="5" name="'.$delay['code'].'" value="'.$value.'"> '.$langs->trans("days").'</td></tr>';
2012-07-11 11:23:32 +02:00
}
}
}
2009-10-02 01:31:27 +02:00
print '</table>';
2010-12-01 22:16:28 +01:00
print '<br>';
// Show if meteo is enabled
print '<table class="noborder" width="100%">';
2010-12-31 11:37:48 +01:00
print '<tr class="liste_titre"><td>'.$langs->trans("Parameter").'</td><td width="120px">'.$langs->trans("Value").'</td></tr>';
2010-12-01 22:16:28 +01:00
$var=!$var;
print '<tr '.$bc[$var].'>';
2012-07-09 18:09:44 +02:00
print '<td>'.$langs->trans("MAIN_DISABLE_METEO").'</td><td>' .$form->selectyesno('MAIN_DISABLE_METEO',(isset($conf->global->MAIN_DISABLE_METEO)?1:0),1) . '</td></tr>';
2010-12-01 22:16:28 +01:00
print '</table>';
print '<br>';
print '<br><center><input type="submit" class="button" value="'.$langs->trans("Save").'"></center>';
print '<br>';
2009-10-02 01:31:27 +02:00
print '</form>';
}
else
{
/*
* Affichage des parametres
*/
2010-12-01 22:16:28 +01:00
print '<table class="noborder" width="100%">';
2010-12-31 11:37:48 +01:00
print '<tr class="liste_titre"><td colspan="2">'.$langs->trans("DelaysOfToleranceBeforeWarning").'</td><td width="120px">'.$langs->trans("Value").'</td></tr>';
$var=true;
2012-07-11 11:23:32 +02:00
foreach($modules as $module => $delays)
{
if (! empty($conf->$module->enabled))
{
foreach($delays as $delay)
{
$var=!$var;
2012-07-11 12:05:43 +02:00
$value=(! empty($conf->global->$delay['code'])?$conf->global->$delay['code']:0);
2012-07-11 11:23:32 +02:00
print '<tr '.$bc[$var].'>';
print '<td width="20px">'.img_object('',$delay['img']).'</td>';
2012-07-11 12:05:43 +02:00
print '<td>'.$langs->trans('Delays_'.$delay['code']).'</td>';
print '<td>'.$value.' '.$langs->trans("days").'</td></tr>';
2012-07-11 11:23:32 +02:00
}
}
}
print '</table>';
2010-12-01 22:16:28 +01:00
print '<br>';
// Show if meteo is enabled
print '<table class="noborder" width="100%">';
2010-12-31 11:37:48 +01:00
print '<tr class="liste_titre"><td>'.$langs->trans("Parameter").'</td><td width="120px">'.$langs->trans("Value").'</td></tr>';
2010-12-01 22:16:28 +01:00
$var=!$var;
print '<tr '.$bc[$var].'>';
print '<td>'.$langs->trans("MAIN_DISABLE_METEO").'</td><td>' . yn($conf->global->MAIN_DISABLE_METEO) . '</td></tr>';
print '</table>';
print '<br>';
// Boutons d'action
print '<div class="tabsAction">';
print '<a class="butAction" href="delais.php?action=edit">'.$langs->trans("Modify").'</a>';
print '</div>';
}
2010-12-01 22:16:28 +01:00
print '<br>';
2010-11-13 17:59:53 +01:00
// Show logo for weather
print $langs->trans("DescWeather").'<br>';
$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 (! empty($conf->global->MAIN_METEO_LEVEL0)) $level0=$conf->global->MAIN_METEO_LEVEL0;
$level1=$offset+1*$cursor; if (! empty($conf->global->MAIN_METEO_LEVEL1)) $level1=$conf->global->MAIN_METEO_LEVEL1;
$level2=$offset+2*$cursor; if (! empty($conf->global->MAIN_METEO_LEVEL2)) $level2=$conf->global->MAIN_METEO_LEVEL2;
$level3=$offset+3*$cursor; if (! empty($conf->global->MAIN_METEO_LEVEL3)) $level3=$conf->global->MAIN_METEO_LEVEL3;
2010-12-31 11:37:48 +01:00
$text=''; $options='height="60px"';
2010-11-13 17:59:53 +01:00
print '<table>';
2011-01-08 19:47:51 +01:00
print '<tr>';
print '<td>';
2010-11-13 17:59:53 +01:00
print img_picto_common($text,'weather/weather-clear.png',$options);
2011-01-10 00:29:23 +01:00
print '</td><td>= '.$level0.'</td>';
2011-01-08 19:47:51 +01:00
print '<td> &nbsp; &nbsp; &nbsp; &nbsp; </td>';
print '<td>';
2010-11-13 17:59:53 +01:00
print img_picto_common($text,'weather/weather-few-clouds.png',$options);
2011-01-10 00:29:23 +01:00
print '</td><td>&lt;= '.$level1.'</td>';
2011-01-08 19:47:51 +01:00
print '<td> &nbsp; &nbsp; &nbsp; &nbsp; </td>';
print '<td>';
2010-11-13 17:59:53 +01:00
print img_picto_common($text,'weather/weather-clouds.png',$options);
2011-01-10 00:29:23 +01:00
print '</td><td>&lt;= '.$level2.'</td>';
2011-01-08 19:47:51 +01:00
print '</tr>';
2010-11-13 17:59:53 +01:00
print '<tr><td>';
print img_picto_common($text,'weather/weather-many-clouds.png',$options);
2011-01-10 00:29:23 +01:00
print '</td><td>&lt;= '.$level3.'</td>';
2011-01-08 19:47:51 +01:00
print '<td> &nbsp; &nbsp; &nbsp; &nbsp; </td>';
print '<td>';
2010-11-13 17:59:53 +01:00
print img_picto_common($text,'weather/weather-storm.png',$options);
2011-01-10 00:29:23 +01:00
print '</td><td>&gt; '.$level3.'</td>';
2011-01-08 19:47:51 +01:00
print '<td> &nbsp; &nbsp; &nbsp; &nbsp; </td>';
print '<td> &nbsp; &nbsp; &nbsp; &nbsp; </td>';
print '<td> &nbsp; &nbsp; &nbsp; &nbsp; </td>';
print '</tr>';
2010-11-13 17:59:53 +01:00
2011-01-08 19:47:51 +01:00
print '</table>';
llxFooter();
2012-07-09 18:09:44 +02:00
$db->close();
?>