diff --git a/htdocs/comm/propal/card.php b/htdocs/comm/propal/card.php
index 620b21d312e..b5bd94f0c2e 100644
--- a/htdocs/comm/propal/card.php
+++ b/htdocs/comm/propal/card.php
@@ -1636,14 +1636,13 @@ if ($action == 'create') {
// Mode of payment
print '
| '.$langs->trans('PaymentMode').' | ';
print img_picto('', 'bank').' ';
- $form->select_types_paiements((GETPOSTISSET('mode_reglement_id') ? GETPOST('mode_reglement_id', 'int') : $soc->mode_reglement_id), 'mode_reglement_id', '', 0, 1, 0, 0, 1, 'maxwidth200 widthcentpercentminusx');
+ $form->select_types_paiements((GETPOSTISSET('mode_reglement_id') ? GETPOST('mode_reglement_id', 'int') : $soc->mode_reglement_id), 'mode_reglement_id', 'CRDT', 0, 1, 0, 0, 1, 'maxwidth200 widthcentpercentminusx');
print ' |
';
// Bank Account
if (!empty($conf->global->BANK_ASK_PAYMENT_BANK_DURING_PROPOSAL) && !empty($conf->banque->enabled)) {
print '| '.$langs->trans('BankAccount').' | ';
- print img_picto('', 'bank_account', 'class="pictofixedwidth"');
- print $form->select_comptes($soc->fk_account, 'fk_account', 0, '', 1, '', 0, 'maxwidth200 widthcentpercentminusx', 1);
+ print img_picto('', 'bank_account', 'class="pictofixedwidth"').$form->select_comptes($soc->fk_account, 'fk_account', 0, '', 1, '', 0, 'maxwidth200 widthcentpercentminusx', 1);
print ' |
';
}
diff --git a/htdocs/commande/card.php b/htdocs/commande/card.php
index 75478c04ef5..6d0badf6380 100644
--- a/htdocs/commande/card.php
+++ b/htdocs/commande/card.php
@@ -1635,14 +1635,13 @@ if ($action == 'create' && $usercancreate) {
// Mode de reglement
print '| '.$langs->trans('PaymentMode').' | ';
print img_picto('', 'bank', 'class="pictofixedwidth"');
- $form->select_types_paiements($mode_reglement_id, 'mode_reglement_id', '', 0, 1, 0, 0, 1, 'maxwidth200 widthcentpercentminusx');
+ $form->select_types_paiements($mode_reglement_id, 'mode_reglement_id', 'CRDT', 0, 1, 0, 0, 1, 'maxwidth200 widthcentpercentminusx');
print ' |
';
// Bank Account
if (!empty($conf->global->BANK_ASK_PAYMENT_BANK_DURING_ORDER) && !empty($conf->banque->enabled)) {
print '| '.$langs->trans('BankAccount').' | ';
- print img_picto('', 'bank_account', 'class="pictofixedwidth"');
- print $form->select_comptes($fk_account, 'fk_account', 0, '', 1, '', 0, 'maxwidth200 widthcentpercentminusx', 1);
+ print img_picto('', 'bank_account', 'class="pictofixedwidth"').$form->select_comptes($fk_account, 'fk_account', 0, '', 1, '', 0, 'maxwidth200 widthcentpercentminusx', 1);
print ' |
';
}
diff --git a/htdocs/compta/facture/card.php b/htdocs/compta/facture/card.php
index e5b4b2d2398..de5856bdb58 100644
--- a/htdocs/compta/facture/card.php
+++ b/htdocs/compta/facture/card.php
@@ -3571,14 +3571,15 @@ if ($action == 'create') {
// Payment mode
print '| '.$langs->trans('PaymentMode').' | ';
- $form->select_types_paiements(GETPOSTISSET('mode_reglement_id') ? GETPOST('mode_reglement_id') : $mode_reglement_id, 'mode_reglement_id', 'CRDT');
+ print img_picto('', 'bank', 'class="pictofixedwidth"');
+ $form->select_types_paiements(GETPOSTISSET('mode_reglement_id') ? GETPOST('mode_reglement_id') : $mode_reglement_id, 'mode_reglement_id', 'CRDT', 0, 1, 0, 0, 1, 'maxwidth200 widthcentpercentminusx');
print ' |
';
// Bank Account
if (!empty($conf->banque->enabled)) {
print '| '.$langs->trans('BankAccount').' | ';
$fk_account = GETPOST('fk_account', 'int');
- print img_picto('', 'bank_account', 'class="paddingrightonly"').$form->select_comptes(($fk_account < 0 ? '' : $fk_account), 'fk_account', 0, '', 1, '', 0, '', 1);
+ print img_picto('', 'bank_account', 'class="pictofixedwidth"').$form->select_comptes(($fk_account < 0 ? '' : $fk_account), 'fk_account', 0, '', 1, '', 0, 'maxwidth200 widthcentpercentminusx', 1);
print ' |
';
}
@@ -3586,7 +3587,7 @@ if ($action == 'create') {
if (!empty($conf->projet->enabled)) {
$langs->load('projects');
print '| '.$langs->trans('Project').' | ';
- print img_picto('', 'project').$formproject->select_projects(($socid > 0 ? $socid : -1), $projectid, 'projectid', 0, 0, 1, 1, 0, 0, 0, '', 1, 0, 'maxwidth500');
+ print img_picto('', 'project').$formproject->select_projects(($socid > 0 ? $socid : -1), $projectid, 'projectid', 0, 0, 1, 1, 0, 0, 0, '', 1, 0, 'maxwidth500 widthcentpercentminusxx');
print ' id.($fac_rec ? '&fac_rec='.$fac_rec : '')).'">';
print ' |
';
}
@@ -3626,6 +3627,7 @@ if ($action == 'create') {
// Template to use by default
print '| '.$langs->trans('Model').' | ';
print '';
+ print img_picto('', 'pdf', 'class="pictofixedwidth"');
include_once DOL_DOCUMENT_ROOT.'/core/modules/facture/modules_facture.php';
$liste = ModelePDFFactures::liste_modeles($db);
if (!empty($conf->global->INVOICE_USE_DEFAULT_DOCUMENT)) {
@@ -3635,7 +3637,7 @@ if ($action == 'create') {
} else {
$preselected = $conf->global->FACTURE_ADDON_PDF;
}
- print $form->selectarray('model', $liste, $preselected, 0, 0, 0, '', 0, 0, 0, '', '', 1);
+ print $form->selectarray('model', $liste, $preselected, 0, 0, 0, '', 0, 0, 0, '', 'maxwidth200 widthcentpercentminusx', 1);
print " |
";
// Multicurrency