Merge pull request #18708 from javieralapps4up/develop

Fix #18707 $search_account and $search_paymenttype are not saved when sorting by any field
This commit is contained in:
Laurent Destailleur 2021-09-17 11:51:35 +02:00 committed by GitHub
commit 9a6f4bf6d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -321,6 +321,12 @@ if ($search_company) {
if ($search_amount != '') {
$param .= '&search_amount='.urlencode($search_amount);
}
if ($search_paymenttype) {
$param .= '&search_paymenttype='.urlencode($search_paymenttype);
}
if ($search_account) {
$param .= '&search_account='.urlencode($search_account);
}
if ($search_payment_num) {
$param .= '&search_payment_num='.urlencode($search_payment_num);
}