Merge pull request #1566 from marcosgdf/usability
Improved usability of admin/compta.php page
This commit is contained in:
commit
bdbd619a8e
@ -4,6 +4,7 @@
|
|||||||
* Copyright (C) 2005-2009 Regis Houssin <regis.houssin@capnetworks.com>
|
* Copyright (C) 2005-2009 Regis Houssin <regis.houssin@capnetworks.com>
|
||||||
* Copyright (C) 2011-2013 Juanjo Menent <jmenent@2byte.es>
|
* Copyright (C) 2011-2013 Juanjo Menent <jmenent@2byte.es>
|
||||||
* Copyright (C) 2013 Philippe Grand <philippe.grand@atoo-net.com>
|
* Copyright (C) 2013 Philippe Grand <philippe.grand@atoo-net.com>
|
||||||
|
* Copyright (C) 2014 Marcos García <marcosgdf@gmail.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -36,43 +37,54 @@ accessforbidden();
|
|||||||
|
|
||||||
$action = GETPOST('action','alpha');
|
$action = GETPOST('action','alpha');
|
||||||
|
|
||||||
|
// Other parameters COMPTA_*
|
||||||
|
$list = array(
|
||||||
|
'COMPTA_PRODUCT_BUY_ACCOUNT',
|
||||||
|
'COMPTA_PRODUCT_SOLD_ACCOUNT',
|
||||||
|
'COMPTA_SERVICE_BUY_ACCOUNT',
|
||||||
|
'COMPTA_SERVICE_SOLD_ACCOUNT',
|
||||||
|
'COMPTA_VAT_ACCOUNT',
|
||||||
|
'COMPTA_VAT_BUY_ACCOUNT',
|
||||||
|
'COMPTA_ACCOUNT_CUSTOMER',
|
||||||
|
'COMPTA_ACCOUNT_SUPPLIER'
|
||||||
|
);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Actions
|
* Actions
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$compta_mode = defined('COMPTA_MODE')?COMPTA_MODE:'RECETTES-DEPENSES';
|
$compta_mode = defined('COMPTA_MODE')?COMPTA_MODE:'RECETTES-DEPENSES';
|
||||||
|
|
||||||
if ($action == 'setcomptamode')
|
if ($action == 'update')
|
||||||
{
|
{
|
||||||
$compta_mode = GETPOST('compta_mode','alpha');
|
$error = 0;
|
||||||
|
|
||||||
$res = dolibarr_set_const($db, 'COMPTA_MODE', $compta_mode,'chaine',0,'',$conf->entity);
|
$compta_modes = array(
|
||||||
|
'RECETTES-DEPENSES',
|
||||||
|
'CREANCES-DETTES'
|
||||||
|
);
|
||||||
|
|
||||||
if (! $res > 0) $error++;
|
$compta_mode = GETPOST('compta_mode','alpha');
|
||||||
|
|
||||||
if (! $error)
|
|
||||||
{
|
if (in_array($compta_mode,$compta_modes)) {
|
||||||
setEventMessage($langs->trans("SetupSaved"));
|
|
||||||
}
|
if (!dolibarr_set_const($db, 'COMPTA_MODE', $compta_mode, 'chaine', 0, '', $conf->entity)) {
|
||||||
else
|
$error++;
|
||||||
{
|
}
|
||||||
setEventMessage($langs->trans("Error"),'errors');
|
} else {
|
||||||
|
$error++;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
foreach ($list as $constname) {
|
||||||
|
$constvalue = GETPOST($constname, 'alpha');
|
||||||
|
|
||||||
if ($action == 'update' || $action == 'add')
|
if (!dolibarr_set_const($db, $constname, $constvalue, 'chaine', 0, '', $conf->entity)) {
|
||||||
{
|
$error++;
|
||||||
$constname = GETPOST('constname','alpha');
|
}
|
||||||
$constvalue = GETPOST('constvalue','alpha');
|
}
|
||||||
$consttype = GETPOST('consttype','alpha');
|
|
||||||
$constnote = GETPOST('constnote','alpha');
|
|
||||||
|
|
||||||
$res = dolibarr_set_const($db, $constname, $constvalue, $consttype, 0, $constnote, $conf->entity);
|
if (! $error)
|
||||||
|
|
||||||
if (! $res > 0) $error++;
|
|
||||||
|
|
||||||
if (! $error)
|
|
||||||
{
|
{
|
||||||
setEventMessage($langs->trans("SetupSaved"));
|
setEventMessage($langs->trans("SetupSaved"));
|
||||||
}
|
}
|
||||||
@ -82,15 +94,6 @@ if ($action == 'update' || $action == 'add')
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*if ($action == 'delete')
|
|
||||||
{
|
|
||||||
if (! dolibarr_del_const($db, $_GET['constname'],$conf->entity));
|
|
||||||
{
|
|
||||||
print $db->error();
|
|
||||||
}
|
|
||||||
}*/
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* View
|
* View
|
||||||
*/
|
*/
|
||||||
@ -104,29 +107,30 @@ print_fiche_titre($langs->trans('ComptaSetup'),$linkback,'setup');
|
|||||||
|
|
||||||
print '<br>';
|
print '<br>';
|
||||||
|
|
||||||
|
print '<form action="'.$_SERVER["PHP_SELF"].'" method="post">';
|
||||||
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
||||||
|
print '<input type="hidden" name="action" value="update">';
|
||||||
|
|
||||||
print '<table class="noborder" width="100%">';
|
print '<table class="noborder" width="100%">';
|
||||||
|
|
||||||
// Cas du parametre COMPTA_MODE
|
// Cas du parametre COMPTA_MODE
|
||||||
print '<form action="'.$_SERVER["PHP_SELF"].'" method="post">';
|
|
||||||
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
|
||||||
print '<input type="hidden" name="action" value="setcomptamode">';
|
|
||||||
print '<tr class="liste_titre">';
|
print '<tr class="liste_titre">';
|
||||||
print '<td>'.$langs->trans('OptionMode').'</td><td>'.$langs->trans('Description').'</td>';
|
print '<td>'.$langs->trans('OptionMode').'</td><td>'.$langs->trans('Description').'</td>';
|
||||||
print '<td align="right"><input class="button" type="submit" value="'.$langs->trans('Modify').'"></td>';
|
|
||||||
print "</tr>\n";
|
print "</tr>\n";
|
||||||
print '<tr '.$bc[false].'><td width="200"><input type="radio" name="compta_mode" value="RECETTES-DEPENSES"'.($compta_mode != 'CREANCES-DETTES' ? ' checked' : '').'> '.$langs->trans('OptionModeTrue').'</td>';
|
print '<tr '.$bc[false].'><td width="200"><input type="radio" name="compta_mode" value="RECETTES-DEPENSES"'.($compta_mode != 'CREANCES-DETTES' ? ' checked' : '').'> '.$langs->trans('OptionModeTrue').'</td>';
|
||||||
print '<td colspan="2">'.nl2br($langs->trans('OptionModeTrueDesc'));
|
print '<td colspan="2">'.nl2br($langs->trans('OptionModeTrueDesc'));
|
||||||
// Write info on way to count VAT
|
// Write info on way to count VAT
|
||||||
if (! empty($conf->global->MAIN_MODULE_COMPTABILITE))
|
//if (! empty($conf->global->MAIN_MODULE_COMPTABILITE))
|
||||||
{
|
//{
|
||||||
// print "<br>\n";
|
// // print "<br>\n";
|
||||||
// print nl2br($langs->trans('OptionModeTrueInfoModuleComptabilite'));
|
// // print nl2br($langs->trans('OptionModeTrueInfoModuleComptabilite'));
|
||||||
}
|
//}
|
||||||
else
|
//else
|
||||||
{
|
//{
|
||||||
// print "<br>\n";
|
// // print "<br>\n";
|
||||||
// print nl2br($langs->trans('OptionModeTrueInfoExpert'));
|
// // print nl2br($langs->trans('OptionModeTrueInfoExpert'));
|
||||||
}
|
//}
|
||||||
print "</td></tr>\n";
|
print "</td></tr>\n";
|
||||||
print '<tr '.$bc[true].'><td width="200"><input type="radio" name="compta_mode" value="CREANCES-DETTES"'.($compta_mode == 'CREANCES-DETTES' ? ' checked' : '').'> '.$langs->trans('OptionModeVirtual').'</td>';
|
print '<tr '.$bc[true].'><td width="200"><input type="radio" name="compta_mode" value="CREANCES-DETTES"'.($compta_mode == 'CREANCES-DETTES' ? ' checked' : '').'> '.$langs->trans('OptionModeVirtual').'</td>';
|
||||||
print '<td colspan="2">'.nl2br($langs->trans('OptionModeVirtualDesc'))."</td></tr>\n";
|
print '<td colspan="2">'.nl2br($langs->trans('OptionModeVirtualDesc'))."</td></tr>\n";
|
||||||
@ -136,73 +140,32 @@ print "</table>\n";
|
|||||||
|
|
||||||
print "<br>\n";
|
print "<br>\n";
|
||||||
|
|
||||||
// Cas des autres parametres COMPTA_*
|
print '<table class="noborder" width="100%">';
|
||||||
$list=array('COMPTA_PRODUCT_BUY_ACCOUNT','COMPTA_PRODUCT_SOLD_ACCOUNT','COMPTA_SERVICE_BUY_ACCOUNT','COMPTA_SERVICE_SOLD_ACCOUNT',
|
print '<tr class="liste_titre">';
|
||||||
'COMPTA_VAT_ACCOUNT','COMPTA_VAT_BUY_ACCOUNT','COMPTA_ACCOUNT_CUSTOMER','COMPTA_ACCOUNT_SUPPLIER'
|
print '<td colspan="3">'.$langs->trans('OtherOptions').'</td>';
|
||||||
);
|
print "</tr>\n";
|
||||||
|
|
||||||
/*$sql = "SELECT rowid, name, value, type, note";
|
|
||||||
$sql.= " FROM ".MAIN_DB_PREFIX."const";
|
|
||||||
$sql.= " WHERE name LIKE 'COMPTA_%'";
|
|
||||||
$sql.= " AND name NOT IN ('COMPTA_MODE')";
|
|
||||||
$sql.= " AND entity = ".$conf->entity;
|
|
||||||
$result = $db->query($sql);
|
|
||||||
if ($result)
|
|
||||||
{
|
|
||||||
$num = $db->num_rows($result);
|
|
||||||
$i = 0;
|
|
||||||
|
|
||||||
while ($i < $num)
|
|
||||||
{
|
|
||||||
$obj = $db->fetch_object($result);
|
|
||||||
$var=!$var;
|
|
||||||
$list[$obj->name]=$obj->value;
|
|
||||||
$i++;
|
|
||||||
}
|
|
||||||
}*/
|
|
||||||
|
|
||||||
$num=count($list);
|
|
||||||
if ($num)
|
|
||||||
{
|
|
||||||
print '<table class="noborder" width="100%">';
|
|
||||||
print '<tr class="liste_titre">';
|
|
||||||
print '<td colspan="3">'.$langs->trans('OtherOptions').'</td>';
|
|
||||||
print "</tr>\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach ($list as $key)
|
foreach ($list as $key)
|
||||||
{
|
{
|
||||||
$var=!$var;
|
$var=!$var;
|
||||||
|
|
||||||
print '<form action="compta.php" method="POST">';
|
|
||||||
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
|
||||||
print '<input type="hidden" name="action" value="update">';
|
|
||||||
print '<input type="hidden" name="consttype" value="string">';
|
|
||||||
print '<input type="hidden" name="constname" value="'.$key.'">';
|
|
||||||
|
|
||||||
print '<tr '.$bc[$var].' class="value">';
|
print '<tr '.$bc[$var].' class="value">';
|
||||||
|
|
||||||
// Param
|
// Param
|
||||||
$libelle = $langs->trans($key);
|
$libelle = $langs->trans($key);
|
||||||
print '<td>'.$libelle;
|
print '<td><label for="'.$key.'">'.$libelle.'</label></td>';
|
||||||
//print ' ('.$key.')';
|
|
||||||
print "</td>\n";
|
|
||||||
|
|
||||||
// Value
|
// Value
|
||||||
print '<td>';
|
print '<td>';
|
||||||
print '<input type="text" size="20" name="constvalue" value="'.$conf->global->$key.'">';
|
print '<input type="text" size="20" id="'.$key.'" name="'.$key.'" value="'.$conf->global->$key.'">';
|
||||||
print '</td><td>';
|
print '</td></tr>';
|
||||||
print '<input type="submit" class="button" value="'.$langs->trans('Modify').'" name="button"> ';
|
|
||||||
print "</td></tr>\n";
|
|
||||||
print '</form>';
|
|
||||||
|
|
||||||
$i++;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($num)
|
print '</form>';
|
||||||
{
|
print "</table>\n";
|
||||||
print "</table>\n";
|
|
||||||
}
|
print '<br /><br /><div style="text-align:center"><input type="submit" class="button" value="'.$langs->trans('Modify').'" name="button"></div>';
|
||||||
|
|
||||||
$db->close();
|
$db->close();
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user