Posts Tagged ‘销售自动化系统’

销售点滴

1,电话的目的不是销售产品,而且创造见面的机会

2,照顾顾客的需要,而不是自己的需要—发掘客户需求

3,视频会议分享销售经验

4,多注册几个网号,起几个网名—不要轻易修改网名–招牌

5,随时记录

6,如何应对戒备心理—-FAQ

请留评论

vtiger CustomView module is not active error

The error message: CustomView module is not active!

condition:use the vtlib module

Resolution:

Replaced the following method.

function vtlib_isModuleActive($module) {
 global $adb;
 
 if(in_array($module, vtlib_moduleAlwaysActive())){
  return true;
 }
 
 $tabres = $adb->query(”SELECT presence FROM vtiger_tab WHERE name=’$module’”);
 
     
 $active = false;
 if($adb->num_rows($tabres)) {
  $presence = $adb->query_result($tabres, 0, ‘presence’);  
  if($presence != 1) $active = true;
 }else{ 
  $active = true;
 }
 return $active;
}
如果你还不清楚,请给我留言或者联系奥斯软件

请留评论