From 8f07df8c36d95e7bba2b781cab5cf1e46061767a Mon Sep 17 00:00:00 2001 From: Aidan Saunders Date: Thu, 6 Jul 2023 16:26:50 +0100 Subject: [PATCH] Yes/No field improvements --- .../ang/afsearchFindContributions.aff.html | 9 ++++----- .../managed/SavedSearch_Find_Contributions.mgd.php | 3 +++ 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/ext/civicrm_admin_ui/ang/afsearchFindContributions.aff.html b/ext/civicrm_admin_ui/ang/afsearchFindContributions.aff.html index 6bdd2705d8..89d3198795 100644 --- a/ext/civicrm_admin_ui/ang/afsearchFindContributions.aff.html +++ b/ext/civicrm_admin_ui/ang/afsearchFindContributions.aff.html @@ -17,13 +17,12 @@
- Dev note: these should all be Yes/No radios.  See https://lab.civicrm.org/dev/core/-/issues/4415 - - + + - - + +
diff --git a/ext/civicrm_admin_ui/managed/SavedSearch_Find_Contributions.mgd.php b/ext/civicrm_admin_ui/managed/SavedSearch_Find_Contributions.mgd.php index d080bb850a..1e727e29dc 100644 --- a/ext/civicrm_admin_ui/managed/SavedSearch_Find_Contributions.mgd.php +++ b/ext/civicrm_admin_ui/managed/SavedSearch_Find_Contributions.mgd.php @@ -25,8 +25,11 @@ return [ 'financial_type_id:label', 'source', 'receive_date', + 'ISNULL(thankyou_date) AS ISNULL_thankyou_date', 'thankyou_date', 'contribution_status_id:label', + 'ISNULL(receipt_date) AS ISNULL_receipt_date', + 'ISNULL(contribution_recur_id) AS ISNULL_contribution_recur_id', ], 'orderBy' => [], 'where' => [], -- 2.25.1