]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Accounts/ShowDuplicates.php
Release 6.1.4
[Github/sugarcrm.git] / modules / Accounts / ShowDuplicates.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM 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 if (!isset($_SESSION['SHOW_DUPLICATES']))
40     sugar_die("Unauthorized access to this area.");
41
42 // retrieve $_POST values out of the $_SESSION variable - placed in there by AccountFormBase to avoid the length limitations on URLs implicit with GETS
43 //$GLOBALS['log']->debug('ShowDuplicates.php: _POST = '.print_r($_SESSION['SHOW_DUPLICATES'],true));
44 parse_str($_SESSION['SHOW_DUPLICATES'],$_POST);
45 unset($_SESSION['SHOW_DUPLICATES']);
46 //$GLOBALS['log']->debug('ShowDuplicates.php: _POST = '.print_r($_POST,true));
47
48 global $app_strings;
49 global $app_list_strings;
50
51 $error_msg = '';
52
53 global $current_language;
54 $mod_strings = return_module_language($current_language, 'Accounts');
55 echo get_module_title($mod_strings['LBL_MODULE_NAME'], $mod_strings['LBL_MODULE_NAME'].": ".$mod_strings['LBL_SAVE_ACCOUNT'], true);
56 $xtpl=new XTemplate ('modules/Accounts/ShowDuplicates.html');
57 $xtpl->assign("MOD", $mod_strings);
58 $xtpl->assign("APP", $app_strings);
59 $xtpl->assign("PRINT_URL", "index.php?".$GLOBALS['request_string']);
60 $xtpl->assign("MODULE", $_REQUEST['module']);
61 if ($error_msg != '')
62 {
63         $xtpl->assign("ERROR", $error_msg);
64         $xtpl->parse("main.error");
65 }
66
67 if((isset($_REQUEST['popup']) && $_REQUEST['popup'] == 'true') ||(isset($_POST['popup']) && $_POST['popup']==true)) insert_popup_header($theme);
68
69
70 $account = new Account();
71 require_once('modules/Accounts/AccountFormBase.php');
72 $accountForm = new AccountFormBase();
73 $GLOBALS['check_notify'] = FALSE;
74
75 $query = 'select id, name, website, billing_address_city  from accounts where deleted=0 ';
76 $duplicates = $_POST['duplicate']; 
77 $count = count($duplicates);
78 if ($count > 0)
79 {
80         $query .= "and (";
81         $first = true; 
82         foreach ($duplicates as $duplicate_id) 
83         {
84                 if (!$first) $query .= ' OR ';
85                 $first = false;
86                 $query .= "id='$duplicate_id' ";
87         }
88         $query .= ')';
89 }
90
91 $duplicateAccounts = array();
92
93 $db = DBManagerFactory::getInstance();
94 $result = $db->query($query);
95 $i=-1;
96 while(($row=$db->fetchByAssoc($result)) != null) {
97         $i++;
98         $duplicateAccounts[$i] = $row;
99 }
100
101 $xtpl->assign('FORMBODY', $accountForm->buildTableForm($duplicateAccounts,  'Accounts'));
102
103 $input = '';
104 foreach ($account->column_fields as $field)
105 {       
106         if (!empty($_POST['Accounts'.$field])) {
107                 $value = urldecode($_POST['Accounts'.$field]);
108                 $input .= "<input type='hidden' name='$field' value='{$value}'>\n";
109         }
110 }
111 foreach ($account->additional_column_fields as $field)
112 {       
113         if (!empty($_POST['Accounts'.$field])) {
114                 $value = urldecode($_POST['Accounts'.$field]);
115                 $input .= "<input type='hidden' name='$field' value='{$value}'>\n";
116         }
117 }
118
119
120 $emailAddress = new SugarEmailAddress();
121 $input .= $emailAddress->getEmailAddressWidgetDuplicatesView($account);
122
123 $get = '';
124 if(!empty($_POST['return_module'])) $xtpl->assign('RETURN_MODULE', $_POST['return_module']);
125 else $get .= "Accounts";
126 $get .= "&return_action=";
127 if(!empty($_POST['return_action'])) $xtpl->assign('RETURN_ACTION', $_POST['return_action']);
128 else $get .= "DetailView";
129 if(!empty($_POST['return_id'])) $xtpl->assign('RETURN_ID', $_POST['return_id']);
130
131 if(!empty($_POST['popup'])) 
132         $input .= '<input type="hidden" name="popup" value="'.$_POST['popup'].'">';
133 else 
134         $input .= '<input type="hidden" name="popup" value="false">';
135
136 if(!empty($_POST['to_pdf'])) 
137         $input .= '<input type="hidden" name="to_pdf" value="'.$_POST['to_pdf'].'">';
138 else 
139         $input .= '<input type="hidden" name="to_pdf" value="false">';
140         
141 if(!empty($_POST['create'])) 
142         $input .= '<input type="hidden" name="create" value="'.$_POST['create'].'">';
143 else 
144         $input .= '<input type="hidden" name="create" value="false">';
145
146 $xtpl->assign('INPUT_FIELDS',$input);
147 $xtpl->parse('main');
148 $xtpl->out('main');
149
150
151 ?>