Пример #1
0
 /**
  * Function to process the form
  *
  * @access public
  * @return None
  */
 function postProcess()
 {
     if ($this->_action & CRM_CORE_ACTION_VIEW) {
         return;
     }
     if ($this->_action & CRM_CORE_ACTION_DELETE) {
         CRM_Core_BAO_OtherActivity::del($this->_id);
         return;
     }
     // store the submitted values in an array
     $params = $this->controller->exportValues($this->_name);
     $ids = array();
     // store the date with proper format
     $params['scheduled_date_time'] = CRM_Utils_Date::format($params['scheduled_date_time']);
     // store the contact id and current drupal user id
     $params['source_contact_id'] = $this->_userId;
     $params['target_entity_id'] = $this->_contactId;
     $params['target_entity_table'] = 'civicrm_contact';
     //set parent id if exists for follow up activities
     if ($this->_pid) {
         $params['parent_id'] = $this->_pid;
     }
     if ($this->_action & CRM_CORE_ACTION_UPDATE) {
         $ids['otherActivity'] = $this->_id;
     }
     $otherActivity = CRM_Core_BAO_OtherActivity::add($params, $ids);
     CRM_Core_BAO_CustomGroup::postProcess($this->_groupTree, $params);
     // do the updates/inserts
     CRM_Core_BAO_CustomGroup::updateCustomData($this->_groupTree, 'Activity', $otherActivity->id);
     $activityType = CRM_Core_PseudoConstant::activityType(true);
     if ($otherActivity->status == 'Completed') {
         // we need to insert an activity history record here
         $params = array('entity_table' => 'civicrm_contact', 'entity_id' => $this->_contactId, 'activity_type' => $activityType[$params['activity_type_id']], 'module' => 'CiviCRM', 'callback' => 'CRM_Activity_Form_OtherActivity::showOtherActivityDetails', 'activity_id' => $otherActivity->id, 'activity_summary' => $otherActivity->subject, 'activity_date' => $otherActivity->scheduled_date_time);
         if (is_a(crm_create_activity_history($params), 'CRM_Core_Error')) {
             return false;
         }
     }
     if ($otherActivity->status == 'Completed') {
         CRM_Core_Session::setStatus(ts('Activity "%1" has been logged to Activity History.', array(1 => $otherActivity->subject)));
     } else {
         if ($this->_action & CRM_CORE_ACTION_DELETE) {
             CRM_Core_Session::setStatus(ts("Selected Activity is deleted sucessfully."));
         } else {
             CRM_Core_Session::setStatus(ts('Activity "%1" has been saved.', array(1 => $otherActivity->subject)));
         }
     }
 }