diff --git a/htdocs/stripe/admin/stripe.php b/htdocs/stripe/admin/stripe.php
index e25a84ee6a6..fca7c4a22fb 100644
--- a/htdocs/stripe/admin/stripe.php
+++ b/htdocs/stripe/admin/stripe.php
@@ -203,6 +203,20 @@ print '';
print '
| '.$langs->trans("STRIPECONNECT").' | ';
print 'Ce module est configuré en mode marketplace |
';
}
+
+if (! empty($conf->banque->enabled))
+{
+print '| ';
+print $langs->trans("BankAccount").' | ';
+print $form->select_comptes($conf->global->STRIPE_BANK_ACCOUNT_FOR_PAYMENTS, 'STRIPE_BANK_ACCOUNT_FOR_PAYMENTS', 0, '', 1);
+print ' |
';
+
+print '| ';
+print $langs->trans("BankAccount").' | ';
+print $form->select_comptes($conf->global->STRIPE_BANK_ACCOUNT_FOR_BANKTRANSFERS, 'STRIPE_BANK_ACCOUNT_FOR_BANKTRANSFERS', 0, '', 1);
+print ' |
';
+}
+
print '';
print '
';
@@ -219,19 +233,6 @@ print 'name;
print '';
-if (! empty($conf->banque->enabled))
-{
- print '| ';
- print $langs->trans("BankAccount").' | ';
- print $form->select_comptes($conf->global->STRIPE_BANK_ACCOUNT_FOR_PAYMENTS, 'STRIPE_BANK_ACCOUNT_FOR_PAYMENTS', 0, '', 1);
- print ' |
';
-
- print '| ';
- print $langs->trans("BankAccount").' | ';
- print $form->select_comptes($conf->global->STRIPE_BANK_ACCOUNT_FOR_BANKTRANSFERS, 'STRIPE_BANK_ACCOUNT_FOR_BANKTRANSFERS', 0, '', 1);
- print ' |
';
-}
-
print '| ';
print $langs->trans("CSSUrlForPaymentForm").' | ';
print '';
|