Merge pull request #24121 from FHenry/16_fix_auto_account

fix: input percent deposit is missing on auto-deposit feature
This commit is contained in:
Laurent Destailleur 2023-03-04 15:18:29 +01:00 committed by GitHub
commit f2e467e0d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4054,7 +4054,7 @@ class Form
public function select_conditions_paiements($selected = 0, $htmlname = 'condid', $filtertype = -1, $addempty = 0, $noinfoadmin = 0, $morecss = '', $deposit_percent = -1)
{
// phpcs:enable
print $this->getSelectConditionsPaiements($selected, $htmlname, $filtertype, $addempty, $noinfoadmin, $morecss, $deposit_percent = -1);
print $this->getSelectConditionsPaiements($selected, $htmlname, $filtertype, $addempty, $noinfoadmin, $morecss, $deposit_percent);
}