]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Contacts/ContactOpportunityRelationship.php
Release 6.2.0
[Github/sugarcrm.git] / modules / Contacts / ContactOpportunityRelationship.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-2011 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
47
48
49
50 // Contact is used to store customer information.
51 class ContactOpportunityRelationship extends SugarBean {
52         // Stored fields
53         var $id;
54         var $contact_id;
55         var $contact_role;
56         var $opportunity_id;
57
58         // Related fields
59         var $contact_name;
60         var $opportunity_name;
61
62         var $table_name = "opportunities_contacts";
63         var $object_name = "ContactOpportunityRelationship";
64         var $column_fields = Array("id"
65                 ,"contact_id"
66                 ,"opportunity_id"
67                 ,"contact_role"
68                 ,'date_modified'
69                 );
70
71         var $new_schema = true;
72         
73         var $additional_column_fields = Array();
74                 var $field_defs = array (
75        'id'=>array('name' =>'id', 'type' =>'char', 'len'=>'36', 'default'=>'')
76       , 'contact_id'=>array('name' =>'contact_id', 'type' =>'char', 'len'=>'36', )
77       , 'opportunity_id'=>array('name' =>'opportunity_id', 'type' =>'char', 'len'=>'36',)
78       , 'contact_role'=>array('name' =>'contact_role', 'type' =>'char', 'len'=>'50')
79       , 'date_modified'=>array ('name' => 'date_modified','type' => 'datetime')
80       , 'deleted'=>array('name' =>'deleted', 'type' =>'bool', 'len'=>'1', 'default'=>'0', 'required'=>true)
81       );
82         function ContactOpportunityRelationship() {
83                 $this->db = DBManagerFactory::getInstance();
84         $this->dbManager = DBManagerFactory::getInstance();
85
86                 $this->disable_row_level_security =true;
87
88                 }
89
90         function fill_in_additional_detail_fields()
91         {
92                 global $locale;
93                 if(isset($this->contact_id) && $this->contact_id != "")
94                 {
95                         $query = "SELECT first_name, last_name from contacts where id='$this->contact_id' AND deleted=0";
96                         $result =$this->db->query($query,true," Error filling in additional detail fields: ");
97                         // Get the id and the name.
98                         $row = $this->db->fetchByAssoc($result);
99
100                         if($row != null)
101                         {
102                                 $this->contact_name = $locale->getLocaleFormattedName($row['first_name'], $row['last_name']);
103                         }
104                 }
105
106                 if(isset($this->opportunity_id) && $this->opportunity_id != "")
107                 {
108                         $query = "SELECT name from opportunities where id='$this->opportunity_id' AND deleted=0";
109                         $result =$this->db->query($query,true," Error filling in additional detail fields: ");
110                         // Get the id and the name.
111                         $row = $this->db->fetchByAssoc($result);
112
113                         if($row != null)
114                         {
115                                 $this->opportunity_name = $row['name'];
116                         }
117                 }
118
119         }
120 }
121
122
123
124 ?>