diff --git a/htdocs/societe/paymentmodes.php b/htdocs/societe/paymentmodes.php
index 185c7aaf6ea..c9fe7c41001 100644
--- a/htdocs/societe/paymentmodes.php
+++ b/htdocs/societe/paymentmodes.php
@@ -1095,6 +1095,7 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
print img_credit_card($companypaymentmodetemp->type);
print '';
print '
';
+ if ($companypaymentmodetemp->proprio) print ''.$companypaymentmodetemp->proprio.' ';
if ($companypaymentmodetemp->last_four) print '....'.$companypaymentmodetemp->last_four;
if ($companypaymentmodetemp->exp_date_month || $companypaymentmodetemp->exp_date_year) print ' - '.sprintf("%02d", $companypaymentmodetemp->exp_date_month).'/'.$companypaymentmodetemp->exp_date_year.'';
print ' | ';
@@ -1210,6 +1211,7 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
print '';
}
print' | ';
+ // Information
print '';
if ($src->object == 'card')
{
@@ -1225,7 +1227,7 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
}
elseif ($src->object == 'source' && $src->type == 'card')
{
- print $src->owner->name.' ....'.$src->card->last4.' - '.$src->card->exp_month.'/'.$src->card->exp_year.'';
+ print ''.$src->owner->name.' ....'.$src->card->last4.' - '.$src->card->exp_month.'/'.$src->card->exp_year.'';
print ' | ';
if ($src->card->country)
@@ -1238,7 +1240,7 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
}
elseif ($src->object == 'source' && $src->type == 'sepa_debit')
{
- print 'info sepa';
+ print 'SEPA debit';
print ' | ';
if ($src->sepa_debit->country)
{
@@ -1250,7 +1252,7 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
}
elseif ($src->object == 'payment_method' && $src->type == 'card')
{
- print $src->billing_details->name.' ....'.$src->card->last4.' - '.$src->card->exp_month.'/'.$src->card->exp_year.'';
+ print ''.$src->billing_details->name.' ....'.$src->card->last4.' - '.$src->card->exp_month.'/'.$src->card->exp_year.'';
print ' | ';
if ($src->card->country)
@@ -1263,7 +1265,7 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
}
elseif ($src->object == 'payment_method' && $src->type == 'sepa_debit')
{
- print 'info sepa';
+ print 'SEPA debit';
print ' | ';
if ($src->sepa_debit->country)
{
|