]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Prospects/Prospect.php
Release 6.5.10
[Github/sugarcrm.git] / modules / Prospects / Prospect.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38 /*********************************************************************************
39
40  * Description:  TODO: To be written.
41  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
42  * All Rights Reserved.
43  * Contributor(s): ______________________________________..
44  ********************************************************************************/
45
46 require_once('include/SugarObjects/templates/person/Person.php');
47
48 class Prospect extends Person {
49     var $field_name_map;
50         // Stored fields
51         var $id;
52         var $name = '';
53         var $date_entered;
54         var $date_modified;
55         var $modified_user_id;
56         var $assigned_user_id;
57         var $created_by;
58         var $created_by_name;
59         var $modified_by_name;
60         var $description;
61         var $salutation;
62         var $first_name;
63         var $last_name;
64         var $full_name;
65         var $title;
66         var $department;
67         var $birthdate;
68         var $do_not_call;
69         var $phone_home;
70         var $phone_mobile;
71         var $phone_work;
72         var $phone_other;
73         var $phone_fax;
74         var $email1;
75         var $email2;
76         var $email_and_name1;
77         var $assistant;
78         var $assistant_phone;
79         var $email_opt_out;
80         var $primary_address_street;
81         var $primary_address_city;
82         var $primary_address_state;
83         var $primary_address_postalcode;
84         var $primary_address_country;
85         var $alt_address_street;
86         var $alt_address_city;
87         var $alt_address_state;
88         var $alt_address_postalcode;
89         var $alt_address_country;
90         var $tracker_key;
91         var $lead_id;
92         var $account_name;
93         var $assigned_real_user_name;
94         // These are for related fields
95         var $assigned_user_name;
96         var $module_dir = 'Prospects';
97         var $table_name = "prospects";
98         var $object_name = "Prospect";
99         var $new_schema = true;
100         var $emailAddress;
101
102         var $importable = true;
103     // This is used to retrieve related fields from form posts.
104         var $additional_column_fields = Array('assigned_user_name');
105
106
107         function Prospect() {
108                 parent::Person();
109         }
110
111     function create_export_query(&$order_by, &$where, $relate_link_join='')
112     {
113         $custom_join = $this->getCustomJoin(true, true, $where);
114         $custom_join['join'] .= $relate_link_join;
115                          $query = "SELECT
116                                 prospects.*,email_addresses.email_address email_address,
117                                 users.user_name as assigned_user_name ";
118         $query .= $custom_join['select'];
119                                                  $query .= " FROM prospects ";
120                          $query .= "LEFT JOIN users
121                                         ON prospects.assigned_user_id=users.id ";
122
123                                                 //join email address table too.
124                                                 $query .=  ' LEFT JOIN  email_addr_bean_rel on prospects.id = email_addr_bean_rel.bean_id and email_addr_bean_rel.bean_module=\'Prospects\' and email_addr_bean_rel.primary_address=1 and email_addr_bean_rel.deleted=0';
125                                                 $query .=  ' LEFT JOIN email_addresses on email_addresses.id = email_addr_bean_rel.email_address_id ' ;
126
127         $query .= $custom_join['join'];
128
129                 $where_auto = " prospects.deleted=0 ";
130
131                 if($where != "")
132                         $query .= "where ($where) AND ".$where_auto;
133                 else
134                         $query .= "where ".$where_auto;
135
136                 if(!empty($order_by))
137                         $query .= " ORDER BY $order_by";
138
139                 return $query;
140         }
141
142
143         function fill_in_additional_list_fields()
144         {
145                 parent::fill_in_additional_list_fields();
146                 $this->_create_proper_name_field();
147                 $this->email_and_name1 = $this->full_name." &lt;".$this->email1."&gt;";
148         }
149
150         function fill_in_additional_detail_fields()
151         {
152                 parent::fill_in_additional_list_fields();
153                 $this->_create_proper_name_field();
154         }
155
156         function get_list_view_data() {
157                 global $current_user;
158                 $this->_create_proper_name_field();
159                 $temp_array = $this->get_list_view_array();
160                 $temp_array["ENCODED_NAME"] = $this->full_name;
161                 $temp_array["FULL_NAME"] = $this->full_name;
162                 $temp_array["EMAIL1"] = $this->emailAddress->getPrimaryAddress($this);
163                 $this->email1 = $temp_array['EMAIL1'];
164                 $temp_array["EMAIL1_LINK"] = $current_user->getEmailLink('email1', $this, '', '', 'ListView');
165
166         return $temp_array;
167         }
168
169         /**
170                 builds a generic search based on the query string using or
171                 do not include any $this-> because this is called on without having the class instantiated
172         */
173         function build_generic_where_clause ($the_query_string)
174         {
175                 $where_clauses = Array();
176                 $the_query_string = $GLOBALS['db']->quote($the_query_string);
177
178                 array_push($where_clauses, "prospects.last_name like '$the_query_string%'");
179                 array_push($where_clauses, "prospects.first_name like '$the_query_string%'");
180                 array_push($where_clauses, "prospects.assistant like '$the_query_string%'");
181
182                 if (is_numeric($the_query_string))
183                 {
184                         array_push($where_clauses, "prospects.phone_home like '%$the_query_string%'");
185                         array_push($where_clauses, "prospects.phone_mobile like '%$the_query_string%'");
186                         array_push($where_clauses, "prospects.phone_work like '%$the_query_string%'");
187                         array_push($where_clauses, "prospects.phone_other like '%$the_query_string%'");
188                         array_push($where_clauses, "prospects.phone_fax like '%$the_query_string%'");
189                         array_push($where_clauses, "prospects.assistant_phone like '%$the_query_string%'");
190                 }
191
192                 $the_where = "";
193                 foreach($where_clauses as $clause)
194                 {
195                         if($the_where != "") $the_where .= " or ";
196                         $the_where .= $clause;
197                 }
198
199
200                 return $the_where;
201         }
202
203     function converted_prospect($prospectid, $contactid, $accountid, $opportunityid){
204         $query = "UPDATE prospects set  contact_id=$contactid, account_id=$accountid, opportunity_id=$opportunityid where  id=$prospectid and deleted=0";
205                 $this->db->query($query,true,"Error converting prospect: ");
206                 //todo--status='Converted', converted='1',
207     }
208      function bean_implements($interface){
209                 switch($interface){
210                         case 'ACL':return true;
211                 }
212                 return false;
213         }
214
215     /**
216      *  This method will be used by Mail Merge in order to retieve the targets as specified in the query
217      *  @param query String - this is the query which contains the where clause for the query
218      */
219     function retrieveTargetList($query, $fields, $offset = 0, $limit= -99, $max = -99, $deleted = 0, $module = ''){
220         global  $beanList, $beanFiles;
221         $module_name = $this->module_dir;
222
223         if(empty($module))
224         {
225             //The call to retrieveTargetList contains a query that may contain a pound token
226             $pattern = '/AND related_type = [\'#]([a-zA-Z]+)[\'#]/i';
227             if(preg_match($pattern, $query, $matches))
228             {
229                 $module_name = $matches[1];
230                 $query = preg_replace($pattern, "", $query);
231             }
232         }
233
234         $count = count($fields);
235         $index = 1;
236         $sel_fields = "";
237         if(!empty($fields))
238         {
239             foreach($fields as $field){
240                 if($field == 'id'){
241                         $sel_fields .= 'prospect_lists_prospects.id id';
242                 }else{
243                         $sel_fields .= strtolower($module_name).".".$field;
244                 }
245                 if($index < $count){
246                     $sel_fields .= ",";
247                 }
248                 $index++;
249             }
250         }
251
252         $module_name = ucfirst($module_name);
253         $class_name = $beanList[$module_name];
254         require_once($beanFiles[$class_name]);
255         $seed = new $class_name();
256         if(empty($sel_fields)){
257             $sel_fields = $seed->table_name.'.*';
258         }
259         $select = "SELECT ".$sel_fields." FROM ".$seed->table_name;
260         $select .= " INNER JOIN prospect_lists_prospects ON prospect_lists_prospects.related_id = ".$seed->table_name.".id";
261         $select .= " INNER JOIN prospect_lists ON prospect_lists_prospects.prospect_list_id = prospect_lists.id";
262         $select .= " INNER JOIN prospect_list_campaigns ON prospect_list_campaigns.prospect_list_id = prospect_lists.id";
263         $select .= " INNER JOIN campaigns on campaigns.id = prospect_list_campaigns.campaign_id";
264         $select .= " WHERE prospect_list_campaigns.deleted = 0";
265         $select .= " AND prospect_lists_prospects.deleted = 0";
266         $select .= " AND prospect_lists.deleted = 0";
267         if (!empty($query)) {
268             $select .= " AND ".$query;
269         }
270
271         return $this->process_list_query($select, $offset, $limit, $max, $query);
272     }
273
274     /**
275      *  Given an id, looks up in the prospect_lists_prospects table
276      *  and retrieve the correct type for this id
277      */
278     function retrieveTarget($id){
279         $query = "SELECT related_id, related_type FROM prospect_lists_prospects WHERE id = '".$this->db->quote($id)."'";
280         $result = $this->db->query($query);
281         if(($row = $this->db->fetchByAssoc($result))){
282              global  $beanList, $beanFiles;
283              $module_name = $row['related_type'];
284              $class_name = $beanList[$module_name];
285              require_once($beanFiles[$class_name]);
286              $seed = new $class_name();
287              return $seed->retrieve($row['related_id']);
288         }else{
289             return null;
290         }
291     }
292
293
294         function get_unlinked_email_query($type=array()) {
295
296                 return get_unlinked_email_query($type, $this);
297         }
298 }