Skip to content
Snippets Groups Projects
Unverified Commit 8b056441 authored by Seamus Lee's avatar Seamus Lee Committed by GitHub
Browse files

Merge pull request #15321 from yashodha/dev_1065

(#1065) Pledge in Edit mode needs to be shown consistently
parents 3662f7a6 31fc277f
No related branches found
No related tags found
No related merge requests found
......@@ -96,7 +96,6 @@ class CRM_Pledge_Form_Pledge extends CRM_Core_Form {
list($this->userDisplayName,
$this->userEmail
) = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contactID);
$this->assign('displayName', $this->userDisplayName);
}
$this->setPageTitle(ts('Pledge'));
......@@ -153,6 +152,9 @@ class CRM_Pledge_Form_Pledge extends CRM_Core_Form {
$this->assign('installments', $defaults['installments']);
}
else {
if ($this->_contactID) {
$defaults['contact_id'] = $this->_contactID;
}
// default values.
$defaults['create_date'] = date('Y-m-d');
$defaults['start_date'] = date('Y-m-d');
......@@ -211,11 +213,9 @@ class CRM_Pledge_Form_Pledge extends CRM_Core_Form {
return;
}
if ($this->_context == 'standalone') {
$this->addEntityRef('contact_id', ts('Contact'), [
'create' => TRUE,
'api' => ['extra' => ['email']],
], TRUE);
$contactField = $this->addEntityRef('contact_id', ts('Contact'), ['create' => TRUE, 'api' => ['extra' => ['email']]], TRUE);
if ($this->_context != 'standalone') {
$contactField->freeze();
}
$showAdditionalInfo = FALSE;
......@@ -545,12 +545,6 @@ class CRM_Pledge_Form_Pledge extends CRM_Core_Form {
// send Acknowledgment mail.
CRM_Pledge_BAO_Pledge::sendAcknowledgment($this, $params);
if (!isset($this->userEmail)) {
list($this->userDisplayName,
$this->userEmail
) = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contactID);
}
$statusMsg .= ' ' . ts("An acknowledgment email has been sent to %1.<br />", [1 => $this->userEmail]);
// build the payment urls.
......
......@@ -51,17 +51,10 @@
</div>
{else}
<table class="form-layout-compressed">
{if $context eq 'standalone'}
<tr class="crm-pledge-form-contact-id">
<td class="label">{$form.contact_id.label}</td>
<td>{$form.contact_id.html}</td>
</tr>
{else}
<tr class="crm-pledge-form-block-displayName">
<td class="font-size12pt right"><strong>{ts}Pledge by{/ts}</strong></td>
<td class="font-size12pt"><strong>{$displayName}</strong></td>
</tr>
{/if}
<tr class="crm-pledge-form-block-amount">
<td class="label">{$form.amount.label}</td>
<td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment