diff --git a/htdocs/compta/facture/prelevement.php b/htdocs/compta/facture/prelevement.php
index 45664172728..24be588386c 100644
--- a/htdocs/compta/facture/prelevement.php
+++ b/htdocs/compta/facture/prelevement.php
@@ -391,7 +391,7 @@ if ($object->id > 0) {
print $langs->trans('DateInvoice');
print '';
if ($object->type != $object::TYPE_CREDIT_NOTE && $action != 'editinvoicedate' && !empty($object->brouillon) && $user->rights->facture->creer) {
- print '
id.'">'.img_edit($langs->trans('SetDate'), 1).' | ';
+ print 'id.'&type='.urlencode($type).'">'.img_edit($langs->trans('SetDate'), 1).' | ';
}
print '';
print '';
@@ -414,7 +414,7 @@ if ($object->id > 0) {
print $langs->trans('PaymentConditionsShort');
print ' | ';
if ($object->type != $object::TYPE_CREDIT_NOTE && $action != 'editconditions' && !empty($object->brouillon) && $user->rights->facture->creer) {
- print 'id.'">'.img_edit($langs->trans('SetConditions'), 1).' | ';
+ print 'id.'&type='.urlencode($type).'">'.img_edit($langs->trans('SetConditions'), 1).' | ';
}
print '';
print '';
@@ -435,7 +435,7 @@ if ($object->id > 0) {
print $langs->trans('DateMaxPayment');
print ' | ';
if ($object->type != $object::TYPE_CREDIT_NOTE && $action != 'editpaymentterm' && !empty($object->brouillon) && $user->rights->facture->creer) {
- print 'id.'">'.img_edit($langs->trans('SetDate'), 1).' | ';
+ print 'id.'&type='.urlencode($type).'">'.img_edit($langs->trans('SetDate'), 1).' | ';
}
print '';
print '';
@@ -464,7 +464,7 @@ if ($object->id > 0) {
print $langs->trans('PaymentMode');
print ' | ';
if ($action != 'editmode' && !empty($object->brouillon) && $user->rights->facture->creer) {
- print 'id.'">'.img_edit($langs->trans('SetMode'), 1).' | ';
+ print 'id.'&type='.urlencode($type).'">'.img_edit($langs->trans('SetMode'), 1).' | ';
}
print '';
print '';
@@ -481,7 +481,7 @@ if ($object->id > 0) {
print $langs->trans('BankAccount');
print ' | ';
if (($action != 'editbankaccount') && $user->rights->commande->creer && !empty($object->brouillon)) {
- print ' | id.'">'.img_edit($langs->trans('SetBankAccount'), 1).' | ';
+ print 'id.'&type='.urlencode($type).'">'.img_edit($langs->trans('SetBankAccount'), 1).' | ';
}
print '';
print '';
|