From d1a7c103500d156b85e21883c8e7e2ac8099aace Mon Sep 17 00:00:00 2001 From: Seamus Lee Date: Wed, 8 Nov 2023 09:22:54 +1100 Subject: [PATCH] Fix Dynamic Property Errors on Batch Export --- CRM/Financial/BAO/ExportFormat.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CRM/Financial/BAO/ExportFormat.php b/CRM/Financial/BAO/ExportFormat.php index 8e27691e57..9112655b55 100644 --- a/CRM/Financial/BAO/ExportFormat.php +++ b/CRM/Financial/BAO/ExportFormat.php @@ -40,6 +40,19 @@ abstract class CRM_Financial_BAO_ExportFormat { */ public $_isDownloadFile; + /** + * BatchIds to be exported + * @var string + */ + public $_batchIds; + + + /** + * Files to be downloaded + * @var array + */ + public $_downloadFile; + /** * Class constructor. */ -- 2.25.1