--Modification to caseType PseudoConstant function call
authorNileema <nileema@nileema.(none)>
Tue, 6 May 2014 06:37:53 +0000 (12:07 +0530)
committerNileema <nileema@nileema.(none)>
Tue, 6 May 2014 06:37:53 +0000 (12:07 +0530)
CRM/Case/Form/Activity/ChangeCaseType.php
CRM/Logging/Differ.php
CRM/Logging/ReportSummary.php

index 25e9f132661994d242b9cb79fe8a17b202c60bd8..144826412a6ce3a6327e1f3c2ef7663623892ded 100644 (file)
@@ -135,7 +135,7 @@ class CRM_Case_Form_Activity_ChangeCaseType {
     }
 
     $caseTypes = CRM_Case_PseudoConstant::caseType('name');
-    $allCaseTypes = CRM_Case_PseudoConstant::caseType('label', FALSE);
+    $allCaseTypes = CRM_Case_PseudoConstant::caseType('title', FALSE);
 
     if (!empty($caseTypes[$params['case_type_id']])) {
       $caseType = $caseTypes[$params['case_type_id']];
index d2bc59fe0080581c73fd354aa8534f47386756b2..ac68cc6876d7a9c6e8e8e9836d1a93f96c1f821c 100644 (file)
@@ -261,7 +261,7 @@ WHERE lt.log_conn_id = %1 AND
           'suffix_id' => CRM_Contact_BAO_Contact::buildOptions('suffix_id'),
           'website_type_id' => CRM_Core_PseudoConstant::get('CRM_Core_DAO_Website', 'website_type_id'),
           'activity_type_id' => CRM_Core_PseudoConstant::activityType(TRUE, TRUE, FALSE, 'label', TRUE),
-          'case_type_id' => CRM_Case_PseudoConstant::caseType('label', FALSE),
+          'case_type_id' => CRM_Case_PseudoConstant::caseType('title', FALSE),
           'priority_id'  => CRM_Core_PseudoConstant::get('CRM_Activity_DAO_Activity', 'priority_id'),
         );
 
index 6365588bf4829a243791b0831a94dd26fb863d84..4cce97d00f07317cd75b784d452c029c38b770ea 100644 (file)
@@ -165,7 +165,7 @@ class CRM_Logging_ReportSummary extends CRM_Report_Form {
           ),
           'bracket_info' => array(
             'entity_column' => 'case_type_id',
-            'options' => CRM_Case_PseudoConstant::caseType('label', FALSE)
+            'options' => CRM_Case_PseudoConstant::caseType('title', FALSE)
           ),
         ),
       );
@@ -181,7 +181,7 @@ class CRM_Logging_ReportSummary extends CRM_Report_Form {
     // build _logTables for address custom tables
     $customTables = $logging->entityCustomDataLogTables('Address');
     foreach ($customTables as $table) {
-      $this->_logTables[$table] = 
+      $this->_logTables[$table] =
         array(
           'fk' => 'contact_id',// for join of fk_table with contact table
           'joins' => array(
@@ -223,7 +223,7 @@ class CRM_Logging_ReportSummary extends CRM_Report_Form {
   function where() {
     // reset where clause as its called multiple times, every time insert sql is built.
     $this->_whereClauses = array();
-    
+
     parent::where();
     $this->_where .= " AND (entity_log_civireport.log_action != 'Initialization')";
   }