marcosgdf-bug-1830

Conflicts:
	ChangeLog
This commit is contained in:
Laurent Destailleur 2015-02-18 22:50:12 +01:00
commit ead6b4bf95
2 changed files with 2 additions and 1 deletions

View File

@ -24,6 +24,7 @@ English Dolibarr ChangeLog
- Fix: [ bug #1822 ] SQL error in clientfourn.php report with PostgreSQL
- Fix: [ bug #1832 ] SQL error when adding a product with no price defined to an object
- Fix: [ bug #1826 ] Supplier payment types are not translated into fourn/facture/paiement.php
- Fix: [ bug #1830 ] Salaries payment only allows checking accounts
***** ChangeLog for 3.6.2 compared to 3.6.1 *****
- Fix: fix ErrorBadValueForParamNotAString error message in price customer multiprice.

View File

@ -248,7 +248,7 @@ if ($action == 'create')
if (! empty($conf->banque->enabled))
{
print '<tr><td class="fieldrequired">'.$langs->trans("Account").'</td><td>';
$form->select_comptes($_POST["accountid"],"accountid",0,"courant=1",1); // Affiche liste des comptes courant
$form->select_comptes($_POST["accountid"],"accountid",0,'',1);
print '</td></tr>';
}