diff --git a/htdocs/compta/bank/releve.php b/htdocs/compta/bank/releve.php
index 4c04655ae65..d5168ec65c9 100644
--- a/htdocs/compta/bank/releve.php
+++ b/htdocs/compta/bank/releve.php
@@ -310,7 +310,12 @@ else
print "\n";
// Type and num
- print '
'.$objp->fk_type.' '.($objp->num_chq?$objp->num_chq:'').' | ';
+ if ($objp->fk_type == 'SOLD') {
+ $type_label=' ';
+ } else {
+ $type_label=($langs->trans("PaymentTypeShort".$objp->fk_type)!="PaymentTypeShort".$objp->fk_type)?$langs->trans("PaymentTypeShort".$objp->fk_type):$objp->fk_type;
+ }
+ print ''.$type_label.' '.($objp->num_chq?$objp->num_chq:'').' | ';
// Description
print '';
|