⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 view.last.php

📁 SugarCRM5.1 开源PHP客户关系管理系统
💻 PHP
字号:
<?phpif(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');/********************************************************************************* * SugarCRM is a customer relationship management program developed by * SugarCRM, Inc. Copyright (C) 2004 - 2007 SugarCRM Inc. *  * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the * Free Software Foundation with the addition of the following permission added * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS. *  * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more * details. *  * You should have received a copy of the GNU General Public License along with * this program; if not, see http://www.gnu.org/licenses or write to the Free * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301 USA. *  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road, * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com. *  * The interactive user interfaces in modified source and object code versions * of this program must display Appropriate Legal Notices, as required under * Section 5 of the GNU General Public License version 3. *  * In accordance with Section 7(b) of the GNU General Public License version 3, * these Appropriate Legal Notices must retain the display of the "Powered by * SugarCRM" logo. If the display of the logo is not reasonably feasible for * technical reasons, the Appropriate Legal Notices must display the words * "Powered by SugarCRM".********************************************************************************//********************************************************************************* * Description: view handler for last step of the import process * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc. * All Rights Reserved. ********************************************************************************/require_once('include/MVC/View/SugarView.php');require_once('modules/Import/UsersLastImport.php');require_once('modules/Import/ImportCacheFiles.php');require_once('include/ListView/ListView.php');                class ImportViewLast extends SugarView {	    /**     * Constructor     */ 	public function __construct()    { 		parent::SugarView();    } 	/**      * display the form     */ 	public function display()    {        global $mod_strings, $app_strings, $current_user, $sugar_config;                $this->ss->assign("MOD", $mod_strings);        $this->ss->assign("APP", $app_strings);        $this->ss->assign("IMPORT_MODULE", $_REQUEST['import_module']);        $this->ss->assign("TYPE", $_REQUEST['type']);        $this->ss->assign("HEADER", $app_strings['LBL_IMPORT']." ". $mod_strings['LBL_MODULE_NAME']);        $this->ss->assign("MODULE_TITLE",                     get_module_title(                        $mod_strings['LBL_MODULE_NAME'],                         $mod_strings['LBL_MODULE_NAME']." ".$mod_strings['LBL_RESULTS'],                         true                        )                    );        // lookup this module's $mod_strings to get the correct module name        $old_mod_strings = $mod_strings;        $module_mod_strings =             return_module_language($sugar_config['default_language'], $_REQUEST['import_module']);        $this->ss->assign("MODULENAME",$module_mod_strings['LBL_MODULE_NAME']);        // reset old ones afterwards        $mod_strings = $old_mod_strings;        $this->ss->assign("JAVASCRIPT", $this->_getJS());                // read status file to get totals for records imported, errors, and duplicates        $count      = 0;        $errorCount = 0;        $dupeCount  = 0;        $fp = sugar_fopen(ImportCacheFiles::getStatusFileName(),'r');        while (( $row = fgetcsv($fp, 8192) ) !== FALSE) {            $count      += (int) $row[0];            $errorCount += (int) $row[1];            $dupeCount  += (int) $row[2];        }        fclose($fp);                $this->ss->assign("count",$count-$errorCount-$dupeCount);        $this->ss->assign("errorCount",$errorCount);        $this->ss->assign("dupeCount",$dupeCount);        $this->ss->assign("errorFile",ImportCacheFiles::getErrorFileName());        $this->ss->assign("dupeFile",ImportCacheFiles::getDuplicateFileName());                // load bean        $focus = loadImportBean($_REQUEST['import_module']);        if ( !$focus ) {            showImportError($mod_strings['LBL_ERROR_IMPORTS_NOT_SET_UP'],$_REQUEST['import_module']);            return;        }                if ( $focus->object_name == "Prospect" ) {            $this->ss->assign("PROSPECTLISTBUTTON",                 $this->_addToProspectListButton());        }        else {            $this->ss->assign("PROSPECTLISTBUTTON","");        }                $this->ss->display('modules/Import/tpls/last.tpl');                // build listview to show imported records        require_once('include/ListView/ListViewFacade.php');        $lvf = new ListViewFacade($focus, $_REQUEST['import_module'], 0);            $params = array();        if(!empty($_REQUEST['orderBy'])) {            $params['orderBy'] = $_REQUEST['orderBy'];            $params['overrideOrder'] = true;            if(!empty($_REQUEST['sortOrder'])) $params['sortOrder'] = $_REQUEST['sortOrder'];        }        // add users_last_import joins so we only show records done in this import        $params['custom_from']  = ', users_last_import';        $params['custom_where'] = " AND users_last_import.assigned_user_id = '{$GLOBALS['current_user']->id}'             AND users_last_import.bean_type = '{$_REQUEST['import_module']}'             AND users_last_import.bean_id = {$focus->table_name}.id             AND users_last_import.deleted = 0             AND {$focus->table_name}.deleted = 0";        $where = " {$focus->table_name}.id IN (                     SELECT users_last_import.bean_id                        FROM users_last_import                        WHERE users_last_import.assigned_user_id = '{$GLOBALS['current_user']->id}'                             AND users_last_import.bean_type = '{$_REQUEST['import_module']}'                             AND users_last_import.deleted = 0 )";                    $lbl_last_imported = $mod_strings['LBL_LAST_IMPORTED'];        $lvf->lv->mergeduplicates = false;        $lvf->setup('', $where, $params, return_module_language($GLOBALS['current_language'], $_REQUEST['import_module']), 0, -1, '', strtoupper($focus->object_name), array(), 'id');        $lvf->display($lbl_last_imported." ".$_REQUEST['import_module']);    }    /**     * Returns JS used in this view     */    private function _getJS()    {        return <<<EOJAVASCRIPT<script type="text/javascript"><!--document.getElementById('importmore').onclick = function(){    document.getElementById('importlast').action.value = 'Step1';    return true;}document.getElementById('finished').onclick = function(){    document.getElementById('importlast').module.value = document.getElementById('importlast').import_module.value;    document.getElementById('importlast').action.value = 'index';    return true;}--></script>EOJAVASCRIPT;    }        /**     * Returns a button to add this list of prospects to a Target List     *     * @return string html code to display button     */    private function _addToProspectListButton()     {        global $app_strings, $sugar_version, $sugar_config, $current_user;                $query = "SELECT distinct				prospects.id,				prospects.assigned_user_id,				prospects.first_name,				prospects.last_name,				prospects.phone_work,				prospects.title,				email_addresses.email_address email1,                                users.user_name as assigned_user_name				FROM users_last_import,prospects                                LEFT JOIN users                                ON prospects.assigned_user_id=users.id				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				LEFT JOIN email_addresses on email_addresses.id = email_addr_bean_rel.email_address_id 														WHERE				users_last_import.assigned_user_id=					'{$current_user->id}'				AND users_last_import.bean_type='Prospects'				AND users_last_import.bean_id=prospects.id				AND users_last_import.deleted=0				AND prospects.deleted=0			";                $popup_request_data = array(            'call_back_function' => 'set_return_and_save_background',            'form_name' => 'DetailView',            'field_to_name_array' => array(                'id' => 'subpanel_id',            ),            'passthru_data' => array(                'child_field' => 'notused',                'return_url' => 'notused',                'link_field_name' => 'notused',                'module_name' => 'notused',                'refresh_page'=>'1',                'return_type'=>'addtoprospectlist',                'parent_module'=>'ProspectLists',                'parent_type'=>'ProspectList',                'child_id'=>'id',                'link_attribute'=>'prospects',                'link_type'=>'default',	 //polymorphic or default            )				        );            $popup_request_data['passthru_data']['query'] = urlencode($query);            $json = getJSONobj();        $encoded_popup_request_data = $json->encode($popup_request_data);	            return <<<EOHTML<script type="text/javascript" src="include/SubPanel/SubPanelTiles.js?s={$sugar_version}&c={$sugar_config['js_custom_version']}"></script><input align=right" type="button" name="select_button" id="select_button" class="button"     title="{$app_strings['LBL_ADD_TO_PROSPECT_LIST_BUTTON_LABEL']}"     accesskey="{$app_strings['LBL_ADD_TO_PROSPECT_LIST_BUTTON_KEY']}"     value="{$app_strings['LBL_ADD_TO_PROSPECT_LIST_BUTTON_LABEL']}"     onclick='open_popup("ProspectLists",600,400,"",true,true,$encoded_popup_request_data,"Single","true");' />EOHTML;        }}?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -