diff --git a/ChangeLog b/ChangeLog
index 59549e193557bfae3df3a6ca28a29b980854c0a9..06189a3956461c8c946039562897022f3e35c272 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,7 @@ English Dolibarr ChangeLog
 - Fix: [ bug #903 ] Fatal error: Call to undefined function dol_get_first_day() in htdocs/commande/liste.php
 - Fix: [ bug #934 ] Error on proformat invoice creation (pgsql)
 - Fix: [ bug #947 ] Can't create proposal lines with unit price = 0
+- Fix: [ bug #1001 ] Social Contribution : State not correct
 
 ***** ChangeLog for 3.3.2 compared to 3.3.1 *****
 
diff --git a/htdocs/compta/payment_sc/fiche.php b/htdocs/compta/payment_sc/fiche.php
index 0bf129c567b2baf13626f6f92d9cc3982485df3e..a5c1e8f07b2c46416a0ac4a98d017ed014eb09af 100644
--- a/htdocs/compta/payment_sc/fiche.php
+++ b/htdocs/compta/payment_sc/fiche.php
@@ -262,7 +262,7 @@ if ($resql)
 			// Expected to pay
 			print '<td align="right">'.price($objp->sc_amount).'</td>';
 			// Status
-			print '<td align="center">'.$socialcontrib->LibStatut($objp->fk_statut,2).'</td>';
+			print '<td align="center">'.$socialcontrib->getLibStatut(4).'</td>';
 			// Amount payed
 			print '<td align="right">'.price($objp->amount).'</td>';
 			print "</tr>\n";