diff --git a/htdocs/compta/facture/card.php b/htdocs/compta/facture/card.php
index c769b538d43..2261dafb818 100644
--- a/htdocs/compta/facture/card.php
+++ b/htdocs/compta/facture/card.php
@@ -3443,7 +3443,7 @@ else if ($id > 0 || ! empty($ref))
print '
| ';
print $langs->trans('PaymentConditionsShort');
print ' | ';
- if ($object->type != Facture::TYPE_CREDIT_NOTE && $action != 'editconditions' && ! empty($object->brouillon) && $user->rights->facture->creer)
+ if ($object->type != Facture::TYPE_CREDIT_NOTE && $action != 'editconditions' && $user->rights->facture->creer)
print 'id . '">' . img_edit($langs->trans('SetConditions'), 1) . ' | ';
print '
';
print '';
@@ -3464,7 +3464,7 @@ else if ($id > 0 || ! empty($ref))
print '| ';
print $langs->trans('DateMaxPayment');
print ' | ';
- if ($object->type != Facture::TYPE_CREDIT_NOTE && $action != 'editpaymentterm' && ! empty($object->brouillon) && $user->rights->facture->creer)
+ if ($object->type != Facture::TYPE_CREDIT_NOTE && $action != 'editpaymentterm' && $user->rights->facture->creer)
print 'id . '">' . img_edit($langs->trans('SetDate'), 1) . ' | ';
print ' ';
print ' | ';
@@ -3488,7 +3488,7 @@ else if ($id > 0 || ! empty($ref))
print '| ';
print $langs->trans('PaymentMode');
print ' | ';
- if ($action != 'editmode' && ! empty($object->brouillon) && $user->rights->facture->creer)
+ if ($action != 'editmode' && $user->rights->facture->creer)
print 'id . '">' . img_edit($langs->trans('SetMode'), 1) . ' | ';
print ' ';
print ' | ';
@@ -3552,7 +3552,7 @@ else if ($id > 0 || ! empty($ref))
print '| ';
print $langs->trans('BankAccount');
print ' | ';
- if (($action != 'editbankaccount') && $user->rights->facture->creer && ! empty($object->brouillon))
+ if (($action != 'editbankaccount') && $user->rights->facture->creer)
print ' | id.'">'.img_edit($langs->trans('SetBankAccount'),1).' | ';
print ' ';
print ' | ';
|