Update list.php

$search_account and $search_paymenttype are not saved when sorting by any field
This commit is contained in:
javieralapps4up 2021-09-14 01:49:24 +02:00 committed by GitHub
parent 283f37a364
commit d7126e8d24
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);
}