Dolibarization

This commit is contained in:
Laurent Destailleur 2019-05-09 16:59:06 +02:00
parent b8f2f957bf
commit a94c291b76
4 changed files with 10 additions and 7 deletions

0
htdocs/commande/card.php Executable file → Normal file
View File

0
htdocs/compta/facture/card.php Executable file → Normal file
View File

View File

@ -9,7 +9,6 @@ ErrorModuleRequireDolibarrVersion=Error: This module requires Dolibarr version %
ErrorDecimalLargerThanAreForbidden=Error: A precision higher than <b>%s</b> is not supported.
ErrorReservedTypeSystemSystemAuto=Entry of 'system' and 'systemauto' for this type is reserved. You can use 'user' as a value to add your own record
ErrorCodeCantContainZero=Code can't contain value 0 (zero)
NumberOfKeyToSearch=Number of characters to trigger search: %s
MaxSizeForUploadedFiles=Maximum size for uploaded files (0 to prevent any uploads)
CurrentValueSeparatorThousand=Thousands separator
PositionByDefault=Default position

View File

@ -153,12 +153,14 @@ llxHeader("", "", $langs->trans("CardProduct".$product->type));
$linkback='<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
print load_fiche_titre($langs->trans("DynamicPriceConfiguration"), $linkback, 'title_setup');
print $langs->trans("DynamicPriceDesc").'<br>';
print '<span class="opacitymedium">'.$langs->trans("DynamicPriceDesc").'</span><br>';
print '<br>';
//Global variables table
if ($action != 'create_updater' && $action != 'edit_updater') {
print $langs->trans("GlobalVariables");
if ($action != 'create_updater' && $action != 'edit_updater')
{
print load_fiche_titre($langs->trans("GlobalVariables"), '', '');
print '<table summary="listofattributes" class="noborder" width="100%">';
print '<tr class="liste_titre">';
print '<td>'.$langs->trans("Variable").'</td>';
@ -236,8 +238,10 @@ if ($action == 'create_variable' || $action == 'edit_variable') {
}
// Updaters table
if ($action != 'create_variable' && $action != 'edit_variable') {
print $langs->trans("GlobalVariableUpdaters");
if ($action != 'create_variable' && $action != 'edit_variable')
{
print load_fiche_titre($langs->trans("GlobalVariableUpdaters"), '', '');
print '<table summary="listofattributes" class="noborder" width="100%">';
print '<tr class="liste_titre">';
print '<td>'.$langs->trans("VariableToUpdate").'</td>';
@ -274,7 +278,7 @@ if ($action != 'create_variable' && $action != 'edit_variable') {
}
else
{
print '<tr colspan="7"><td class="opacitymedium">';
print '<tr><td colspan="7" class="opacitymedium">';
print $langs->trans("None");
print '</td></tr>';
}