Fix: Bad alignement of cells

This commit is contained in:
Laurent Destailleur 2014-07-20 19:35:00 +02:00
parent 9eb54ffb4b
commit 8bc655b44f
2 changed files with 4 additions and 4 deletions

View File

@ -1634,7 +1634,7 @@ else
*/
$nbrows=9; $nbcols=2;
if (! empty($conf->projet->enabled)) $nbrows++;
if (! empty($conf->banque->enabled)) $nbcols++;
if (! empty($conf->banque->enabled)) { $nbrows++; $nbcols++; }
// Local taxes
if ($societe->localtax1_assuj=="1") $nbrows++;

View File

@ -21,8 +21,8 @@
/**
* \file htdocs/fourn/facture/note.php
* \ingroup facture
* \brief Fiche de notes sur une facture fournisseur
*/
* \brief Fiche de notes sur une facture fournisseur
*/
require '../../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/fourn.lib.php';
@ -137,7 +137,7 @@ if ($object->id > 0)
// Label
print '<tr><td>'.$form->editfieldkey("Label",'label',$object->label,$object,0).'</td><td colspan="3">';
print $form->editfieldval("Label",'label',$object->label,$object,0);
print '</td>';
print '</td></tr>';
print "</table>";