diff --git a/htdocs/compta/facture/fiche-rec.php b/htdocs/compta/facture/fiche-rec.php
index 28c6f8ec24a..fa8af87ac29 100644
--- a/htdocs/compta/facture/fiche-rec.php
+++ b/htdocs/compta/facture/fiche-rec.php
@@ -1305,7 +1305,7 @@ else
print '
| ';
print $langs->trans('PaymentConditionsShort');
print ' | ';
- if ($object->type != Facture::TYPE_CREDIT_NOTE && $action != 'editconditions' && $object->statut == self::STATUS_DRAFT && $user->rights->facture->creer)
+ if ($action != 'editconditions' && $user->rights->facture->creer)
print 'id . '">' . img_edit($langs->trans('SetConditions'), 1) . ' | ';
print '
';
print '';
@@ -1329,7 +1329,7 @@ else
print '| ';
print $langs->trans('PaymentMode');
print ' | ';
- if ($action != 'editmode' && $object->statut == self::STATUS_DRAFT && $user->rights->facture->creer)
+ if ($action != 'editmode' && $user->rights->facture->creer)
print 'id . '">' . img_edit($langs->trans('SetMode'), 1) . ' | ';
print ' ';
print ' | ';
@@ -1463,7 +1463,7 @@ else
print '| ';
print $langs->trans('Frequency');
print ' | ';
- if ($action != 'editfrequency' && $object->statut == self::STATUS_DRAFT && $user->rights->facture->creer)
+ if ($action != 'editfrequency' && $user->rights->facture->creer)
print 'id . '">' . img_edit($langs->trans('Edit'), 1) . ' | ';
print ' ';
print ' | ';
|