From d7126e8d2425e89c5f5c30c2ba955b5be64b793e Mon Sep 17 00:00:00 2001 From: javieralapps4up Date: Tue, 14 Sep 2021 01:49:24 +0200 Subject: [PATCH] Update list.php $search_account and $search_paymenttype are not saved when sorting by any field --- htdocs/compta/paiement/list.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/htdocs/compta/paiement/list.php b/htdocs/compta/paiement/list.php index d1a94f5e690..75ff876ddc7 100644 --- a/htdocs/compta/paiement/list.php +++ b/htdocs/compta/paiement/list.php @@ -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); }