You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							692 lines
						
					
					
						
							31 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							692 lines
						
					
					
						
							31 KiB
						
					
					
				
								<?php
							 | 
						|
								/*********************************************************************************
							 | 
						|
								 * The contents of this file are subject to the SugarCRM Public License Version 1.1.2
							 | 
						|
								 * ("License"); You may not use this file except in compliance with the
							 | 
						|
								 * License. You may obtain a copy of the License at http://www.sugarcrm.com/SPL
							 | 
						|
								 * Software distributed under the License is distributed on an  "AS IS"  basis,
							 | 
						|
								 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
							 | 
						|
								 * the specific language governing rights and limitations under the License.
							 | 
						|
								 * The Original Code is:  SugarCRM Open Source
							 | 
						|
								 * The Initial Developer of the Original Code is SugarCRM, Inc.
							 | 
						|
								 * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.;
							 | 
						|
								 * All Rights Reserved.
							 | 
						|
								 * Contributor(s): ______________________________________.
							 | 
						|
								 ********************************************************************************/
							 | 
						|
								/*********************************************************************************
							 | 
						|
								 * $Header: /advent/projects/wesat/vtiger_crm/sugarcrm/modules/Accounts/Account.php,v 1.53 2005/04/28 08:06:45 rank Exp $
							 | 
						|
								 * Description:  Defines the Account SugarBean Account entity with the necessary
							 | 
						|
								 * methods and variables.
							 | 
						|
								 * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
							 | 
						|
								 * All Rights Reserved.
							 | 
						|
								 * Contributor(s): ______________________________________..
							 | 
						|
								 ********************************************************************************/
							 | 
						|
								
							 | 
						|
								include_once('config.php');
							 | 
						|
								require_once('include/logging.php');
							 | 
						|
								require_once('include/database/PearDatabase.php');
							 | 
						|
								require_once('data/SugarBean.php');
							 | 
						|
								require_once('data/CRMEntity.php');
							 | 
						|
								require_once('modules/Contacts/Contact.php');
							 | 
						|
								require_once('modules/Potentials/Opportunity.php');
							 | 
						|
								require_once('modules/Activities/Activity.php');
							 | 
						|
								require_once('modules/Notes/Note.php');
							 | 
						|
								require_once('modules/Emails/Email.php');
							 | 
						|
								require_once('include/utils.php');
							 | 
						|
								
							 | 
						|
								// Account is used to store account information.
							 | 
						|
								class Account extends CRMEntity {
							 | 
						|
									var $log;
							 | 
						|
									var $db;
							 | 
						|
								
							 | 
						|
								
							 | 
						|
									// Stored fields
							 | 
						|
									var $id;
							 | 
						|
									var $mode;
							 | 
						|
									
							 | 
						|
									// These are for related fields
							 | 
						|
									var $opportunity_id;
							 | 
						|
									var $case_id;
							 | 
						|
									var $contact_id;
							 | 
						|
									var $task_id;
							 | 
						|
									var $note_id;
							 | 
						|
									var $meeting_id;
							 | 
						|
									var $call_id;
							 | 
						|
									var $email_id;
							 | 
						|
									var $member_id;
							 | 
						|
									var $parent_name;
							 | 
						|
									var $assigned_user_name;
							 | 
						|
									
							 | 
						|
									var $table_name = "account";
							 | 
						|
									var $tab_name = Array('crmentity','account','accountbillads','accountshipads','accountscf');
							 | 
						|
									var $tab_name_index = Array('crmentity'=>'crmid','account'=>'accountid','accountbillads'=>'accountaddressid','accountshipads'=>'accountaddressid','accountscf'=>'accountid');
							 | 
						|
												
							 | 
						|
									
							 | 
						|
									var $entity_table = "crmentity";
							 | 
						|
									
							 | 
						|
									var $billadr_table = "accountbillads";
							 | 
						|
								
							 | 
						|
									var $object_name = "Account";
							 | 
						|
								
							 | 
						|
									var $new_schema = true;
							 | 
						|
									
							 | 
						|
									var $module_id = "accountid";
							 | 
						|
								
							 | 
						|
									var $column_fields = Array();
							 | 
						|
								
							 | 
						|
									var $sortby_fields = Array('accountname','city','website','phone');		
							 | 
						|
								
							 | 
						|
									// This is used to retrieve related fields from form posts.
							 | 
						|
									var $additional_column_fields = Array('assigned_user_name', 'smownerid', 'opportunity_id', 'case_id', 'contact_id', 'task_id', 'note_id', 'meeting_id', 'call_id', 'email_id', 'parent_name', 'member_id' );
							 | 
						|
								
							 | 
						|
									// This is the list of fields that are in the lists.
							 | 
						|
									var $list_fields = Array(
							 | 
						|
												'Account Name'=>Array('account'=>'accountname'),
							 | 
						|
												'City'=>Array('accountbillads'=>'city'), 
							 | 
						|
												'Website'=>Array('account'=>'website'),
							 | 
						|
												'Phone'=>Array('account'=> 'phone'),
							 | 
						|
												'Assigned To'=>Array('crmentity'=>'smownerid')
							 | 
						|
												);
							 | 
						|
									
							 | 
						|
									var $list_fields_name = Array(
							 | 
						|
												        'Account Name'=>'accountname',
							 | 
						|
												        'City'=>'bill_city',
							 | 
						|
												        'Website'=>'website',
							 | 
						|
													'Phone'=>'phone',
							 | 
						|
												        'Assigned To'=>'assigned_user_id'
							 | 
						|
												      );
							 | 
						|
									var $list_link_field= 'accountname';
							 | 
						|
								
							 | 
						|
									var $record_id;
							 | 
						|
									var $list_mode;
							 | 
						|
								        var $popup_type;
							 | 
						|
								
							 | 
						|
									var $search_fields = Array(
							 | 
						|
												'Account Name'=>Array('account'=>'accountname'),
							 | 
						|
												'City'=>Array('accountbillads'=>'city'), 
							 | 
						|
												);
							 | 
						|
									
							 | 
						|
									var $search_fields_name = Array(
							 | 
						|
												        'Account Name'=>'accountname',
							 | 
						|
												        'City'=>'bill_city',
							 | 
						|
												      );
							 | 
						|
								
							 | 
						|
									// This is the list of fields that are required.
							 | 
						|
									var $required_fields =  array("accountname"=>1);
							 | 
						|
								
							 | 
						|
									function Account() {
							 | 
						|
										$this->log =LoggerManager::getLogger('account');
							 | 
						|
										$this->db = new PearDatabase();
							 | 
						|
										$this->column_fields = getColumnFields('Accounts');
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function create_tables () {
							 | 
						|
								          /*
							 | 
						|
										$query = 'CREATE TABLE '.$this->table_name.' ( ';
							 | 
						|
										$query .='id char(36) NOT NULL';
							 | 
						|
										$query .=', date_entered datetime NOT NULL';
							 | 
						|
										$query .=', date_modified datetime NOT NULL';
							 | 
						|
										$query .=', modified_user_id char(36) NOT NULL';
							 | 
						|
										$query .=', assigned_user_id char(36)';
							 | 
						|
										$query .=', name char(150)';
							 | 
						|
										$query .=', parent_id char(36)';
							 | 
						|
										$query .=', account_type char(25)';
							 | 
						|
										$query .=', industry char(25)';
							 | 
						|
										$query .=', annual_revenue char(25)';
							 | 
						|
										$query .=', phone_fax char(25)';
							 | 
						|
										$query .=', billing_address_street char(150)';
							 | 
						|
										$query .=', billing_address_city char(100)';
							 | 
						|
										$query .=', billing_address_state char(100)';
							 | 
						|
										$query .=', billing_address_postalcode char(20)';
							 | 
						|
										$query .=', billing_address_country char(100)';
							 | 
						|
										$query .=', description text';
							 | 
						|
										$query .=', rating char(25)';
							 | 
						|
										$query .=', phone_office char(25)';
							 | 
						|
										$query .=', phone_alternate char(25)';
							 | 
						|
										$query .=', email1 char(100)';
							 | 
						|
										$query .=', email2 char(100)';
							 | 
						|
										$query .=', website char(255)';
							 | 
						|
										$query .=', ownership char(100)';
							 | 
						|
										$query .=', employees char(10)';
							 | 
						|
										$query .=', sic_code char(10)';
							 | 
						|
										$query .=', ticker_symbol char(10)';
							 | 
						|
										$query .=', shipping_address_street char(150)';
							 | 
						|
										$query .=', shipping_address_city char(100)';
							 | 
						|
										$query .=', shipping_address_state char(100)';
							 | 
						|
										$query .=', shipping_address_postalcode char(20)';
							 | 
						|
										$query .=', shipping_address_country char(100)';
							 | 
						|
										$query .=', deleted bool NOT NULL default 0';
							 | 
						|
										$query .=', PRIMARY KEY ( id ) )';
							 | 
						|
								
							 | 
						|
										
							 | 
						|
								
							 | 
						|
										$this->db->query($query);
							 | 
						|
									//TODO Clint 4/27 - add exception handling logic here if the table can't be created.
							 | 
						|
								        */
							 | 
						|
								
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function drop_tables () {
							 | 
						|
								          /*
							 | 
						|
										$query = 'DROP TABLE IF EXISTS '.$this->table_name;
							 | 
						|
								
							 | 
						|
										
							 | 
						|
								
							 | 
						|
										$this->db->query($query);
							 | 
						|
								
							 | 
						|
									//TODO Clint 4/27 - add exception handling logic here if the table can't be dropped.
							 | 
						|
								        */
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function get_summary_text()
							 | 
						|
									{
							 | 
						|
										return $this->name;
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									/** Returns a list of the associated accounts who are member orgs
							 | 
						|
									 * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc..
							 | 
						|
									 * All Rights Reserved..
							 | 
						|
									 * Contributor(s): ______________________________________..
							 | 
						|
									*/
							 | 
						|
									function get_member_accounts()
							 | 
						|
									{
							 | 
						|
										// First, get the list of IDs.
							 | 
						|
								          //$query = "SELECT a1.id from accounts as a1, accounts as a2 where a2.id=a1.parent_id AND a2.id='$this->id' AND a1.deleted=0";
							 | 
						|
								             	$query = "SELECT a1.id from account a1, accounts  a2 where a2.id=a1.parent_id AND a2.id='$this->id' AND a1.deleted=0";
							 | 
						|
								
							 | 
						|
										return $this->build_related_list($query, new Account());
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									/** Returns a list of the associated contacts
							 | 
						|
									 * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc..
							 | 
						|
									 * All Rights Reserved..
							 | 
						|
									 * Contributor(s): ______________________________________..
							 | 
						|
									*/
							 | 
						|
									function get_contacts($id)
							 | 
						|
									{
							 | 
						|
										$query = 'SELECT contactdetails.*, crmentity.crmid, crmentity.smownerid from contactdetails inner join crmentity on crmentity.crmid = contactdetails.contactid  where crmentity.deleted=0 and contactdetails.accountid = '.$id;
							 | 
						|
								          renderRelatedContacts($query,$id);
							 | 
						|
								        }
							 | 
						|
								
							 | 
						|
									/** Returns a list of the associated opportunities
							 | 
						|
									 * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc..
							 | 
						|
									 * All Rights Reserved..
							 | 
						|
									 * Contributor(s): ______________________________________..
							 | 
						|
									*/
							 | 
						|
								  function get_opportunities($id)
							 | 
						|
								  {
							 | 
						|
								//	$query = "select products.productid, products.productname, products.productcode, potential.potentialid, potential.accountid, potential.potentialname, potential.amount, potential.closingdate, potential.potentialtype, crmentity.crmid from products,potential inner join seproductsrel on seproductsrel.crmid = potential.accountid and seproductsrel.productid=products.productid inner join crmentity on crmentity.crmid=potential.potentialid";
							 | 
						|
									$query = 'select potential.potentialid, potential.accountid, potential.potentialname, potential.sales_stage, potential.potentialtype, potential.amount, potential.closingdate, potential.potentialtype, users.user_name, crmentity.crmid, crmentity.smownerid from potential inner join crmentity on crmentity.crmid= potential.potentialid left join users on crmentity.smownerid = users.id where crmentity.deleted=0 and potential.accountid= '.$id ;
							 | 
						|
								    //include('modules/Accounts/RenderRelatedListUI.php');
							 | 
						|
								    renderRelatedPotentials($query,$id);
							 | 
						|
								    // return $this->build_related_list($query, new potential());
							 | 
						|
								  }
							 | 
						|
								
							 | 
						|
									/** Returns a list of the associated tasks
							 | 
						|
									 * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc..
							 | 
						|
									 * All Rights Reserved..
							 | 
						|
									 * Contributor(s): ______________________________________..
							 | 
						|
									*/
							 | 
						|
									function get_activities($id)
							 | 
						|
									{
							 | 
						|
								          // First, get the list of IDs.
							 | 
						|
								//          $query = "SELECT activity.subject,semodule,activitytype,date_start,status,priority from activity inner join seactivityrel on seactivityrel.activityid=activity.activityid where seactivityrel.crmid=".$id;
							 | 
						|
									  $query = "SELECT activity.*,seactivityrel.*, contactdetails.contactid,contactdetails.lastname, contactdetails.firstname, crmentity.crmid, crmentity.smownerid, crmentity.modifiedtime, users.user_name,recurringevents.recurringtype from activity inner join seactivityrel on seactivityrel.activityid=activity.activityid inner join crmentity on crmentity.crmid=activity.activityid left join cntactivityrel on cntactivityrel.activityid= activity.activityid left join contactdetails on contactdetails.contactid= cntactivityrel.contactid left join users on users.id=crmentity.smownerid left outer join recurringevents on recurringevents.activityid=activity.activityid where seactivityrel.crmid=".$id." and (activitytype='Task' or activitytype='Call' or activitytype='Meeting') and crmentity.deleted=0 and ( activity.status is NULL || activity.status != 'Completed' ) and (  activity.eventstatus is NULL ||  activity.eventstatus != 'Held')";
							 | 
						|
								          renderRelatedTasks($query,$id); //Query Changed by Jaguar
							 | 
						|
								
							 | 
						|
								          //return $this->build_related_list($query, new Task());
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									/** Returns a list of the associated notes
							 | 
						|
									 * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc..
							 | 
						|
									 * All Rights Reserved..
							 | 
						|
									 * Contributor(s): ______________________________________..
							 | 
						|
									*/
							 | 
						|
									function get_notes()
							 | 
						|
									{
							 | 
						|
										// First, get the list of IDs.
							 | 
						|
										$query = "SELECT id from notes where parent_id='$this->id' AND deleted=0";
							 | 
						|
								
							 | 
						|
										return $this->build_related_list($query, new note());
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									/** Returns a list of the associated meetings
							 | 
						|
									 * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc..
							 | 
						|
									 * All Rights Reserved..
							 | 
						|
									 * Contributor(s): ______________________________________..
							 | 
						|
									*/
							 | 
						|
									function get_meetings($id)
							 | 
						|
									{
							 | 
						|
								          $query="select meetings.name,meetings.location,meetings.duration_hours,meetings.duration_minutes from meetings inner join activity on activity.activityid=meetings.meetingid inner join seactivityrel on seactivityrel.activityid=meetings.meetingid join crmentity on crmentity.crmid=activity.activityid and crmentity.deleted=0 and crmentity.crmid =".$id;
							 | 
						|
								          renderRelatedMeetings($query,$id);
							 | 
						|
								        }
							 | 
						|
								
							 | 
						|
									/** Returns a list of the associated calls
							 | 
						|
									 * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc..
							 | 
						|
									 * All Rights Reserved..
							 | 
						|
									 * Contributor(s): ______________________________________..
							 | 
						|
									*/
							 | 
						|
									function get_calls($id)
							 | 
						|
									{
							 | 
						|
								          
							 | 
						|
								          $query="select calls.name,calls.duration_hours,calls.date_start,calls.status from calls inner join activity on activity.activityid=calls.callid inner join seactivityrel on seactivityrel.activityid=calls.callid inner join crmentity on crmentity.crmid=calls.callid and crmentity.deleted=0 and crmentity.crmid=".$id;
							 | 
						|
								          renderRelatedCalls($query,$id);
							 | 
						|
								        }
							 | 
						|
								
							 | 
						|
									/** Returns a list of the associated emails
							 | 
						|
									 * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc..
							 | 
						|
									 * All Rights Reserved..
							 | 
						|
									 * Contributor(s): ______________________________________..
							 | 
						|
									*/
							 | 
						|
									function get_emails($id)
							 | 
						|
									{
							 | 
						|
								//          $query="select activity.subject,emails.description,emails.filename from emails inner join activity on activity.activityid=emails.emailid inner join seactivityrel on seactivityrel.activityid=emails.emailid inner join crmentity on crmentity.crmid=seactivityrel.crmid and crmentity.deleted=0 where crmentity.crmid=".$id."";
							 | 
						|
									$query ="select activity.subject,emails.emailid, emails.filename,semodule,activitytype,date_start,activity.status,priority,crmentity.crmid,crmentity.smownerid,crmentity.modifiedtime, users.user_name  from emails inner join activity on activity.activityid=emails.emailid inner join seactivityrel on seactivityrel.activityid=emails.emailid inner join crmentity on crmentity.crmid=emails.emailid inner join users on  users.id=crmentity.smownerid where seactivityrel.crmid=".$id;
							 | 
						|
								          renderRelatedEmails($query,$id);
							 | 
						|
								          //return $this->build_related_list($query, new Email());
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function get_history($id)
							 | 
						|
									{
							 | 
						|
										$query = "SELECT activity.activityid, activity.subject, activity.status, activity.eventstatus, activity.activitytype, activity.description, contactdetails.contactid, contactdetails.firstname, contactdetails.lastname, crmentity.modifiedtime from activity inner join seactivityrel on seactivityrel.activityid=activity.activityid inner join crmentity on crmentity.crmid=activity.activityid left join cntactivityrel on cntactivityrel.activityid= activity.activityid left join contactdetails on contactdetails.contactid= cntactivityrel.contactid where (activity.activitytype = 'Meeting' or activity.activitytype='Call' or activity.activitytype='Task') and (activity.status='Completed' or activity.eventstatus='Held') and seactivityrel.crmid=".$id;
							 | 
						|
										renderRelatedHistory($query,$id);
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function get_attachments($id)
							 | 
						|
									{
							 | 
						|
										$query = "select notes.title,'Notes      '  ActivityType, notes.filename, attachments.type  FileType,crm2.modifiedtime  lastmodified, seattachmentsrel.attachmentsid attachmentsid, notes.notesid crmid from notes inner join senotesrel on senotesrel.notesid= notes.notesid inner join crmentity on crmentity.crmid= senotesrel.crmid inner join crmentity crm2 on crm2.crmid=notes.notesid left join seattachmentsrel  on seattachmentsrel.crmid =notes.notesid left join attachments on seattachmentsrel.attachmentsid = attachments.attachmentsid where crmentity.crmid=".$id;
							 | 
						|
										$query .= ' union all ';
							 | 
						|
										$query .= "select attachments.description  title ,'Attachments'  ActivityType, attachments.name  filename, attachments.type  FileType, crm2.modifiedtime  lastmodified, attachments.attachmentsid  attachmentsid, seattachmentsrel.attachmentsid crmid from attachments inner join seattachmentsrel on seattachmentsrel.attachmentsid= attachments.attachmentsid inner join crmentity on crmentity.crmid= seattachmentsrel.crmid inner join crmentity crm2 on crm2.crmid=attachments.attachmentsid where crmentity.crmid=".$id;
							 | 
						|
										renderRelatedAttachments($query,$id);
							 | 
						|
									}
							 | 
						|
									function get_quotes($id)
							 | 
						|
									{
							 | 
						|
										$query = "select crmentity.*, quotes.*,potential.potentialname,account.accountname from quotes inner join crmentity on crmentity.crmid=quotes.quoteid left outer join account on account.accountid=quotes.accountid left outer join potential on potential.potentialid=quotes.potentialid where crmentity.deleted=0 and account.accountid=".$id;
							 | 
						|
										renderRelatedQuotes($query,$id);
							 | 
						|
									}
							 | 
						|
									function get_invoices($id)
							 | 
						|
									{
							 | 
						|
										$query = "select crmentity.*, invoice.*, account.accountname, salesorder.subject as salessubject from invoice inner join crmentity on crmentity.crmid=invoice.invoiceid left outer join account on account.accountid=invoice.accountid left outer join salesorder on salesorder.salesorderid=invoice.salesorderid where crmentity.deleted=0 and account.accountid=".$id;
							 | 
						|
										renderRelatedInvoices($query,$id);
							 | 
						|
									}
							 | 
						|
									function get_salesorder($id)
							 | 
						|
									{
							 | 
						|
										$query = "select crmentity.*, salesorder.*, quotes.subject as quotename, account.accountname from salesorder inner join crmentity on crmentity.crmid=salesorder.salesorderid left outer join quotes on quotes.quoteid=salesorder.quoteid left outer join account on account.accountid=salesorder.accountid where crmentity.deleted=0 and salesorder.accountid = ".$id;
							 | 
						|
										renderRelatedOrders($query,$id);	
							 | 
						|
									}
							 | 
						|
									function get_tickets($id)
							 | 
						|
									{
							 | 
						|
										$query = "select users.user_name, users.id, troubletickets.title, troubletickets.ticketid as crmid, troubletickets.status, troubletickets.priority, troubletickets.parent_id, crmentity.smownerid, crmentity.modifiedtime from troubletickets inner join crmentity on crmentity.crmid = troubletickets.ticketid left join account on account.accountid=troubletickets.parent_id left join users on users.id=crmentity.smownerid where account.accountid =".$id;
							 | 
						|
										$query .= " union all ";
							 | 
						|
										$query .= "select users.user_name, users.id, troubletickets.title, troubletickets.ticketid as crmid, troubletickets.status, troubletickets.priority, troubletickets.parent_id, crmentity.smownerid, crmentity.modifiedtime from troubletickets inner join crmentity on crmentity.crmid = troubletickets.ticketid left join contactdetails on contactdetails.contactid = troubletickets.parent_id left join account on account.accountid=contactdetails.accountid left join users on users.id=crmentity.smownerid where account.accountid =".$id;
							 | 
						|
										renderRelatedTickets($query,$id);
							 | 
						|
									}
							 | 
						|
									function get_products($id)
							 | 
						|
									{
							 | 
						|
										$query = 'select products.productid, products.productname, products.productcode, products.commissionrate, products.qty_per_unit, products.unit_price, crmentity.crmid, crmentity.smownerid from products inner join seproductsrel on products.productid = seproductsrel.productid inner join crmentity on crmentity.crmid = products.productid inner join account on account.accountid = seproductsrel.crmid  where account.accountid = '.$id.' and crmentity.deleted = 0';
							 | 
						|
									      	renderRelatedProducts($query,$id);
							 | 
						|
								        }
							 | 
						|
								
							 | 
						|
								
							 | 
						|
									function save_relationship_changes($is_update)
							 | 
						|
								    	{
							 | 
						|
								    	if($this->member_id != "")
							 | 
						|
								    	{
							 | 
						|
								    		$this->set_account_member_account_relationship($this->id, $this->member_id);
							 | 
						|
								    	}
							 | 
						|
								    	if($this->opportunity_id != "")
							 | 
						|
								    	{
							 | 
						|
								    		$this->set_account_opportunity_relationship($this->id, $this->opportunity_id);
							 | 
						|
								    	}
							 | 
						|
								    	if($this->case_id != "")
							 | 
						|
								    	{
							 | 
						|
								    		$this->set_account_case_relationship($this->id, $this->case_id);
							 | 
						|
								    	}
							 | 
						|
										if($this->contact_id != "")
							 | 
						|
								    	{
							 | 
						|
								    		$this->set_account_contact_relationship($this->id, $this->contact_id);
							 | 
						|
								    	}
							 | 
						|
								    	if($this->task_id != "")
							 | 
						|
								    	{
							 | 
						|
								    		$this->set_account_task_relationship($this->id, $this->task_id);
							 | 
						|
								    	}
							 | 
						|
								    	if($this->note_id != "")
							 | 
						|
								    	{
							 | 
						|
								    		$this->set_account_note_relationship($this->id, $this->note_id);
							 | 
						|
								    	}
							 | 
						|
								    	if($this->meeting_id != "")
							 | 
						|
								    	{
							 | 
						|
								    		$this->set_account_meeting_relationship($this->id, $this->meeting_id);
							 | 
						|
								    	}
							 | 
						|
								    	if($this->call_id != "")
							 | 
						|
								    	{
							 | 
						|
								    		$this->set_account_call_relationship($this->id, $this->call_id);
							 | 
						|
								    	}
							 | 
						|
								    	if($this->email_id != "")
							 | 
						|
								    	{
							 | 
						|
								    		$this->set_account_email_relationship($this->id, $this->email_id);
							 | 
						|
								    	}
							 | 
						|
								    }
							 | 
						|
								
							 | 
						|
									function set_account_opportunity_relationship($account_id, $opportunity_id)
							 | 
						|
									{
							 | 
						|
								          //$query = "insert into accounts_opportunities set id='".create_guid()."', opportunity_id='$opportunity_id', account_id='$account_id'";
							 | 
						|
								          	$query = "insert into accounts_opportunities (id, opportunity_id, account_id) values('".create_guid()."','$opportunity_id','$account_id')";
							 | 
						|
										$this->db->query($query,true,"Error setting account to opportunity relationship: ");
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function clear_account_opportunity_relationship($account_id)
							 | 
						|
									{
							 | 
						|
										$query = "update accounts_opportunities set deleted=1 where account_id='$account_id' and deleted=0";
							 | 
						|
										$this->db->query($query,true,"Error clearing account to opportunity relationship: ");
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function set_account_case_relationship($account_id, $case_id)
							 | 
						|
									{
							 | 
						|
										$query = "update cases set account_id='$account_id' where id='$case_id'";
							 | 
						|
										$this->db->query($query,true,"Error setting account to case relationship: ");
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function clear_account_case_relationship($account_id)
							 | 
						|
									{
							 | 
						|
										$query = "update cases set deleted=1 where account_id='$account_id' and deleted=0";
							 | 
						|
										$this->db->query($query,true,"Error clearing account to case relationship: ");
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function set_account_contact_relationship($account_id, $contact_id)
							 | 
						|
									{
							 | 
						|
								          //	$query = "insert into accounts_contacts set id='".create_guid()."', contact_id='$contact_id', account_id='$account_id'";
							 | 
						|
									$query = "insert into accounts_contacts (id,contact_id,account_id) values ('".create_guid()."','$contact_id','$account_id')";
							 | 
						|
										$this->db->query($query,true,"Error setting account to contact relationship: "."<BR>$query");
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function clear_account_contact_relationship($account_id)
							 | 
						|
									{
							 | 
						|
										$query = "UPDATE accounts_contacts set deleted=1 where account_id='$account_id' and deleted=0";
							 | 
						|
										$this->db->query($query,true,"Error clearing account to contact relationship: ");
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function set_account_task_relationship($account_id, $task_id)
							 | 
						|
									{
							 | 
						|
										$query = "UPDATE tasks set parent_id='$account_id', parent_type='Accounts' where id='$task_id'";
							 | 
						|
										$this->db->query($query,true,"Error setting account to task relationship: ");
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function clear_account_task_relationship($account_id)
							 | 
						|
									{
							 | 
						|
										$query = "update tasks set parent_id='', parent_type='' where parent_id='$account_id' and deleted=0";
							 | 
						|
										$this->db->query($query,true,"Error clearing account to task relationship: ");
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function set_account_note_relationship($account_id, $note_id)
							 | 
						|
									{
							 | 
						|
										$query = "UPDATE notes set parent_id='$account_id', parent_type='Accounts' where id='$note_id'";
							 | 
						|
										$this->db->query($query,true,"Error setting account to note relationship: ");
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function clear_account_note_relationship($account_id)
							 | 
						|
									{
							 | 
						|
										$query = "update notes set parent_id='', parent_type='' where parent_id='$account_id' and deleted=0";
							 | 
						|
										$this->db->query($query,true,"Error clearing account to note relationship: ");
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function set_account_meeting_relationship($account_id, $meeting_id)
							 | 
						|
									{
							 | 
						|
										$query = "UPDATE meetings set parent_id='$account_id', parent_type='Accounts' where id='$meeting_id'";
							 | 
						|
										$this->db->query($query,true,"Error setting account to meeting relationship: ");
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function clear_account_meeting_relationship($account_id)
							 | 
						|
									{
							 | 
						|
										$query = "update meetings set parent_id='', parent_type='' where parent_id='$account_id' and deleted=0";
							 | 
						|
										$this->db->query($query,true,"Error clearing account to meeting relationship: ");
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function set_account_call_relationship($account_id, $call_id)
							 | 
						|
									{
							 | 
						|
										$query = "UPDATE calls set parent_id='$account_id', parent_type='Accounts' where id='$call_id'";
							 | 
						|
										$this->db->query($query,true,"Error setting account to call relationship: ");
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function clear_account_call_relationship($account_id)
							 | 
						|
									{
							 | 
						|
										$query = "update calls set parent_id='', parent_type='' where parent_id='$account_id' and deleted=0";
							 | 
						|
										$this->db->query($query,true,"Error clearing account to call relationship: ");
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function set_account_email_relationship($account_id, $email_id)
							 | 
						|
									{
							 | 
						|
										$query = "UPDATE emails set parent_id='$account_id', parent_type='Accounts' where id='$email_id'";
							 | 
						|
										$this->db->query($query,true,"Error setting account to email relationship: ");
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function clear_account_email_relationship($account_id)
							 | 
						|
									{
							 | 
						|
										$query = "update emails set parent_id='', parent_type='' where parent_id='$account_id' and deleted=0";
							 | 
						|
										$this->db->query($query,true,"Error clearing account to email relationship: ");
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function set_account_member_account_relationship($account_id, $member_id)
							 | 
						|
									{
							 | 
						|
										$query = "update account set parent_id='$account_id' where id='$member_id' and deleted=0";
							 | 
						|
										$this->db->query($query,true,"Error setting account to member account relationship: ");
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function clear_account_account_relationship($account_id)
							 | 
						|
									{
							 | 
						|
										$query = "update account set parent_id='' where parent_id='$account_id' and deleted=0";
							 | 
						|
										$this->db->query($query,true,"Error clearing account to account relationship: ");
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function clear_account_member_account_relationship($account_id)
							 | 
						|
									{
							 | 
						|
										$query = "update account set parent_id='' where id='$account_id' and deleted=0";
							 | 
						|
										$this->db->query($query,true,"Error clearing account to member account relationship: ");
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function mark_relationships_deleted($id)
							 | 
						|
									{
							 | 
						|
										$this->clear_account_account_relationship($id);
							 | 
						|
										$this->clear_account_contact_relationship($id);
							 | 
						|
										$this->clear_account_opportunity_relationship($id);
							 | 
						|
										$this->clear_account_case_relationship($id);
							 | 
						|
										$this->clear_account_task_relationship($id);
							 | 
						|
										$this->clear_account_note_relationship($id);
							 | 
						|
										$this->clear_account_meeting_relationship($id);
							 | 
						|
										$this->clear_account_call_relationship($id);
							 | 
						|
										$this->clear_account_email_relationship($id);
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									// This method is used to provide backward compatibility with old data that was prefixed with http://
							 | 
						|
									// We now automatically prefix http://
							 | 
						|
									function remove_redundant_http()
							 | 
						|
									{
							 | 
						|
										if(eregi("http://", $this->website))
							 | 
						|
										{
							 | 
						|
											$this->website = substr($this->website, 7);
							 | 
						|
										}
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function fill_in_additional_list_fields()
							 | 
						|
									{
							 | 
						|
										// Fill in the assigned_user_name
							 | 
						|
										$this->assigned_user_name = get_assigned_user_name($this->smownerid);
							 | 
						|
								
							 | 
						|
										$this->remove_redundant_http();
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									function fill_in_additional_detail_fields()
							 | 
						|
									{
							 | 
						|
										// Fill in the assigned_user_name
							 | 
						|
										$this->assigned_user_name = get_assigned_user_name($this->smownerid);
							 | 
						|
								
							 | 
						|
										//$query = "SELECT a1.name from account as a1, accounts as a2 where a1.id = a2.parent_id and a2.id = '$this->id' and a1.deleted=0";
							 | 
						|
								                $query = "SELECT a1.name from account a1, account a2 where a1.id = a2.parent_id and a2.id = '$this->id' and a1.deleted=0";
							 | 
						|
										$result = $this->db->query($query,true," Error filling in additional detail fields: ");
							 | 
						|
								
							 | 
						|
										// Get the id and the name.
							 | 
						|
										$row = $this->db->fetchByAssoc($result);
							 | 
						|
								
							 | 
						|
										if($row != null)
							 | 
						|
										{
							 | 
						|
											$this->parent_name = $row['name'];
							 | 
						|
										}
							 | 
						|
										else
							 | 
						|
										{
							 | 
						|
											$this->parent_name = '';
							 | 
						|
										}
							 | 
						|
								
							 | 
						|
										$this->remove_redundant_http();
							 | 
						|
									}
							 | 
						|
									function get_list_view_data(){
							 | 
						|
										$temp_array = $this->get_list_view_array();
							 | 
						|
										$temp_array["ENCODED_NAME"]=htmlspecialchars($this->name, ENT_QUOTES);	
							 | 
						|
										return $temp_array;
							 | 
						|
									}
							 | 
						|
									/**
							 | 
						|
										builds a generic search based on the query string using or
							 | 
						|
										do not include any $this-> because this is called on without having the class instantiated
							 | 
						|
									*/
							 | 
						|
									function build_generic_where_clause ($the_query_string) {
							 | 
						|
									
							 | 
						|
									$where_clauses = Array();
							 | 
						|
									$the_query_string = addslashes($the_query_string);
							 | 
						|
									array_push($where_clauses, "accountname like '$the_query_string%'");
							 | 
						|
									if (is_numeric($the_query_string)) {
							 | 
						|
										array_push($where_clauses, "otherphone like '%$the_query_string%'");
							 | 
						|
										array_push($where_clauses, "fax like '%$the_query_string%'");
							 | 
						|
										array_push($where_clauses, "phone like '%$the_query_string%'");
							 | 
						|
									}
							 | 
						|
									
							 | 
						|
									$the_where = "";
							 | 
						|
									foreach($where_clauses as $clause)
							 | 
						|
									{
							 | 
						|
										if($the_where != "") $the_where .= " or ";
							 | 
						|
										$the_where .= $clause;
							 | 
						|
									}
							 | 
						|
									
							 | 
						|
									
							 | 
						|
									return $the_where;
							 | 
						|
								}
							 | 
						|
								//method added to construct the query to fetch the custom fields 
							 | 
						|
									function constructCustomQueryAddendum()
							 | 
						|
									{
							 | 
						|
								        global $adb;
							 | 
						|
								        	//get all the custom fields created 
							 | 
						|
										$sql1 = "select columnname,fieldlabel from field where generatedtype=2 and tabid=6";
							 | 
						|
								        	$result = $adb->query($sql1);
							 | 
						|
										$numRows = $adb->num_rows($result);
							 | 
						|
									//select accountscf.columnname fieldlabel,accountscf.columnname fieldlabel	
							 | 
						|
										$sql3 = "select ";
							 | 
						|
										for($i=0; $i < $numRows;$i++)
							 | 
						|
										{
							 | 
						|
											$columnName = $adb->query_result($result,$i,"columnname");
							 | 
						|
											$fieldlable = $adb->query_result($result,$i,"fieldlabel");
							 | 
						|
											//construct query as below
							 | 
						|
										       if($i == 0)
							 | 
						|
										      	{
							 | 
						|
												$sql3 .= "accountscf.".$columnName. " '" .$fieldlable."'";
							 | 
						|
											}
							 | 
						|
											else
							 | 
						|
											{	
							 | 
						|
												$sql3 .= ", accountscf.".$columnName. " '" .$fieldlable."'";
							 | 
						|
											}
							 | 
						|
								        
							 | 
						|
									         }
							 | 
						|
									return $sql3;
							 | 
						|
								
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								//check if the custom table exists or not in the first place
							 | 
						|
								function checkIfCustomTableExists()
							 | 
						|
								{
							 | 
						|
								  //$result = mysql_query("select * from accountcf");
							 | 
						|
								  //$testrow = mysql_num_fields($result);
							 | 
						|
								 $result = $this->db->query("select * from accountscf");
							 | 
						|
								 $testrow = $this->db->num_fields($result);
							 | 
						|
									if($testrow > 1)
							 | 
						|
									{
							 | 
						|
										$exists=true;
							 | 
						|
									}
							 | 
						|
									else
							 | 
						|
									{
							 | 
						|
										$exists=false;
							 | 
						|
									}
							 | 
						|
								return $exists;
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								
							 | 
						|
									function create_export_query(&$order_by, &$where)
							 | 
						|
								        {
							 | 
						|
										if($this->checkIfCustomTableExists())
							 | 
						|
										{
							 | 
						|
								          
							 | 
						|
								  $query = $this->constructCustomQueryAddendum() . ", 
							 | 
						|
											account.*, ".$this->entity_table.".*, accountbillads.city  billing_city, accountbillads.country  billing_country, accountbillads.code  billing_code, accountbillads.state  billing_state, accountbillads.street  billing_street, accountshipads.city  shipping_city, accountshipads.country  shipping_country, accountshipads.code  shipping_code, accountshipads.state  shipping_state,  accountshipads.street  shipping_street,
							 | 
						|
								                        users.user_name, users.status  user_status
							 | 
						|
								                        FROM ".$this->entity_table."
							 | 
						|
								                        INNER JOIN account
							 | 
						|
								                        ON crmentity.crmid=account.accountid
							 | 
						|
								                        LEFT JOIN accountbillads
							 | 
						|
								                        ON account.accountid=accountbillads.accountaddressid
							 | 
						|
								                        LEFT JOIN accountshipads
							 | 
						|
								                        ON account.accountid=accountshipads.accountaddressid
							 | 
						|
								                        LEFT JOIN accountscf 
							 | 
						|
								                        ON accountscf.accountid=account.accountid
							 | 
						|
								                        LEFT JOIN users
							 | 
						|
								                        ON crmentity.smownerid = users.id ";
							 | 
						|
								
							 | 
						|
										}
							 | 
						|
										else
							 | 
						|
										{
							 | 
						|
								                  $query = "SELECT 
							 | 
						|
											account.*, ".$this->entity_table.".*, accountbillads.city  billing_city, accountbillads.country  billing_country, accountbillads.code  billing_code, accountbillads.state billing_state, accountbillads.street billing_street, accountshipads.city shipping_city, accountshipads.country shipping_country, accountshipads.code shipping_code, accountshipads.state shipping_state,  accountshipads.street shipping_street,
							 | 
						|
								                        users.user_name, users.status user_status
							 | 
						|
								                        FROM ".$this->entity_table."
							 | 
						|
								                        INNER JOIN account
							 | 
						|
								                        ON crmentity.crmid=account.accountid
							 | 
						|
								                        LEFT JOIN accountbillads
							 | 
						|
								                        ON account.accountid=accountbillads.accountaddressid
							 | 
						|
								                        LEFT JOIN accountshipads
							 | 
						|
								                        ON account.accountid=accountshipads.accountaddressid
							 | 
						|
								                        LEFT JOIN users
							 | 
						|
								                        ON crmentity.smownerid = users.id ";
							 | 
						|
										}
							 | 
						|
								
							 | 
						|
								                        $where_auto = " users.status='Active'
							 | 
						|
								                        AND crmentity.deleted=0 ";
							 | 
						|
								
							 | 
						|
								                if($where != "")
							 | 
						|
								                        $query .= "where ($where) AND ".$where_auto;
							 | 
						|
								                else
							 | 
						|
								                        $query .= "where ".$where_auto;
							 | 
						|
								
							 | 
						|
								                if(!empty($order_by))
							 | 
						|
								                        $query .= " ORDER BY $order_by";
							 | 
						|
								
							 | 
						|
								                return $query;
							 | 
						|
								        }
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								function getColumnNames_Acnt()
							 | 
						|
								{
							 | 
						|
									$table1flds = $this->db->getColumnNames("account");
							 | 
						|
									$table2flds = $this->db->getColumnNames("accountbillads");
							 | 
						|
									$table3flds = $this->db->getColumnNames("accountshipads");
							 | 
						|
									$sql1 = "select fieldlabel from field where generatedtype=2 and tabid=6";
							 | 
						|
									$result = $this->db->query($sql1);
							 | 
						|
									$numRows = $this->db->num_rows($result);
							 | 
						|
									for($i=0; $i < $numRows;$i++)
							 | 
						|
									{
							 | 
						|
								   	$custom_fields[$i] = $this->db->query_result($result,$i,"fieldlabel");
							 | 
						|
									}
							 | 
						|
								    
							 | 
						|
									$mergeflds = array_merge($table1flds,$table2flds,$table3flds,$custom_fields);
							 | 
						|
									return $mergeflds;
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								?>
							 | 
						|
								
							 |