Skip to content
Snippets Groups Projects
Commit f842cfff authored by Kurund Jalmi's avatar Kurund Jalmi
Browse files

CRM-13078, fixed error message for contact autocomplete

----------------------------------------
* CRM-13078: Batch Data Entry silently drops 'batch-valid' entries if no contact_id is associated with them
  http://issues.civicrm.org/jira/browse/CRM-13078
parent 23246a80
No related branches found
No related tags found
No related merge requests found
......@@ -178,7 +178,7 @@ class CRM_Batch_Form_Entry extends CRM_Core_Form {
$contactTypes = array('Contact', 'Individual', 'Household', 'Organization');
for ($rowNumber = 1; $rowNumber <= $this->_batchInfo['item_count']; $rowNumber++) {
CRM_Contact_Form_NewContact::buildQuickForm($this, $rowNumber, NULL, TRUE, 'primary_');
CRM_Contact_Form_NewContact::buildQuickForm($this, $rowNumber, NULL, TRUE, 'primary_', ts('Contact'));
// special field specific to membership batch udpate
if ($this->_batchInfo['type_id'] == 2) {
......
......@@ -50,11 +50,15 @@ class CRM_Contact_Form_NewContact {
*
* @return void
*/
static function buildQuickForm(&$form, $blockNo = 1, $extraProfiles = NULL, $required = FALSE, $prefix = '') {
static function buildQuickForm(&$form, $blockNo = 1, $extraProfiles = NULL, $required = FALSE, $prefix = '', $label = NULL) {
// call to build contact autocomplete
$attributes = array('width' => '200px');
$selectContacts = $form->add('text', "{$prefix}contact[{$blockNo}]", ts('Select Contact'), $attributes, $required);
if (!$label) {
$label = ts('Select Contact');
}
$selectContacts = $form->add('text', "{$prefix}contact[{$blockNo}]", $label, $attributes, $required);
// use submitted values to set default if form submit fails dues to form rules
if ($selectContacts->getValue()) {
......
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