diff --git a/htdocs/societe/notify/fiche.php b/htdocs/societe/notify/fiche.php
index dfc676c0cc5..352dc8bb8e9 100644
--- a/htdocs/societe/notify/fiche.php
+++ b/htdocs/societe/notify/fiche.php
@@ -89,9 +89,9 @@ if ( $soc->fetch($socid) )
print '-';
}
print '
';
- if ($soc->fournisseur)
+ if ($soc->client)
{
- print 'Fiche fournisseur';
+ print 'Fiche compta';
}
else
{
@@ -132,9 +132,10 @@ if ( $soc->fetch($socid) )
$var=True;
while ($i < $num)
{
+ $var = !$var;
$obj = $db->fetch_object( $i);
- print ' | | '.$obj->firstname . " ".$obj->name.' | ';
+ print '
| '.$obj->firstname . " ".$obj->name.' | ';
print ''.$obj->titre.' | ';
print 'Supprimer';
$i++;
|