]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Import/views/view.last.php
Release 6.5.5
[Github/sugarcrm.git] / modules / Import / views / view.last.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-2012 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: view handler for last step of the import process
41  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
42  * All Rights Reserved.
43  ********************************************************************************/
44 require_once('modules/Import/views/ImportView.php');
45 require_once('modules/Import/ImportCacheFiles.php');
46 require_once('modules/Import/sources/ImportFile.php');
47 require_once('modules/Import/views/ImportListView.php');
48 require_once('include/ListView/ListViewFacade.php');
49
50
51 class ImportViewLast extends ImportView
52 {
53     protected $pageTitleKey = 'LBL_STEP_5_TITLE';
54
55     var $lvf;
56
57         /**
58      * @see SugarView::display()
59      */
60         public function display()
61     {
62         global $mod_strings, $app_strings, $current_user, $sugar_config, $current_language;
63
64
65
66         $this->ss->assign("IMPORT_MODULE", $_REQUEST['import_module']);
67         $this->ss->assign("TYPE", $_REQUEST['type']);
68         $this->ss->assign("HEADER", $app_strings['LBL_IMPORT']." ". $mod_strings['LBL_MODULE_NAME']);
69         $this->ss->assign("MODULE_TITLE", $this->getModuleTitle(false));
70         // lookup this module's $mod_strings to get the correct module name
71         $module_mod_strings =
72             return_module_language($current_language, $_REQUEST['import_module']);
73         $this->ss->assign("MODULENAME",$module_mod_strings['LBL_MODULE_NAME']);
74
75         // read status file to get totals for records imported, errors, and duplicates
76         $count        = 0;
77         $errorCount   = 0;
78         $dupeCount    = 0;
79         $createdCount = 0;
80         $updatedCount = 0;
81         $fp = sugar_fopen(ImportCacheFiles::getStatusFileName(),'r');
82         while (( $row = fgetcsv($fp, 8192) ) !== FALSE)
83         {
84             $count         += (int) $row[0];
85             $errorCount    += (int) $row[1];
86             $dupeCount     += (int) $row[2];
87             $createdCount  += (int) $row[3];
88             $updatedCount  += (int) $row[4];
89         }
90         fclose($fp);
91
92         $this->ss->assign("showUndoButton",FALSE);
93         if($createdCount > 0)
94         {
95                 $this->ss->assign("showUndoButton",TRUE);
96         }
97
98         if ($errorCount > 0 &&  ($createdCount <= 0 && $updatedCount <= 0))
99             $activeTab = 2;
100         else if($dupeCount > 0 &&  ($createdCount <= 0 && $updatedCount <= 0))
101             $activeTab = 1;
102         else
103             $activeTab = 0;
104
105         $this->ss->assign("JAVASCRIPT", $this->_getJS($activeTab));
106
107         $this->ss->assign("errorCount", $errorCount);
108         $this->ss->assign("dupeCount", $dupeCount);
109         $this->ss->assign("createdCount", $createdCount);
110         $this->ss->assign("updatedCount", $updatedCount);
111         $this->ss->assign("errorFile", ImportCacheFiles::convertFileNameToUrl(ImportCacheFiles::getErrorFileName()));
112         $this->ss->assign("errorrecordsFile", ImportCacheFiles::convertFileNameToUrl(ImportCacheFiles::getErrorRecordsWithoutErrorFileName()));
113         $this->ss->assign("dupeFile", ImportCacheFiles::convertFileNameToUrl(ImportCacheFiles::getDuplicateFileName()));
114
115         if ( $this->bean->object_name == "Prospect" )
116         {
117                 $this->ss->assign("PROSPECTLISTBUTTON", $this->_addToProspectListButton());
118         }
119         else {
120             $this->ss->assign("PROSPECTLISTBUTTON","");
121         }
122
123         $resultsTable = "";
124         foreach ( UsersLastImport::getBeansByImport($_REQUEST['import_module']) as $beanname )
125         {
126             // load bean
127             if ( !( $this->bean instanceof $beanname ) )
128             {
129                 $this->bean = new $beanname;
130             }
131            $resultsTable .= $this->getListViewResults();
132         }
133         if(empty($resultsTable))
134         {
135             $resultsTable = $this->getListViewResults();
136         }
137
138         $this->ss->assign("RESULTS_TABLE", $resultsTable);
139         $this->ss->assign("ERROR_TABLE", $this->getListViewTableFromFile(ImportCacheFiles::getErrorRecordsFileName(), 'errors') );
140         $this->ss->assign("DUP_TABLE", $this->getListViewTableFromFile(ImportCacheFiles::getDuplicateFileDisplayName(), 'dup'));
141         $content = $this->ss->fetch('modules/Import/tpls/last.tpl');
142         $this->ss->assign("CONTENT",$content);
143         $this->ss->display('modules/Import/tpls/wizardWrapper.tpl');
144     }
145
146     protected function getListViewResults()
147     {
148         global $mod_strings, $current_language;
149         // build listview to show imported records
150         $lvf = !empty($this->lvf) ? $this->lvf : new ListViewFacade($this->bean, $this->bean->module_dir, 0);
151
152         $params = array();
153         if(!empty($_REQUEST['orderBy']))
154         {
155             $params['orderBy'] = $_REQUEST['orderBy'];
156             $params['overrideOrder'] = true;
157             if(!empty($_REQUEST['sortOrder'])) $params['sortOrder'] = $_REQUEST['sortOrder'];
158         }
159         $beanname = ($this->bean->object_name == 'Case' ? 'aCase' : $this->bean->object_name);
160         // add users_last_import joins so we only show records done in this import
161         $params['custom_from']  = ', users_last_import';
162         $params['custom_where'] = " AND users_last_import.assigned_user_id = '{$GLOBALS['current_user']->id}'
163                 AND users_last_import.bean_type = '{$beanname}'
164                 AND users_last_import.bean_id = {$this->bean->table_name}.id
165                 AND users_last_import.deleted = 0
166                 AND {$this->bean->table_name}.deleted = 0";
167
168         $lvf->lv->mergeduplicates = false;
169         $lvf->lv->showMassupdateFields = false;
170         if ( $lvf->type == 2 )
171             $lvf->template = 'include/ListView/ListViewNoMassUpdate.tpl';
172
173         $module_mod_strings = return_module_language($current_language, $this->bean->module_dir);
174         $lvf->setup('', '', $params, $module_mod_strings, 0, -1, '', strtoupper($beanname), array(), 'id');
175         global $app_list_strings;
176         return $lvf->display($app_list_strings['moduleList'][$this->bean->module_dir], 'main', TRUE);
177
178     }
179
180     protected function getListViewTableFromFile($fileName, $tableName)
181     {
182         $has_header = $_REQUEST['has_header'] == 'on' ? TRUE : FALSE;
183         $if = new ImportFile($fileName, ",", '"', FALSE, FALSE);
184         $if->setHeaderRow($has_header);
185         $lv = new ImportListView($if,array('offset'=> 0), $tableName);
186         return $lv->display(TRUE);
187     }
188
189     /**
190      * Returns JS used in this view
191      */
192     private function _getJS($activeTab)
193     {
194         return <<<EOJAVASCRIPT
195
196 document.getElementById('importmore').onclick = function(){
197     document.getElementById('importlast').action.value = 'Step1';
198     return true;
199 }
200
201 document.getElementById('finished').onclick = function(){
202     document.getElementById('importlast').module.value = document.getElementById('importlast').import_module.value;
203     document.getElementById('importlast').action.value = 'index';
204         return true;
205
206 }
207
208 if ( typeof(SUGAR) == 'undefined' )
209     SUGAR = {};
210 if ( typeof(SUGAR.IV) == 'undefined' )
211     SUGAR.IV = {};
212
213 SUGAR.IV = {
214
215     getTable : function(tableID, offset) {
216         var callback = {
217             success: function(o)
218             {
219                 var tableKey = tableID + '_table';
220                 document.getElementById(tableKey).innerHTML = o.responseText;
221             },
222             failure: function(o) {},
223         };
224         var has_header = document.getElementById('importlast').has_header.value
225         var url = 'index.php?action=RefreshTable&module=Import&offset=' + offset + '&tableID=' + tableID + '&has_header=' + has_header;
226         YAHOO.util.Connect.asyncRequest('GET', url, callback);
227     },
228     togglePages : function(activePage)
229     {
230         var num_tabs = 3;
231         var pageId = 'pageNumIW_' + activePage;
232         activeDashboardPage = activePage;
233         activeTab = activePage;
234
235         //hide all pages first for display purposes
236         for(var i=0; i < num_tabs; i++)
237         {
238             var pageDivId = 'pageNumIW_'+i+'_div';
239             var pageDivElem = document.getElementById(pageDivId);
240             pageDivElem.style.display = 'none';
241         }
242
243         for(var i=0; i < num_tabs; i++)
244         {
245             var tabId = 'pageNumIW_'+i;
246             var anchorId = 'pageNumIW_'+i+'_anchor';
247             var pageDivId = 'pageNumIW_'+i+'_div';
248
249             var tabElem = document.getElementById(tabId);
250             var anchorElem = document.getElementById(anchorId);
251             var pageDivElem = document.getElementById(pageDivId);
252
253             if(tabId == pageId)
254             {
255                 tabElem.className = 'active';
256                 anchorElem.className = 'current';
257                 pageDivElem.style.display = '';
258             }
259             else
260             {
261                 tabElem.className = '';
262                 anchorElem.className = '';
263             }
264         }
265     }
266 }
267
268 SUGAR.IV.togglePages('$activeTab');
269
270
271 EOJAVASCRIPT;
272     }
273     /**
274      * Returns a button to add this list of prospects to a Target List
275      *
276      * @return string html code to display button
277      */
278     private function _addToProspectListButton()
279     {
280         global $app_strings, $sugar_version, $sugar_config, $current_user;
281
282         $query = "SELECT distinct prospects.id, prospects.assigned_user_id, prospects.first_name, prospects.last_name, prospects.phone_work, prospects.title,
283                                 email_addresses.email_address email1, users.user_name as assigned_user_name
284                                 FROM users_last_import,prospects
285                 LEFT JOIN users ON prospects.assigned_user_id=users.id
286                                 LEFT JOIN email_addr_bean_rel on prospects.id = email_addr_bean_rel.bean_id and email_addr_bean_rel.bean_module='Prospect' and email_addr_bean_rel.primary_address=1 and email_addr_bean_rel.deleted=0
287                                 LEFT JOIN email_addresses on email_addresses.id = email_addr_bean_rel.email_address_id
288                                 WHERE users_last_import.assigned_user_id = '{$current_user->id}' AND users_last_import.bean_type='Prospect' AND users_last_import.bean_id=prospects.id
289                                 AND users_last_import.deleted=0 AND prospects.deleted=0";
290
291         $prospect_id='';
292         if(!empty($query)){
293             $res=$GLOBALS['db']->query($query);
294             while($row = $GLOBALS['db']->fetchByAssoc($res))
295             {
296                 $prospect_id[]=$row['id'];
297             }
298         }
299         $popup_request_data = array(
300             'call_back_function' => 'set_return_and_save_background',
301             'form_name' => 'DetailView',
302             'field_to_name_array' => array(
303                 'id' => 'prospect_list_id',
304             ),
305             'passthru_data' => array(
306                 'child_field' => 'notused',
307                 'return_url' => 'notused',
308                 'link_field_name' => 'notused',
309                 'module_name' => 'notused',
310                 'refresh_page'=>'1',
311                 'return_type'=>'addtoprospectlist',
312                 'parent_module'=>'ProspectLists',
313                 'parent_type'=>'ProspectList',
314                 'child_id'=>'id',
315                 'link_attribute'=>'prospects',
316                 'link_type'=>'default',  //polymorphic or default
317                 'prospect_ids'=>$prospect_id,
318             )
319         );
320
321         $json = getJSONobj();
322         $encoded_popup_request_data = $json->encode($popup_request_data);
323
324         return <<<EOHTML
325 <script type="text/javascript" src="include/SubPanel/SubPanelTiles.js?s={$sugar_version}&c={$sugar_config['js_custom_version']}"></script>
326 <input align=right" type="button" name="select_button" id="select_button" class="button"
327      title="{$app_strings['LBL_ADD_TO_PROSPECT_LIST_BUTTON_LABEL']}"
328      value="{$app_strings['LBL_ADD_TO_PROSPECT_LIST_BUTTON_LABEL']}"
329      onclick='open_popup("ProspectLists",600,400,"",true,true,$encoded_popup_request_data,"Single","true");' />
330 EOHTML;
331
332     }
333 }
334 ?>