diff --git a/htdocs/compta/facture/fiche-rec.php b/htdocs/compta/facture/fiche-rec.php
index ddaf073e964..bb27f257dd3 100644
--- a/htdocs/compta/facture/fiche-rec.php
+++ b/htdocs/compta/facture/fiche-rec.php
@@ -1299,13 +1299,13 @@ else
print '
';
- print '| '.$langs->trans("Author").' | '.$author->getFullName($langs)." |
";
+ print '| '.$langs->trans("Author").' | '.$author->getFullName($langs)." |
";
print '| '.$langs->trans("AmountHT").' | ';
- print ''.price($object->total_ht,'',$langs,1,-1,-1,$conf->currency).' | ';
+ print ''.price($object->total_ht,'',$langs,1,-1,-1,$conf->currency).' | ';
print '
';
- print '| '.$langs->trans("AmountVAT").' | '.price($object->total_tva,'',$langs,1,-1,-1,$conf->currency).' | ';
+ print '
| '.$langs->trans("AmountVAT").' | '.price($object->total_tva,'',$langs,1,-1,-1,$conf->currency).' | ';
print '
';
// Amount Local Taxes
@@ -1332,7 +1332,7 @@ else
if ($object->type != Facture::TYPE_CREDIT_NOTE && $action != 'editconditions' && ! empty($object->brouillon) && $user->rights->facture->creer)
print 'id . '">' . img_edit($langs->trans('SetConditions'), 1) . ' | ';
print '
';
- print '';
+ print ' | ';
if ($object->type != Facture::TYPE_CREDIT_NOTE)
{
if ($action == 'editconditions')
@@ -1356,7 +1356,7 @@ else
if ($action != 'editmode' && ! empty($object->brouillon) && $user->rights->facture->creer)
print ' | id . '">' . img_edit($langs->trans('SetMode'), 1) . ' | ';
print '';
- print '';
+ print ' | ';
if ($action == 'editmode')
{
$form->form_modes_reglement($_SERVER['PHP_SELF'].'?facid='.$object->id, $object->mode_reglement_id, 'mode_reglement_id', 'CRDT');
@@ -1396,16 +1396,16 @@ else
// Note public
print ' | | ';
print $form->editfieldkey($form->textwithpicto($langs->trans('NotePublic'), $htmltext, 1, 'help', '', 0, 2, 'notepublic'), 'note_public', $object->note_public, $object, $user->rights->facture->creer);
- print ' | ';
- print $form->editfieldval($langs->trans("NotePublic"), 'note_public', $object->note_public, $object, $user->rights->facture->creer, 'textarea:'.ROWS_4.':60');
+ print ' | ';
+ print $form->editfieldval($langs->trans("NotePublic"), 'note_public', $object->note_public, $object, $user->rights->facture->creer, 'textarea:'.ROWS_4.':90%', '', null, null, '', 1);
print ' | ';
print '
';
// Note private
print '| ';
print $form->editfieldkey($form->textwithpicto($langs->trans("NotePrivate"), $htmltext, 1, 'help', '', 0, 2, 'noteprivate'), 'note_private', $object->note_private, $object, $user->rights->facture->creer);
- print ' | ';
- print $form->editfieldval($langs->trans("NotePrivate"), 'note_private', $object->note_private, $object, $user->rights->facture->creer, 'textarea:'.ROWS_4.':60');
+ print ' | ';
+ print $form->editfieldval($langs->trans("NotePrivate"), 'note_private', $object->note_private, $object, $user->rights->facture->creer, 'textarea:'.ROWS_4.':90%', '', null, null, '', 1);
print ' | ';
print '
';
@@ -1419,7 +1419,7 @@ else
if (($action != 'editbankaccount') && $user->rights->facture->creer && ! empty($object->brouillon))
print 'id.'">'.img_edit($langs->trans('SetBankAccount'),1).' | ';
print '';
- print '';
+ print ' | ';
if ($action == 'editbankaccount')
{
$form->formSelectAccount($_SERVER['PHP_SELF'].'?id='.$object->id, $object->fk_account, 'fk_account', 1);
@@ -1441,7 +1441,7 @@ else
if (($action != 'editmodelpdf') && $user->rights->facture->creer && ! empty($object->brouillon))
print ' | id.'">'.img_edit($langs->trans('SetModel'),1).' | ';
print '';
- print '';
+ print ' | ';
if ($action == 'editmodelpdf')
{
include_once DOL_DOCUMENT_ROOT . '/core/modules/facture/modules_facture.php';
|