Fix: balance with td

This commit is contained in:
Laurent Destailleur 2014-09-02 19:45:05 +02:00
parent 80968bc087
commit f7c48558e6

View File

@ -930,10 +930,11 @@ if (! empty($conf->global->PRODUIT_CUSTOMER_PRICES)) {
print '<tr><td>'; print '<tr><td>';
$text = $langs->trans('MinPrice'); $text = $langs->trans('MinPrice');
print $form->textwithpicto($text, $langs->trans("PrecisionUnitIsLimitedToXDecimals", $conf->global->MAIN_MAX_DECIMALS_UNIT), 1, 1); print $form->textwithpicto($text, $langs->trans("PrecisionUnitIsLimitedToXDecimals", $conf->global->MAIN_MAX_DECIMALS_UNIT), 1, 1);
print '</td><td>';
if ($prodcustprice->price_base_type == 'TTC') { if ($prodcustprice->price_base_type == 'TTC') {
print '<td><input name="price_min" size="10" value="' . price($prodcustprice->price_min_ttc) . '">'; print '<input name="price_min" size="10" value="' . price($prodcustprice->price_min_ttc) . '">';
} else { } else {
print '<td><input name="price_min" size="10" value="' . price($prodcustprice->price_min) . '">'; print '<input name="price_min" size="10" value="' . price($prodcustprice->price_min) . '">';
} }
print '</td></tr>'; print '</td></tr>';