-
-
Notifications
You must be signed in to change notification settings - Fork 825
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CRM-20987, added batch transaction column #10789
Conversation
---------------------------------------- * CRM-20987: Add transaction date field to listings of transactions https://issues.civicrm.org/jira/browse/CRM-20987
test failure looks like code just needs adjusting |
CRM/Financial/Page/AJAX.php
Outdated
@@ -255,6 +255,7 @@ public static function getFinancialTransactionsList() { | |||
3 => 'amount', | |||
4 => 'trxn_id', | |||
5 => 'transaction_date', | |||
5 => 'receive_date', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You have double indexed here. Might need to renumber?
The changed function is only accessed from the BatchTransction.tpl file - which relates to financial batches. I haven't tested this yet (maybe @lcdservices has) but the code side of it appears safe & ok except for my comment about array indexing |
---------------------------------------- * CRM-20987: Add transaction date field to listings of transactions https://issues.civicrm.org/jira/browse/CRM-20987 fixed indexes
@eileenmcnaughton i have fixed the indexing. |
tested and confirmed. looks good. |
Adding merge on pass based on Brian's feedback |
jenkins, retest this please |
Merging as per tag |
https://issues.civicrm.org/jira/browse/CRM-20987
Overview
Financial batch listing page lists transaction with transaction date derived from civicrm_financial_trxn table(column name = Received). This PR fixes
Before
After