- Record Id */ public function getId() { return $this->get('id'); } /** * Function to set the id of the record * @param $value - id value * @return - current instance */ public function setId($value) { return $this->set('id',$value); } /** * Function to get column fields of record * @return */ public function getData(){ $data = $this->valueMap; // column_fields will be a trackable object, we should get column fields from that object if(is_object($data)){ return $data->getColumnFields(); } return $data; } /** * Fuction to get the Name of the record * @return - Entity Name of the record */ public function getName() { $displayName = $this->get('label'); $module = $this->getModule(); $entityFields = $module->getNameFields(); if($entityFields){ foreach($entityFields as $field){ if($this->get($field)){ $name[] = $this->get($field); } } if(!empty($name)){ $displayName = implode(" ", $name); } } if(empty($displayName)) { $displayName = $this->getDisplayName(); } return Vtiger_Util_Helper::toSafeHTML(decode_html($displayName)); } /** * Function to get the Module to which the record belongs * @return Vtiger_Module_Model */ public function getModule() { return $this->module; } /** * Function to set the Module to which the record belongs * @param $moduleName * @return Vtiger_Record_Model or Module Specific Record Model instance */ public function setModule($moduleName) { $this->module = Vtiger_Module_Model::getInstance($moduleName); return $this; } /** * Function to set the Module to which the record belongs from the Module model instance * @param $module * @return Vtiger_Record_Model or Module Specific Record Model instance */ public function setModuleFromInstance($module) { $this->module = $module; return $this; } /** * Function to get the entity instance of the recrod * @return CRMEntity object */ public function getEntity() { return $this->entity; } /** * Function to set the entity instance of the record * @param CRMEntity $entity * @return Vtiger_Record_Model instance */ public function setEntity($entity) { $this->entity = $entity; return $this; } /** * Function to get raw data * @return */ public function getRawData() { return $this->rawData; } /** * Function to set raw data * @param $data * @return Vtiger_Record_Model instance */ public function setRawData($data) { $this->rawData = $data; return $this; } /** * Function to get the Detail View url for the record * @return - Record Detail View Url */ public function getDetailViewUrl() { $module = $this->getModule(); return 'index.php?module='.$this->getModuleName().'&view='.$module->getDetailViewName().'&record='.$this->getId(); } /** * Function to get the complete Detail View url for the record * @return - Record Detail View Url */ public function getFullDetailViewUrl() { $module = $this->getModule(); // If we don't send tab label then it will show full detail view, but it will select summary tab $moduleName = $this->getModuleName(); $fullDetailViewLabel = vtranslate('SINGLE_'.$moduleName, $moduleName).' '. vtranslate('LBL_DETAILS', $moduleName); return 'index.php?module='.$moduleName.'&view='.$module->getDetailViewName().'&record='.$this->getId().'&mode=showDetailViewByMode&requestMode=full&tab_label='.$fullDetailViewLabel; } /** * Function to get the Edit View url for the record * @return - Record Edit View Url */ public function getEditViewUrl() { $module = $this->getModule(); return 'index.php?module='.$this->getModuleName().'&view='.$module->getEditViewName().'&record='.$this->getId(); } /** * Function to get the Update View url for the record * @return - Record Upadte view Url */ public function getUpdatesUrl() { return $this->getDetailViewUrl()."&mode=showRecentActivities&page=1&tab_label=LBL_UPDATES"; } /** * Function to get the Delete Action url for the record * @return - Record Delete Action Url */ public function getDeleteUrl() { $module = $this->getModule(); return 'index.php?module='.$this->getModuleName().'&action='.$module->getDeleteActionName().'&record='.$this->getId(); } /** * Function to get the name of the module to which the record belongs * @return - Record Module Name */ public function getModuleName() { return $this->getModule()->get('name'); } /** * Function to get the Display Name for the record * @return - Entity Display Name for the record */ public function getDisplayName() { return Vtiger_Util_Helper::getRecordName($this->getId()); } /** * Function to retieve display value for a field * @param $fieldName - field name for which values need to get * @return */ public function getDisplayValue($fieldName,$recordId = false) { if(empty($recordId)) { $recordId = $this->getId(); } $fieldModel = $this->getModule()->getField($fieldName); // For showing the "Date Sent" and "Time Sent" in email related list in user time zone if($fieldName == "time_start" && $this->getModule()->getName() == "Emails"){ $date = new DateTime(); $dateTime = new DateTimeField($date->format('Y-m-d').' '.$this->get($fieldName)); $value = Vtiger_Time_UIType::getDisplayValue($dateTime->getDisplayTime()); $this->set($fieldName, $value); return $value; }else if($fieldName == "date_start" && $this->getModule()->getName() == "Emails"){ $dateTime = new DateTimeField($this->get($fieldName).' '.$this->get('time_start')); $value = $dateTime->getDisplayDate(); $this->set($fieldName, $value); return $value; } // End if($fieldModel) { return $fieldModel->getDisplayValue($this->get($fieldName), $recordId, $this); } return false; } /** * Function returns the Vtiger_Field_Model * @param $fieldName - field name * @return */ public function getField($fieldName) { return $this->getModule()->getField($fieldName); } /** * Function returns all the field values in user format * @return */ public function getDisplayableValues() { $displayableValues = array(); $data = $this->getData(); foreach($data as $fieldName=>$value) { $fieldValue = $this->getDisplayValue($fieldName); $displayableValues[$fieldName] = ($fieldValue || $fieldValue === '0') ? $fieldValue : $value; } return $displayableValues; } /** * Function to save the current Record Model */ public function save() { $this->getModule()->saveRecord($this); } /** * Function to delete the current Record Model */ public function delete() { $this->getModule()->deleteRecord($this); } /** * Static Function to get the instance of a clean Vtiger Record Model for the given module name * @param $moduleName * @return Vtiger_Record_Model or Module Specific Record Model instance */ public static function getCleanInstance($moduleName) { //TODO: Handle permissions $focus = CRMEntity::getInstance($moduleName); $modelClassName = Vtiger_Loader::getComponentClassName('Model', 'Record', $moduleName); $instance = new $modelClassName(); return $instance->setData($focus->column_fields)->setModule($moduleName)->setEntity($focus); } /** * Static Function to get the instance of the Vtiger Record Model given the recordid and the module name * @param $recordId * @param $moduleName * @return Vtiger_Record_Model or Module Specific Record Model instance */ public static function getInstanceById($recordId, $module=null) { //TODO: Handle permissions if(is_object($module) && is_a($module, 'Vtiger_Module_Model')) { $moduleName = $module->get('name'); } elseif (is_string($module)) { $module = Vtiger_Module_Model::getInstance($module); $moduleName = $module->get('name'); } elseif(empty($module)) { $moduleName = getSalesEntityType($recordId); $module = Vtiger_Module_Model::getInstance($moduleName); } $focus = CRMEntity::getInstance($moduleName); $focus->id = $recordId; $focus->retrieve_entity_info($recordId, $moduleName); $modelClassName = Vtiger_Loader::getComponentClassName('Model', 'Record', $moduleName); $instance = new $modelClassName(); return $instance->setData($focus->column_fields)->set('id',$recordId)->setModuleFromInstance($module)->setEntity($focus); } //SalesPlatform.ru begin Vtiger 7 global search support private static function getGlobalSearchResult($query, $moduleName) { $matchingRecords = array(); $db = PearDatabase::getInstance(); $tab_result = $db->pquery($query, array()); $tab_noOfRows = $db->num_rows($tab_result); $tabid = getTabid($moduleName); for($u=0; $u<$tab_noOfRows; ++$u) { $row = $db->query_result_rowdata($tab_result, $u); $moduleModels = array(); if(!array_key_exists($moduleName, $moduleModels)) { $moduleModels[$moduleName] = Vtiger_Module_Model::getInstance($moduleName); } $moduleModel = $moduleModels[$moduleName]; $modelClassName = Vtiger_Loader::getComponentClassName('Model', 'Record', $moduleName); $recordInstance = new $modelClassName(); //resolve related fields by uitype $moduleInfo = Vtiger_Functions::getModuleFieldInfos($moduleName); $moduleInfoExtend = array (); if (count($moduleInfo) > 0) { foreach ($moduleInfo as $field => $fieldInfo) { $moduleInfoExtend[$fieldInfo['columnname']] = $fieldInfo; } } $label_name = array(); $label_search = array(); $serachcol_arr = Vtiger_Record_Model::getDisplayLabelsArray($tabid); foreach ($serachcol_arr as $columnName) { if ($moduleInfoExtend && in_array($moduleInfoExtend[$columnName]['uitype'], array(10, 51,73,76, 75, 81))) { //get module of the related record if ($row[$columnName] > 0) { $setype = 'SELECT setype FROM vtiger_crmentity WHERE crmid = ?'; $setype_result = $db->pquery($setype, array($row[$columnName])); $entityinfo = 'SELECT tablename, fieldname, entityidfield FROM vtiger_entityname WHERE modulename = ?'; $entityinfo_result = $db->pquery($entityinfo, array($db->query_result($setype_result, 0, "setype"))); $label_query = "Select ".$db->query_result($entityinfo_result, 0, "fieldname")." from ".$db->query_result($entityinfo_result, 0, "tablename")." where ".$db->query_result($entityinfo_result, 0, "entityidfield")." =?"; $label_result = $db->pquery($label_query, array($row[$columnName])); $label_name[$columnName] = $db->query_result($label_result, 0, $db->query_result($entityinfo_result, 0, "fieldname")); } else { $label_name[$columnName] =''; } } else { $label_name[$columnName] = $row[$columnName]; } } $row['label'] =''; foreach ($serachcol_arr as $displaylabel) { if ($row['label'] =='') { $row['label'] = $label_name[$displaylabel]; } else { $row['label'] .= ' |'.$label_name[$displaylabel]; } } $row['id'] =$row['crmid']; $matchingRecords[$moduleName][$row['id']] = $recordInstance->setData($row)->setModuleFromInstance($moduleModel); } return $matchingRecords; } //SalesPlatform.ru end Vtiger 7 global search support // SalesPlatform.ru begin /** * Function to get the listquery for a full search * @param string $tabid -- tabid of the module to search * @param string $searchKey -- search term */ public static function dofullmodulesearch($tabid, $searchKey){ require_once 'include/utils/utils.php'; $db = PearDatabase::getInstance(); $moduleName = vtlib_getModuleNameById($tabid); $moduleModel = Vtiger_Module_Model::getInstance($moduleName); //SalesPlatform.ru begin if (!empty ($moduleModel) and $moduleModel->isActive()) { //if (!empty ($moduleModel) and $moduleModel->isActive() and $moduleName!='PBXManager') { //SalesPlatform.ru end $fieldModels = $moduleModel->getFields(); $listquery = getListQuery($moduleName); $searchcolumn_query = $db->pquery("select displayfield from berli_globalsearch_settings where gstabid =?", array($tabid)); $serachcol_arr = Vtiger_Record_Model::getDisplayLabelsArray($tabid); foreach ($serachcol_arr as $fieldname) { //there could be the case that a custom field was deleted and is still in berli_globalsearch_settings if ($fieldname=='accountid'){ $newfiled = 'account_id'; } else { $newfiled = $fieldname; } if (!empty($fieldModels[$newfiled])) { $fieldtable[] = $fieldModels[$newfiled]->table.'.'.$fieldname; } } if (!empty($fieldtable) and is_array($fieldtable)){ //fields to display are defined in berli_globalsearch_settings $query_select = implode(",", $fieldtable); $listviewquery = substr($listquery, strpos($listquery, 'FROM'), strlen($listquery)); $listquery = "select vtiger_crmentity.crmid, vtiger_crmentity.createdtime, vtiger_crmentity.smownerid, " . $query_select . " " . $listviewquery; } else { //cover all other cases $listviewquery = substr($listquery, strpos($listquery, 'FROM'), strlen($listquery)); $metainfo = Vtiger_Functions::getEntityModuleInfo($moduleName); $listquery = "select vtiger_crmentity.crmid, vtiger_crmentity.createdtime, vtiger_crmentity.smownerid, " . $metainfo['tablename'].".".$metainfo['fieldname'] . " " . $listviewquery; } $where = Vtiger_Record_Model::getUnifiedWhere($listquery,$moduleName,$searchKey); if($where != ''){ $listquery .= ' and ('.$where.')'; } } return $listquery; } /** * Function to get details for user have the permissions to do actions * @return - true/false */ public static function getDisplayLabelsArray ($tabid) { $db = PearDatabase::getInstance(); $displayfield_query = $db->pquery("select displayfield from berli_globalsearch_settings where gstabid =?", array($tabid)); $displayfield = $db->query_result($displayfield_query,0,'displayfield'); $serachcol_array = array (); if (trim($displayfield) !='') { $serachcol_array = explode(",",$displayfield); } else { //there is no special settings = get the standard table $entityname_query = $db->pquery("select fieldname from vtiger_entityname where tabid =?", array($tabid)); $entitynamecolumn = $db->query_result($entityname_query,0,'fieldname'); $serachcol_array = explode(",",$entitynamecolumn); } return $serachcol_array; } /** * Function to get the where condition for a module based on the field table entries * @param string $listquery -- ListView query for the module * @param string $module -- module name * @param string $search_val -- entered search string value * @return string $where -- where condition for the module based on field table entries */ static function getUnifiedWhere($listquery,$module,$search_val){ global $current_user; $db = PearDatabase::getInstance(); require('user_privileges/user_privileges_'.$current_user->id.'.php'); $search_val = $db->sql_escape_string($search_val); if($is_admin == true || $profileGlobalPermission[1] == 0 || $profileGlobalPermission[2] ==0){ $query = "SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2)"; $qparams = array(getTabid($module)); } else { $profileList = getCurrentUserProfileList(); $query = "SELECT columnname, tablename FROM vtiger_field INNER JOIN vtiger_profile2field ON vtiger_profile2field.fieldid = vtiger_field.fieldid INNER JOIN vtiger_def_org_field ON vtiger_def_org_field.fieldid = vtiger_field.fieldid WHERE vtiger_field.tabid = ? AND vtiger_profile2field.visible = 0 AND vtiger_profile2field.profileid IN (". generateQuestionMarks($profileList) . ") AND vtiger_def_org_field.visible = 0 and vtiger_field.presence in (0,2) GROUP BY vtiger_field.fieldid"; $qparams = array(getTabid($module), $profileList); } //SalesPlatform.ru begin $moduleModel = Vtiger_Module_Model::getInstance($module); $relationFields = array(); $referenceFields = $moduleModel->getFieldsByType('reference'); foreach ($referenceFields as $fieldModel) { $relationFields[] = $fieldModel->getName(); } //SalesPlatform.ru end $result = $db->pquery($query, $qparams); $noofrows = $db->num_rows($result); $where = ''; for($i=0;$i<$noofrows;$i++){ $columnname = $db->query_result($result,$i,'columnname'); $tablename = $db->query_result($result,$i,'tablename'); // Search / Lookup customization if($module == 'Contacts' && $columnname == 'accountid') { $columnname = "accountname"; $tablename = "vtiger_account"; } // END //Before form the where condition, check whether the table for the field has been added in the listview query if(strstr($listquery, $tablename)){ if ($where != '') { $where .= " OR "; } //SalesPlatform.ru begin //$where .= "CONVERT( ".$tablename.".".$columnname." using 'utf8') LIKE '". formatForSqlLike($search_val) ."'"; if (in_array($columnname, $relationFields)){ $crmIds = self::getSearchLabelCache($search_val); if(!empty($crmIds)) { $where .= "CONVERT( ".$tablename.".".$columnname." using 'utf8') IN (". join(",", $crmIds) . ")"; } } else { $where .= "CONVERT( ".$tablename.".".$columnname." using 'utf8') LIKE '". formatForSqlLike($search_val) ."'"; } //SalesPlatform.ru end } } return $where; } // SalesPlatform.ru end //SalesPlatform.ru begin private static function getSearchLabelCache($searchValue) { if(!array_key_exists($searchValue, self::$globalSearchCache)) { self::$globalSearchCache[$searchValue] = array(); $db = PearDatabase::getInstance(); $result = $db->pquery( "SELECT crmid FROM vtiger_crmentity WHERE label LIKE ? AND vtiger_crmentity.deleted = 0", array("%" . $searchValue . "%") ); if($result) { while($resultRow = $db->fetchByAssoc($result)) { self::$globalSearchCache[$searchValue][] = $resultRow['crmid']; } } } return self::$globalSearchCache[$searchValue]; } //SalesPlatform.ru end //SalesPlatform.ru begin Vtiger 7 global search support /** * Static Function to get the list of records matching the search key * @param $searchKey * @return - List of Vtiger_Record_Model or Module Specific Record Model instances */ public static function getSearchResult($searchKey, $module=false) { // private static function getGlobalSearchResult($query, $moduleName) { // $matchingRecords = array(); $searchInstance = Vtiger_Module_Model::getInstance('Search'); if($searchInstance != null && $searchInstance->get('presence') != 1) { $db = PearDatabase::getInstance(); //decide search mode $matchingRecords =array (); if ($module == false) { //get all tabid settings for search $searchdata = 'SELECT * FROM berli_globalsearch_settings WHERE turn_off = 1'; $searchdata_result = $db->pquery($searchdata, array()); $num_of_all = $db->num_rows($searchdata_result); for($v=0; $v<$num_of_all; ++$v) { if ($db->query_result($searchdata_result, $v, "searchall")==1){ //search all activated $tabid = $db->query_result($searchdata_result, $v, "gstabid"); $query = Vtiger_Record_Model::dofullmodulesearch($tabid, $searchKey); //SalesPlatform.ru end Vtiger 7 global search support $tab_result = $db->pquery($query, array()); $tab_noOfRows = $db->num_rows($tab_result); $moduleName = vtlib_getModuleNameById($tabid); for($u=0; $u<$tab_noOfRows; ++$u) { $row = $db->query_result_rowdata($tab_result, $u); $globalsearchlist[$tabid][$u] = $row['crmid']; $moduleModels = array(); if(!array_key_exists($moduleName, $moduleModels)) { $moduleModels[$moduleName] = Vtiger_Module_Model::getInstance($moduleName); } $moduleModel = $moduleModels[$moduleName]; $modelClassName = Vtiger_Loader::getComponentClassName('Model', 'Record', $moduleName); $recordInstance = new $modelClassName(); //resolve related fields by uitype $moduleInfo = Vtiger_Functions::getModuleFieldInfos($moduleName); $moduleInfoExtend = array (); if (count($moduleInfo) > 0) { foreach ($moduleInfo as $field => $fieldInfo) { $moduleInfoExtend[$fieldInfo['columnname']] = $fieldInfo; } } $label_name = array(); $label_search = array(); $serachcol_arr = Vtiger_Record_Model::getDisplayLabelsArray($tabid); foreach ($serachcol_arr as $columnName) { if ($moduleInfoExtend && in_array($moduleInfoExtend[$columnName]['uitype'], array(10, 51,73,76, 75, 81))) { //get module of the related record if ($row[$columnName] > 0) { $setype = 'SELECT setype FROM vtiger_crmentity WHERE crmid = ?'; $setype_result = $db->pquery($setype, array($row[$columnName])); $entityinfo = 'SELECT tablename, fieldname, entityidfield FROM vtiger_entityname WHERE modulename = ?'; $entityinfo_result = $db->pquery($entityinfo, array($db->query_result($setype_result, 0, "setype"))); $label_query = "Select ".$db->query_result($entityinfo_result, 0, "fieldname")." from ".$db->query_result($entityinfo_result, 0, "tablename")." where ".$db->query_result($entityinfo_result, 0, "entityidfield")." =?"; $label_result = $db->pquery($label_query, array($row[$columnName])); $label_name[$columnName] = $db->query_result($label_result, 0, $db->query_result($entityinfo_result, 0, "fieldname")); } else { $label_name[$columnName] =''; } } else { $label_name[$columnName] = $row[$columnName]; } } $row['label'] =''; foreach ($serachcol_arr as $displaylabel) { if ($row['label'] =='') { $row['label'] = $label_name[$displaylabel]; } else { $row['label'] .= ' |'.$label_name[$displaylabel]; } } $row['id'] =$row['crmid']; $matchingRecords[$moduleName][$row['id']] = $recordInstance->setData($row)->setModuleFromInstance($moduleModel); } } //SalesPlatform.ru start Vtiger 7 global search support else { //"search all" is not activated $moduleModels = $leadIdsList = $convertedInfo = array(); $tabid = $db->query_result($searchdata_result, $v, "gstabid"); $searchModule = vtlib_getModuleNameById($tabid); $query = 'SELECT searchlabel, crmid, setype, createdtime FROM berli_globalsearch_data inner join vtiger_crmentity on vtiger_crmentity.crmid = berli_globalsearch_data.gscrmid WHERE searchlabel like ? AND vtiger_crmentity.deleted = 0 and setype=?'; $params = array("%$searchKey%", $searchModule); $result = $db->pquery($query, $params); $noOfRows = $db->num_rows($result); $serachcol_arr = Vtiger_Record_Model::getDisplayLabelsArray($tabid); for($i=0, $recordsCount = 0; $i<$noOfRows && $recordsCount<100; ++$i) { $row = $db->query_result_rowdata($result, $i); if ($row['setype'] == 'Leads') { //exclude converted Leads from search results $leadresult = $db->pquery("SELECT converted FROM vtiger_leaddetails WHERE leadid =? ", array($row['crmid'])); if ($db->query_result($leadresult, 0, 'converted') == 1) { continue; } } if(Users_Privileges_Model::isPermitted($row['setype'], 'DetailView', $row['crmid'])) { $row['id'] = $row['crmid']; $moduleName = $row['setype']; if(!array_key_exists($moduleName, $moduleModels)) { $moduleModels[$moduleName] = Vtiger_Module_Model::getInstance($moduleName); } $moduleModel = $moduleModels[$moduleName]; $modelClassName = Vtiger_Loader::getComponentClassName('Model', 'Record', $moduleName); $recordInstance = new $modelClassName(); $matchingRecords[$moduleName][$row['id']] = $recordInstance->setData($row)->setModuleFromInstance($moduleModel); $recordsCount++; } } } } } else { $moduleId = getTabid($module); $moduleSearchSettings = 'SELECT * FROM berli_globalsearch_settings WHERE gstabid = ?'; $result = $db->pquery($moduleSearchSettings, array($moduleId)); $resultRow = $db->fetchByAssoc($result); if($resultRow != null && $resultRow['turn_off'] == 1 && $resultRow['searchall'] == 1) { $query = Vtiger_Record_Model::dofullmodulesearch($moduleId, $searchKey); return self::getGlobalSearchResult($query, $module); } else { //individual module search $moduleModels = $matchingRecords = $leadIdsList = array(); $query = 'SELECT label, searchlabel, crmid, setype, createdtime, smownerid FROM vtiger_crmentity crm INNER JOIN vtiger_entityname e ON crm.setype = e.modulename INNER JOIN berli_globalsearch_settings gs ON e.tabid = gs.gstabid LEFT JOIN berli_globalsearch_data ON crm.crmid = berli_globalsearch_data.gscrmid WHERE searchlabel LIKE ? AND crm.deleted = 0 and gs.turn_off=1'; $params = array("%$searchKey%"); $query .= ' AND setype = ?'; $params[] = $module; $result = $db->pquery($query, $params); $noOfRows = $db->num_rows($result); for($i=0, $recordsCount = 0; $i<$noOfRows && $recordsCount<100; ++$i) { $row = $db->query_result_rowdata($result, $i); if ($row['setype'] == 'Leads') { //exclude converted Leads from search results $leadresult = $db->pquery("SELECT converted FROM vtiger_leaddetails WHERE leadid =? ", array($row['crmid'])); if ($db->query_result($leadresult, 0, 'converted') == 1) { continue; } } if(Users_Privileges_Model::isPermitted($row['setype'], 'DetailView', $row['crmid'])) { $row['id'] = $row['crmid']; $moduleName = $row['setype']; if(!array_key_exists($moduleName, $moduleModels)) { $moduleModels[$moduleName] = Vtiger_Module_Model::getInstance($moduleName); } $moduleModel = $moduleModels[$moduleName]; $modelClassName = Vtiger_Loader::getComponentClassName('Model', 'Record', $moduleName); $recordInstance = new $modelClassName(); $matchingRecords[$moduleName][$row['id']] = $recordInstance->setData($row)->setModuleFromInstance($moduleModel); $recordsCount++; } } } } return $matchingRecords; } else { //SalesPlatform.ru end $db = PearDatabase::getInstance(); $query = 'SELECT label, crmid, setype, createdtime FROM vtiger_crmentity WHERE label LIKE ? AND vtiger_crmentity.deleted = 0'; $params = array("%$searchKey%"); if($module !== false) { $query .= ' AND setype = ?'; $params[] = $module; } //Remove the ordering for now to improve the speed //$query .= ' ORDER BY createdtime DESC'; $result = $db->pquery($query, $params); $noOfRows = $db->num_rows($result); $moduleModels = $matchingRecords = $leadIdsList = array(); for($i=0; $i<$noOfRows; ++$i) { $row = $db->query_result_rowdata($result, $i); if ($row['setype'] === 'Leads') { $leadIdsList[] = $row['crmid']; } } $convertedInfo = Leads_Module_Model::getConvertedInfo($leadIdsList); for($i=0, $recordsCount = 0; $i<$noOfRows && $recordsCount<100; ++$i) { $row = $db->query_result_rowdata($result, $i); if ($row['setype'] === 'Leads' && $convertedInfo[$row['crmid']]) { continue; } if(Users_Privileges_Model::isPermitted($row['setype'], 'DetailView', $row['crmid'])) { $row['id'] = $row['crmid']; $moduleName = $row['setype']; if(!array_key_exists($moduleName, $moduleModels)) { $moduleModels[$moduleName] = Vtiger_Module_Model::getInstance($moduleName); } $moduleModel = $moduleModels[$moduleName]; $modelClassName = Vtiger_Loader::getComponentClassName('Model', 'Record', $moduleName); $recordInstance = new $modelClassName(); $matchingRecords[$moduleName][$row['id']] = $recordInstance->setData($row)->setModuleFromInstance($moduleModel); $recordsCount++; } } return $matchingRecords; //SalesPlatform.ru begin } } //SalesPlatform.ru end /** * Function to get details for user have the permissions to do actions * @return - true/false */ public function isEditable() { return Users_Privileges_Model::isPermitted($this->getModuleName(), 'EditView', $this->getId()); } /** * Function to get details for user have the permissions to do actions * @return - true/false */ public function isDeletable() { return Users_Privileges_Model::isPermitted($this->getModuleName(), 'Delete', $this->getId()); } /** * Funtion to get Duplicate Record Url * @return */ public function getDuplicateRecordUrl() { $module = $this->getModule(); return 'index.php?module='.$this->getModuleName().'&view='.$module->getEditViewName().'&record='.$this->getId().'&isDuplicate=true'; } //SalesPlatform.ru begin PDF links methods /** * Return link to SendEmail view with template $template. * @param SPPDFTemplates_Record_Model $template * @return String */ public function getSendEmailPDFUrl($template) { return 'module='.$this->getModuleName().'&view=SendEmail&mode=composeMailData&record='.$this->getId().'&templateid='.$template->getId(); } /** * Return Export PDF link. * @param SPPDFTemplates_Record_Model $template * @return String */ public function getExportPDFUrl($template) { return "index.php?module=".$this->getModuleName()."&action=ExportPDF&record=".$this->getId().'&templateid='.$template->getId(); } //SalesPlatform.ru end /** * Function to get Display value for RelatedList * @param $value * @return */ public function getRelatedListDisplayValue($fieldName) { $fieldModel = $this->getModule()->getField($fieldName); return $fieldModel->getRelatedListDisplayValue($this->get($fieldName)); } /** * Function to get Image Details * @return Image Details List */ public function getImageDetails() { global $site_URL; $db = PearDatabase::getInstance(); $imageDetails = array(); $recordId = $this->getId(); if ($recordId) { $sql = "SELECT vtiger_attachments.*, vtiger_crmentity.setype FROM vtiger_attachments INNER JOIN vtiger_seattachmentsrel ON vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_attachments.attachmentsid WHERE vtiger_crmentity.setype = ? and vtiger_seattachmentsrel.crmid = ?"; $result = $db->pquery($sql, array($this->getModuleName().' Image',$recordId)); $imageId = $db->query_result($result, 0, 'attachmentsid'); $imagePath = $db->query_result($result, 0, 'path'); $imageName = $db->query_result($result, 0, 'name'); $url = \Vtiger_Functions::getFilePublicURL($imageId, $imageName); //decode_html - added to handle UTF-8 characters in file names $imageOriginalName = urlencode(decode_html($imageName)); if(!empty($imageName)){ $imageDetails[] = array( 'id' => $imageId, 'orgname' => $imageOriginalName, 'path' => $imagePath.$imageId, 'name' => $imageName, 'url' => $site_URL.$url ); } } return $imageDetails; } /** * Function to delete corresponding image * @param $imageId */ public function deleteImage($imageId) { $db = PearDatabase::getInstance(); $checkResult = $db->pquery('SELECT crmid FROM vtiger_seattachmentsrel WHERE attachmentsid = ?', array($imageId)); $crmId = intval($db->query_result($checkResult, 0, 'crmid')); if (intval($this->getId()) === $crmId) { $db->pquery('DELETE FROM vtiger_seattachmentsrel WHERE crmid = ? AND attachmentsid = ?', array($crmId,$imageId)); $db->pquery('DELETE FROM vtiger_attachments WHERE attachmentsid = ?', array($imageId)); $db->pquery('DELETE FROM vtiger_crmentity WHERE crmid = ?',array($imageId)); return true; } return false; } /** * Function to get Descrption value for this record * @return Descrption */ public function getDescriptionValue() { $description = $this->get('description'); if(empty($description)) { $db = PearDatabase::getInstance(); $result = $db->pquery("SELECT description FROM vtiger_crmentity WHERE crmid = ?", array($this->getId())); $description = $db->query_result($result, 0, "description"); } return $description; } /** * Function to transfer related records of parent records to this record * @param $recordIds * @return true/false */ public function transferRelationInfoOfRecords($recordIds = array()) { if ($recordIds) { $moduleName = $this->getModuleName(); $focus = CRMEntity::getInstance($moduleName); if (method_exists($focus, 'transferRelatedRecords')) { $focus->transferRelatedRecords($moduleName, $recordIds, $this->getId()); } } return true; } /** * Function to get the url for getting the related Popup contents * @return */ function getParentPopupContentsUrl() { return 'index.php?module='.$this->getModuleName().'&mode=getRelatedRecordInfo&action=RelationAjax&id=' . $this->getId(); } /** * Function to get the record models from set of record ids and moudlename. * This api will be used in cases(eg: Import) where we need to create * record models from set of ids. Normally we use self::getInstaceById($recordId), * but it is a performance hit for set of records. * @param $recordIds * @param $moduleName * @return $records */ public static function getInstancesFromIds($recordIds, $moduleName) { $records = array(); $module = Vtiger_Module_Model::getInstance($moduleName); $adb = PearDatabase::getInstance(); $user = Users_Record_Model::getCurrentUserModel(); $queryGenerator = new QueryGenerator($module->getName(), $user); $meta = $queryGenerator->getMeta($module->getName()); $moduleFieldNames = $meta->getModuleFields(); $inventoryModules = getInventoryModules(); if (in_array($module, $inventoryModules)) { $fields = vtws_describe('LineItem', $user); foreach ($fields['fields'] as $field) { unset($moduleFieldNames[$field['name']]); } foreach ($moduleFieldNames as $field => $fieldObj) { if (substr($field, 0, 5) == 'shtax') { unset($moduleFieldNames[$field]); } } } $fieldArray = array_keys($moduleFieldNames); $fieldArray[] = 'id'; $queryGenerator->setFields($fieldArray); //getting updated meta after setting the fields $meta = $queryGenerator->getMeta($module->getName()); $query = $queryGenerator->getQuery(); $baseTable = $meta->getEntityBaseTable(); $moduleTableIndexList = $meta->getEntityTableIndexList(); $baseTableIndex = $moduleTableIndexList[$baseTable]; if($moduleName == 'Users') { $query .= ' AND vtiger_users.id IN (' . generateQuestionMarks($recordIds) . ')'; } else{ $query .= ' AND vtiger_crmentity.crmid IN (' . generateQuestionMarks($recordIds) . ')'; } $result = $adb->pquery($query, array($recordIds)); if ($result) { while ($row = $adb->fetchByAssoc($result)) { $newRow = array(); $fieldColumnMapping = $meta->getFieldColumnMapping(); $columnFieldMapping = array_flip($fieldColumnMapping); foreach ($row as $col => $val) { if (array_key_exists($col, $columnFieldMapping)) $newRow[$columnFieldMapping[$col]] = decode_html($val); } $newRow['id'] = $row[$baseTableIndex]; $record = self::getCleanInstance($meta->getEntityName()); $record->setData($newRow); //Updating entity details $entity = $record->getEntity(); $entity->column_fields = $record->getData(); $entity->id = $record->getId(); $record->setEntity($entity); $records[$record->getId()] = $record; } } $result = null; return $records; } public function getFileDetails($attachmentId = false) { $db = PearDatabase::getInstance(); $fileDetails = array(); $query = "SELECT * FROM vtiger_attachments INNER JOIN vtiger_seattachmentsrel ON vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid WHERE crmid = ? "; $params = array($this->get('id')); if($attachmentId) { $query .= 'AND vtiger_attachments.attachmentsid = ?'; $params[] = $attachmentId; } $result = $db->pquery($query, $params); while($row = $db->fetch_array($result)){ if(!empty($row)){ $fileDetails[] = $row; } } return $fileDetails; } public function downloadFile($attachmentId = false) { $attachments = $this->getFileDetails($attachmentId); if(is_array($attachments[0])) { $fileDetails = $attachments[0]; } else { $fileDetails = $attachments; } $fileContent = false; if (!empty ($fileDetails)) { $filePath = $fileDetails['path']; $fileName = $fileDetails['name']; $storedFileName = $fileDetails['storedname']; $fileName = html_entity_decode($fileName, ENT_QUOTES, vglobal('default_charset')); if (!empty($fileName)) { if(!empty($storedFileName)){ $savedFile = $fileDetails['attachmentsid']."_".$storedFileName; }else if(is_null($storedFileName)){ $savedFile = $fileDetails['attachmentsid']."_".$fileName; } $fileSize = filesize($filePath.$savedFile); $fileSize = $fileSize + ($fileSize % 1024); if (fopen($filePath.$savedFile, "r")) { $fileContent = fread(fopen($filePath.$savedFile, "r"), $fileSize); header("Content-type: ".$fileDetails['type']); header("Pragma: public"); header("Cache-Control: private"); header("Content-Disposition: attachment; filename=\"$fileName\""); header("Content-Description: PHP Generated Data"); header("Content-Encoding: none"); } } } echo $fileContent; } public function getTitle($fieldInstance) { $fieldName = $fieldInstance->get('listViewRawFieldName'); $fieldValue = $this->get($fieldName); $rawData = $this->getRawData(); $rawValue = $rawData[$fieldName]; if ($fieldInstance) { $dataType = $fieldInstance->getFieldDataType(); $uiType = $fieldInstance->get('uitype'); $nonRawValueDataTypes = array('date', 'datetime', 'time', 'currency', 'boolean', 'owner'); $nonRawValueUITypes = array(117); if (in_array($dataType, $nonRawValueDataTypes) || in_array($uiType, $nonRawValueUITypes)) { return $fieldValue; } if (in_array($dataType, array('reference', 'multireference'))) { $recordName = Vtiger_Util_Helper::getRecordName($rawValue); if ($recordName) { return $recordName; } else { return ''; } } if($dataType == 'multipicklist') { $rawValue = $fieldInstance->getDisplayValue($rawValue); } } return $rawValue; } function getRollupCommentsForModule($startIndex = 0, $pageLimit = 10) { $rollupComments = array(); $modulename = $this->getModuleName(); $recordId = $this->getId(); $relatedModuleRecordIds = $this->getCommentEnabledRelatedEntityIds($modulename, $recordId); array_unshift($relatedModuleRecordIds, $recordId); if ($relatedModuleRecordIds) { $listView = Vtiger_ListView_Model::getInstance('ModComments'); $queryGenerator = $listView->get('query_generator'); $queryGenerator->setFields(array('parent_comments', 'createdtime', 'modifiedtime', 'related_to', 'assigned_user_id', 'channel', 'commentcontent', 'creator', 'id', 'customer', 'reasontoedit', 'userid', 'from_mailconverter', 'is_private', 'customer_email')); $query = $queryGenerator->getQuery(); $query .= " AND vtiger_modcomments.related_to IN (" . generateQuestionMarks($relatedModuleRecordIds) . ") AND vtiger_modcomments.parent_comments=0 ORDER BY vtiger_crmentity.createdtime DESC LIMIT " . " $startIndex,$pageLimit"; $db = PearDatabase::getInstance(); $result = $db->pquery($query, $relatedModuleRecordIds); if ($db->num_fields($result)) { for ($i = 0; $i < $db->num_rows($result); $i++) { $rowdata = $db->query_result_rowdata($result, $i); $recordInstance = new ModComments_Record_Model(); $rowdata['module'] = getSalesEntityType($rowdata['related_to']); $recordInstance->setData($rowdata); $rollupComments[] = $recordInstance; } } } return $rollupComments; } function getCommentEnabledRelatedEntityIds($modulename, $recordId) { $user = Users_Record_Model::getCurrentUserModel(); $relatedModuleRecordIds = array(); $restrictedFieldnames = array('modifiedby', 'created_user_id', 'assigned_user_id'); $recordModel = Vtiger_Record_Model::getInstanceById($recordId, $modulename); $moduleInstance = Vtiger_Module_Model::getInstance($modulename); $referenceFieldsModels = $moduleInstance->getFieldsByType('reference'); $userPrevilegesModel = Users_Privileges_Model::getInstanceById($user->id); $directrelatedModuleRecordIds = array(); foreach ($referenceFieldsModels as $referenceFieldsModel) { $relmoduleFieldname = $referenceFieldsModel->get('name'); $relModuleFieldValue = $recordModel->get($relmoduleFieldname); if (!empty($relModuleFieldValue) && !in_array($relmoduleFieldname, $restrictedFieldnames) && isRecordExists($relModuleFieldValue)) { $relModuleRecordModel = Vtiger_Record_Model::getInstanceById($relModuleFieldValue); $relmodule = $relModuleRecordModel->getModuleName(); $relatedmoduleModel = Vtiger_Module_Model::getInstance($relmodule); $isCommentEnabled = $relatedmoduleModel->isCommentEnabled(); if ($isCommentEnabled) { $tabid = getTabid($relmodule); $modulePermission = $userPrevilegesModel->hasModulePermission($tabid); $hasDetailViewPermission = Users_Privileges_Model::isPermitted($relmodule, 'DetailView', $relModuleFieldValue); if ($modulePermission && $hasDetailViewPermission) $directrelatedModuleRecordIds[] = $relModuleFieldValue; } } } $moduleModel = Vtiger_Module_Model::getInstance($modulename); $relatedModuleModels = Vtiger_Relation_Model::getAllRelations($moduleModel, false); $commentEnabledModules = array(); foreach ($relatedModuleModels as $relatedModuleModel) { $relatedModuleName = $relatedModuleModel->get('relatedModuleName'); $relatedmoduleModel = Vtiger_Module_Model::getInstance($relatedModuleName); $isCommentEnabled = $relatedmoduleModel->isCommentEnabled(); if ($isCommentEnabled) { $tabid = getTabid($relatedModuleName); $modulePermission = $userPrevilegesModel->hasModulePermission($tabid); if ($modulePermission) $commentEnabledModules['related_modules'][] = $relatedModuleModel->get('relation_id'); } } //To get all the record ids for all the modules that are shown in related tab $indirectrelatedModuleRecordIds = $moduleModel->getRelatedModuleRecordIds(new Vtiger_Request($commentEnabledModules), array($recordId), true); return array_merge($relatedModuleRecordIds, $directrelatedModuleRecordIds, $indirectrelatedModuleRecordIds); } //SalesPlatform.ru begin /** * Print record PDF template * @param int $templateId */ public function getSalesPlatformPDF($templateId) { $recordId = $this->getId(); $moduleName = $this->getModuleName(); $controllerClassName = "SalesPlatform_". $moduleName ."PDFController"; $controller = new $controllerClassName($moduleName, $templateId); $controller->loadRecord($recordId); $sequenceNo = getModuleSequenceNumber($moduleName,$recordId); $fileName = $moduleName.'_'.$this->transliterate($sequenceNo); $controller->Output($fileName.'.pdf', 'D'); } /** * Function to get the pdf file name. This will conver save file in storage. * @param int $templateId * @return string */ public function getSalesPlatformPDFFileName($templateId) { global $root_directory; $moduleName = $this->getModuleName(); $recordId = $this->getId(); vimport("~~/modules/$moduleName/$moduleName" . "PDFController.php"); //import controller $controllerClassName = "SalesPlatform_" . $moduleName . "PDFController"; $controller = new $controllerClassName($moduleName, $templateId); $controller->loadRecord($recordId); $sequenceNo = getModuleSequenceNumber($moduleName,$recordId); $translatedName = vtranslate($moduleName, $moduleName); $filePath = $root_directory."/storage/$translatedName"."_".$sequenceNo.".pdf"; $controller->Output($filePath,'F'); return $filePath; } /** * Rus 2 translit * @param $string * @return string */ private function transliterate($string) { $converter = array( 'а' => 'a', 'б' => 'b', 'в' => 'v', 'г' => 'g', 'д' => 'd', 'е' => 'e', 'ё' => 'e', 'ж' => 'zh', 'з' => 'z', 'и' => 'i', 'й' => 'y', 'к' => 'k', 'л' => 'l', 'м' => 'm', 'н' => 'n', 'о' => 'o', 'п' => 'p', 'р' => 'r', 'с' => 's', 'т' => 't', 'у' => 'u', 'ф' => 'f', 'х' => 'h', 'ц' => 'c', 'ч' => 'ch', 'ш' => 'sh', 'щ' => 'sch', 'ь' => '\'', 'ы' => 'y', 'ъ' => '\'', 'э' => 'e', 'ю' => 'yu', 'я' => 'ya', 'А' => 'A', 'Б' => 'B', 'В' => 'V', 'Г' => 'G', 'Д' => 'D', 'Е' => 'E', 'Ё' => 'E', 'Ж' => 'Zh', 'З' => 'Z', 'И' => 'I', 'Й' => 'Y', 'К' => 'K', 'Л' => 'L', 'М' => 'M', 'Н' => 'N', 'О' => 'O', 'П' => 'P', 'Р' => 'R', 'С' => 'S', 'Т' => 'T', 'У' => 'U', 'Ф' => 'F', 'Х' => 'H', 'Ц' => 'C', 'Ч' => 'Ch', 'Ш' => 'Sh', 'Щ' => 'Sch', 'Ь' => '\'', 'Ы' => 'Y', 'Ъ' => '\'', 'Э' => 'E', 'Ю' => 'Yu', 'Я' => 'Ya', ); return strtr($string, $converter); } //SalesPlatform.ru end //SalesPlatform.ru begin DetailViewLink insertion public static function isEntityDeleted($id) { $adaptedId = (int) $id; if($adaptedId <= 0) { return true; } $db = PearDatabase::getInstance(); $result = $db->pquery("SELECT deleted FROM vtiger_crmentity WHERE crmid=?", array($adaptedId)); $resultRow = $db->fetchByAssoc($result); return ($resultRow == null || $resultRow['deleted'] == 1); } //SalesPlatform.ru end DetailViewLink insertion }