minor fix

This commit is contained in:
CiviWare Solutions 2019-02-18 13:06:07 +00:00
parent a035142540
commit a24c24e846
1 changed files with 9 additions and 3 deletions

View File

@ -28,9 +28,9 @@ class CRM_SoftCredit_SoftCreditQueryObject extends CRM_Contact_BAO_Query_Interfa
}
list($name, $op, $value, $grouping, $wildcard) = reset($query->_paramLookup['soft_credit_name']);
if ($value) {
$query->_where[$grouping][] = "civicrm_contact_d.sort_name LIKE '%{$value}%'";
$query->_whereTables['civicrm_contribution_soft_contact'] = 1;
$query->_tables['civicrm_contribution_soft_contact'] = 1;
$query->_where[$grouping][] = "civicrm_contact_creditee.sort_name LIKE '%{$value}%'";
$query->_whereTables['civicrm_contribution_soft_creditee_contact'] = 1;
$query->_tables['civicrm_contribution_soft_creditee_contact'] = 1;
$query->_qill[$grouping][] = ts("%1 %2 - '%3'", [1 => 'Soft Creditee\'s name', 2 => 'LIKE', 3 => $value]);
}
}
@ -42,6 +42,12 @@ class CRM_SoftCredit_SoftCreditQueryObject extends CRM_Contact_BAO_Query_Interfa
*
*/
public function from($name, $mode, $side) {
if ($name == 'civicrm_contribution_soft_creditee_contact') {
return " $side JOIN civicrm_contact civicrm_contact_creditee
ON (civicrm_contribution_soft.contact_id = civicrm_contact_creditee.id)
AND contribution_search_scredit_combined.scredit_id IS NOT NULL
";
}
}
/**