diff --git a/htdocs/stripe/charge.php b/htdocs/stripe/charge.php
index d50259c0d9f..2bcb31f225f 100644
--- a/htdocs/stripe/charge.php
+++ b/htdocs/stripe/charge.php
@@ -96,7 +96,7 @@ if (!$rowid)
print '
';
print_liste_field_titre("Ref",$_SERVER["PHP_SELF"],"","","","",$sortfield,$sortorder);
- //print_liste_field_titre("StripeCustomerId",$_SERVER["PHP_SELF"],"","","","",$sortfield,$sortorder);
+ print_liste_field_titre("StripeCustomerId",$_SERVER["PHP_SELF"],"","","","",$sortfield,$sortorder);
print_liste_field_titre("Customer",$_SERVER["PHP_SELF"],"","","","",$sortfield,$sortorder);
print_liste_field_titre("Origin",$_SERVER["PHP_SELF"],"","","","",$sortfield,$sortorder);
print_liste_field_titre("DatePayment",$_SERVER["PHP_SELF"],"","","",'align="center"',$sortfield,$sortorder);
@@ -155,7 +155,7 @@ if (!$rowid)
}
print "| ".img_picto($langs->trans('ShowInStripe'), 'object_globe')." ".$charge->id." | \n";
// Stripe customer
- //print "".$charge->customer." | \n";
+ print "".$charge->customer." | \n";
// Link
print "";
if ($societestatic->id > 0)
@@ -165,7 +165,7 @@ if (!$rowid)
elseif ($memberstatic->id > 0)
{
print $memberstatic->getNomUrl(1);
- } else print $charge->customer;
+ }
print " | \n";
// Origine
print "";
|