';
+print '
';
print load_fiche_titre($langs->trans("VATIntraCheckableOnEUSite"), '', 'title_setup');
@@ -174,6 +173,8 @@ if ($messagetoshow)
print nl2br($messagetoshow);
}
+print '
';
+
// End of page
llxFooter();
$db->close();
diff --git a/htdocs/societe/paymentmodes.php b/htdocs/societe/paymentmodes.php
index 34d79a7290a..20df70fda70 100644
--- a/htdocs/societe/paymentmodes.php
+++ b/htdocs/societe/paymentmodes.php
@@ -832,6 +832,11 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
print '
'.$langs->trans('Default').' | ';
print '
'.$langs->trans('Note').' | ';
print '
'.$langs->trans('DateModification').' | ';
+ // Hook fields
+ $parameters=array('arrayfields'=>array(),'param'=>'','sortfield'=>'','sortorder'=>'', 'linetype'=>'stripetitle');
+ $reshook=$hookmanager->executeHooks('printFieldListTitle', $parameters, $object); // Note that $action and $object may have been modified by hook
+ print $hookmanager->resPrint;
+ // Action column
print "
| ";
print "\n";
@@ -846,7 +851,7 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
$companypaymentmodetemp = new CompanyPaymentMode($db);
$sql='SELECT rowid FROM '.MAIN_DB_PREFIX."societe_rib";
- $sql.=" WHERE type in ('card', 'paypal')";
+ $sql.=" WHERE type in ('card')";
$sql.=" AND fk_soc = ".$object->id;
$sql.=" AND status = ".$servicestatus;
@@ -917,6 +922,11 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
print '
';
print dol_print_date($companypaymentmodetemp->tms, 'dayhour');
print ' | ';
+ // Fields from hook
+ $parameters=array('arrayfields'=>array(), 'obj'=>$obj, 'linetype'=>'stripecard');
+ $reshook=$hookmanager->executeHooks('printFieldListValue', $parameters, $object); // Note that $action and $object may have been modified by hook
+ print $hookmanager->resPrint;
+ // Action column
print '
';
if ($user->rights->societe->creer)
{
@@ -1042,6 +1052,11 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
//var_dump($src);
print '';
print ' | ';
+ // Fields from hook
+ $parameters=array('arrayfields'=>array(), 'stripesource'=>$src, 'linetype'=>'stripecardremoteonly');
+ $reshook=$hookmanager->executeHooks('printFieldListValue', $parameters, $object); // Note that $action and $object may have been modified by hook
+ print $hookmanager->resPrint;
+ // Action column
print '
';
if ($user->rights->societe->creer)
{
|