Add ability to search by creditee name

This commit is contained in:
2019-02-18 12:59:46 +00:00
parent bdfc89f904
commit a035142540
3 changed files with 101 additions and 1 deletions

View File

@ -1,12 +1,20 @@
{if $form.soft_credit_name}
<div class="crm-softcredit-form-block-soft_credit_sort_name">
{$form.soft_credit_name.label}<br>
{$form.soft_credit_name.html}
</div>
{/if}
{if $contributionSoftGroupTree}
<div class="softcredit_custom_groups">
<br>
{include file="CRM/Custom/Form/Search.tpl" groupTree=$contributionSoftGroupTree showHideLinks=false}
</div>
{/if}
{if $contributionSoftGroupTree OR $form.soft_credit_name}
<script type="text/javascript">
{literal}
CRM.$(function($) {
$('div#contribution_soft_credit_type_wrapper').append($('div.crm-softcredit-form-block-soft_credit_sort_name'));
$('div#contribution_soft_credit_type_wrapper').append($('div.softcredit_custom_groups'));
});
{/literal}