git push origin 3.7Merge branch 'marcosgdf-bug-3460' into 3.7
This commit is contained in:
commit
1f25ccf0bf
@ -26,6 +26,7 @@ FIX [ bug #3431 ] Invoice bank account is not respected
|
|||||||
FIX [ bug #3432 ] Spaces should be removed from IBAN when formatting it
|
FIX [ bug #3432 ] Spaces should be removed from IBAN when formatting it
|
||||||
FIX [ bug #3358 ] Tasks box does not work with PostgreSQL
|
FIX [ bug #3358 ] Tasks box does not work with PostgreSQL
|
||||||
FIX [ bug #3383 ] Company name is overlapped with company direction in PDF models
|
FIX [ bug #3383 ] Company name is overlapped with company direction in PDF models
|
||||||
|
FIX [ bug #3460 ] Bank account is not saved when creating a customer invoice and facing an error message
|
||||||
|
|
||||||
NEW: Created new ContratLigne::insert function
|
NEW: Created new ContratLigne::insert function
|
||||||
|
|
||||||
|
|||||||
@ -2121,6 +2121,10 @@ if ($action == 'create')
|
|||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
|
|
||||||
// Bank Account
|
// Bank Account
|
||||||
|
if (isset($_POST['fk_account'])) {
|
||||||
|
$fk_account = $_POST['fk_account'];
|
||||||
|
}
|
||||||
|
|
||||||
print '<tr><td>' . $langs->trans('BankAccount') . '</td><td colspan="2">';
|
print '<tr><td>' . $langs->trans('BankAccount') . '</td><td colspan="2">';
|
||||||
$form->select_comptes($fk_account, 'fk_account', 0, '', 1);
|
$form->select_comptes($fk_account, 'fk_account', 0, '', 1);
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user