mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-25 08:57:55 +00:00
374 lines
14 KiB
PHP
Executable File
374 lines
14 KiB
PHP
Executable File
<?php
|
|
if (!defined('sugarEntry') || !sugarEntry) {
|
|
die('Not A Valid Entry Point');
|
|
}
|
|
/**
|
|
*
|
|
* SugarCRM Community Edition is a customer relationship management program developed by
|
|
* SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
|
|
*
|
|
* SuiteCRM is an extension to SugarCRM Community Edition developed by SalesAgility Ltd.
|
|
* Copyright (C) 2011 - 2018 SalesAgility Ltd.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU Affero 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 Affero General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Affero 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 Affero General Public License version 3.
|
|
*
|
|
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
|
* these Appropriate Legal Notices must retain the display of the "Powered by
|
|
* SugarCRM" logo and "Supercharged by SuiteCRM" logo. If the display of the logos is not
|
|
* reasonably feasible for technical reasons, the Appropriate Legal Notices must
|
|
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
|
|
*/
|
|
|
|
/**
|
|
|
|
* Description: view handler for step 1 of the import process
|
|
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
|
|
* All Rights Reserved.
|
|
*/
|
|
require_once('modules/Import/views/ImportView.php');
|
|
require_once('modules/Import/sources/ImportFile.php');
|
|
require_once('modules/Import/ImportFileSplitter.php');
|
|
require_once('modules/Import/ImportCacheFiles.php');
|
|
require_once('modules/Import/ImportDuplicateCheck.php');
|
|
|
|
require_once('include/upload_file.php');
|
|
|
|
#[\AllowDynamicProperties]
|
|
class ImportViewDupcheck extends ImportView
|
|
{
|
|
protected $pageTitleKey = 'LBL_STEP_DUP_TITLE';
|
|
|
|
/**
|
|
* @see SugarView::display()
|
|
*/
|
|
public function display()
|
|
{
|
|
global $mod_strings, $app_strings, $current_user;
|
|
global $sugar_config;
|
|
|
|
$has_header = $_REQUEST['has_header'] == 'on' ? true : false;
|
|
|
|
$this->instruction = 'LBL_SELECT_DUPLICATE_INSTRUCTION';
|
|
$this->ss->assign('INSTRUCTION', $this->getInstruction());
|
|
|
|
$this->ss->assign("MODULE_TITLE", $this->getModuleTitle(false));
|
|
$this->ss->assign("DELETE_INLINE_PNG", SugarThemeRegistry::current()->getImage('delete_inline', 'align="absmiddle" alt="'.$app_strings['LNK_DELETE'].'" border="0"'));
|
|
$this->ss->assign("PUBLISH_INLINE_PNG", SugarThemeRegistry::current()->getImage('publish_inline', 'align="absmiddle" alt="'.$mod_strings['LBL_PUBLISH'].'" border="0"'));
|
|
$this->ss->assign("UNPUBLISH_INLINE_PNG", SugarThemeRegistry::current()->getImage('unpublish_inline', 'align="absmiddle" alt="'.$mod_strings['LBL_UNPUBLISH'].'" border="0"'));
|
|
$this->ss->assign("IMPORT_MODULE", $_REQUEST['import_module']);
|
|
$this->ss->assign("CURRENT_STEP", $this->currentStep);
|
|
$this->ss->assign("JAVASCRIPT", $this->_getJS());
|
|
|
|
$content = $this->ss->fetch('modules/Import/tpls/dupcheck.tpl');
|
|
$this->ss->assign("CONTENT", $content);
|
|
$this->ss->display('modules/Import/tpls/wizardWrapper.tpl');
|
|
}
|
|
|
|
private function getImportMap()
|
|
{
|
|
if (!empty($_REQUEST['source_id'])) {
|
|
$import_map_seed = BeanFactory::newBean('Import_1');
|
|
$import_map_seed->retrieve($_REQUEST['source_id'], false);
|
|
|
|
return $import_map_seed->getMapping();
|
|
} else {
|
|
return array();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns JS used in this view
|
|
*/
|
|
private function _getJS()
|
|
{
|
|
global $mod_strings, $sugar_config;
|
|
|
|
$has_header = $_REQUEST['has_header'] == 'on' ? true : false;
|
|
$uploadFileName = "upload://".basename((string) $_REQUEST['tmp_file']);
|
|
$splitter = new ImportFileSplitter($uploadFileName, $sugar_config['import_max_records_per_file']);
|
|
$splitter->splitSourceFile($_REQUEST['custom_delimiter'], html_entity_decode((string) $_REQUEST['custom_enclosure'], ENT_QUOTES), $has_header);
|
|
$count = $splitter->getFileCount()-1;
|
|
$recCount = $splitter->getRecordCount();
|
|
|
|
//BEGIN DRAG DROP WIDGET
|
|
$idc = new ImportDuplicateCheck($this->bean);
|
|
$dupe_indexes = $idc->getDuplicateCheckIndexes();
|
|
|
|
//grab all the import enabled fields and the field map
|
|
$field_map = $this->getImportMap();
|
|
$import_fields = $idc->getDuplicateCheckIndexedFiles();
|
|
|
|
//check for saved entries from mapping
|
|
$dupe_disabled = array();
|
|
$dupe_enabled = array();
|
|
$mapped_fields = array('full_name');
|
|
|
|
//grab the list of user mapped fields
|
|
foreach ($_REQUEST as $req_k => $req_v) {
|
|
if (strpos($req_k, 'olnum')>0) {
|
|
if (empty($req_v) || $req_v != '-1') {
|
|
$mapped_fields[] = $req_v;
|
|
}
|
|
}
|
|
}
|
|
|
|
foreach ($import_fields as $ik=>$iv) {
|
|
|
|
//grab the field value from the key
|
|
$ik_field = explode('::', $ik);
|
|
|
|
//field is not a custom field and was not included in the key, or was not in mapped fields, so skip
|
|
if (strpos($ik_field[0], 'ustomfield::')>0 || (empty($ik_field[1]) || !in_array($ik_field[1], $mapped_fields))) {
|
|
//skip indexed fields that are not defined in user mapping or
|
|
continue;
|
|
}
|
|
|
|
if (isset($field_map['dupe_'.$ik])) {
|
|
//index is defined in mapping, so set this index as enabled if not already defined
|
|
$dupe_enabled[] = array("dupeVal" => $ik, "label" => $iv);
|
|
} else {
|
|
//index is not defined in mapping, so display as disabled if not already defined
|
|
$dupe_disabled[] = array("dupeVal" => $ik, "label" => $iv);
|
|
}
|
|
}
|
|
|
|
$enabled_dupes = json_encode($dupe_enabled);
|
|
$disabled_dupes = json_encode($dupe_disabled);
|
|
|
|
$stepTitle4 = $mod_strings['LBL_IMPORT_RECORDS'];
|
|
|
|
$dateTimeFormat = $GLOBALS['timedate']->get_cal_date_time_format();
|
|
$type = (isset($_REQUEST['type'])) ? $_REQUEST['type'] : '';
|
|
$lblUsed = str_replace(":", "", (string) $mod_strings['LBL_INDEX_USED']);
|
|
$lblNotUsed = str_replace(":", "", (string) $mod_strings['LBL_INDEX_NOT_USED']);
|
|
return <<<EOJAVASCRIPT
|
|
|
|
|
|
|
|
|
|
/**
|
|
* Singleton to handle processing the import
|
|
*/
|
|
ProcessImport = new function()
|
|
{
|
|
/*
|
|
* number of file to process processed
|
|
*/
|
|
this.fileCount = 0;
|
|
|
|
/*
|
|
* total files to processs
|
|
*/
|
|
this.fileTotal = {$count};
|
|
|
|
/*
|
|
* total records to process
|
|
*/
|
|
this.recordCount = {$recCount};
|
|
|
|
/*
|
|
* maximum number of records per file
|
|
*/
|
|
this.recordThreshold = {$sugar_config['import_max_records_per_file']};
|
|
|
|
/*
|
|
* submits the form
|
|
*/
|
|
this.submit = function()
|
|
{
|
|
document.getElementById("importstepdup").tmp_file.value =
|
|
document.getElementById("importstepdup").tmp_file_base.value + '-' + this.fileCount;
|
|
YAHOO.util.Connect.setForm(document.getElementById("importstepdup"));
|
|
YAHOO.util.Connect.asyncRequest('POST', 'index.php',
|
|
{
|
|
success: function(o) {
|
|
if (o.responseText.replace(/^\s+|\s+$/g, '') != '') {
|
|
this.failure(o);
|
|
}
|
|
else {
|
|
var locationStr = "index.php?module=Import"
|
|
+ "&action=Last"
|
|
+ "¤t_step=" + document.getElementById("importstepdup").current_step.value
|
|
+ "&type={$type}"
|
|
+ "&import_module={$_REQUEST['import_module']}"
|
|
+ "&has_header=" + document.getElementById("importstepdup").has_header.value ;
|
|
if ( ProcessImport.fileCount >= ProcessImport.fileTotal ) {
|
|
YAHOO.SUGAR.MessageBox.updateProgress(1,'{$mod_strings['LBL_IMPORT_COMPLETED']}');
|
|
SUGAR.util.hrefURL(locationStr);
|
|
}
|
|
else {
|
|
document.getElementById("importstepdup").save_map_as.value = '';
|
|
ProcessImport.fileCount++;
|
|
ProcessImport.submit();
|
|
}
|
|
}
|
|
},
|
|
failure: function(o) {
|
|
YAHOO.SUGAR.MessageBox.minWidth = 500;
|
|
YAHOO.SUGAR.MessageBox.show({
|
|
type: "alert",
|
|
title: '{$mod_strings['LBL_IMPORT_ERROR']}',
|
|
msg: o.responseText,
|
|
fn: function() { window.location.reload(true); }
|
|
});
|
|
}
|
|
}
|
|
);
|
|
var move = 0;
|
|
if ( this.fileTotal > 0 ) {
|
|
move = this.fileCount/this.fileTotal;
|
|
}
|
|
YAHOO.SUGAR.MessageBox.updateProgress( move,
|
|
"{$mod_strings['LBL_IMPORT_RECORDS']} " + ((this.fileCount * this.recordThreshold) + 1)
|
|
+ " {$mod_strings['LBL_IMPORT_RECORDS_TO']} " + Math.min(((this.fileCount+1) * this.recordThreshold),this.recordCount)
|
|
+ " {$mod_strings['LBL_IMPORT_RECORDS_OF']} " + this.recordCount );
|
|
}
|
|
|
|
/*
|
|
* begins the form submission process
|
|
*/
|
|
this.begin = function()
|
|
{
|
|
datestarted = '{$mod_strings['LBL_IMPORT_STARTED']} ' +
|
|
YAHOO.util.Date.format('{$dateTimeFormat}');
|
|
YAHOO.SUGAR.MessageBox.show({
|
|
title: '{$stepTitle4}',
|
|
msg: datestarted,
|
|
width: 500,
|
|
type: "progress",
|
|
closable:false,
|
|
animEl: 'importnow'
|
|
});
|
|
SUGAR.saveConfigureDupes();
|
|
this.submit();
|
|
}
|
|
}
|
|
|
|
//begin dragdrop code
|
|
var enabled_dupes = {$enabled_dupes};
|
|
var disabled_dupes = {$disabled_dupes};
|
|
var lblEnabled = '{$lblUsed}';
|
|
var lblDisabled = '{$lblNotUsed}';
|
|
|
|
|
|
SUGAR.enabledDupesTable = new YAHOO.SUGAR.DragDropTable(
|
|
"enabled_div",
|
|
[{key:"label", label: lblEnabled, width: 225, sortable: false},
|
|
{key:"module", label: lblEnabled, hidden:true}],
|
|
new YAHOO.util.LocalDataSource(enabled_dupes, {
|
|
responseSchema: {
|
|
resultsList : "dupeVal",
|
|
fields : [{key : "dupeVal"}, {key : "label"}]
|
|
}
|
|
}),
|
|
{
|
|
height: "300px",
|
|
group: ["enabled_div", "disabled_div"]
|
|
}
|
|
);
|
|
SUGAR.disabledDupesTable = new YAHOO.SUGAR.DragDropTable(
|
|
"disabled_div",
|
|
[{key:"label", label: lblDisabled, width: 225, sortable: false},
|
|
{key:"module", label: lblDisabled, hidden:true}],
|
|
new YAHOO.util.LocalDataSource(disabled_dupes, {
|
|
responseSchema: {
|
|
resultsList : "dupeVal",
|
|
fields : [{key : "dupeVal"}, {key : "label"}]
|
|
}
|
|
}),
|
|
{
|
|
height: "300px",
|
|
group: ["enabled_div", "disabled_div"]
|
|
}
|
|
);
|
|
SUGAR.enabledDupesTable.disableEmptyRows = true;
|
|
SUGAR.disabledDupesTable.disableEmptyRows = true;
|
|
SUGAR.enabledDupesTable.addRow({module: "", label: ""});
|
|
SUGAR.disabledDupesTable.addRow({module: "", label: ""});
|
|
SUGAR.enabledDupesTable.render();
|
|
SUGAR.disabledDupesTable.render();
|
|
|
|
|
|
SUGAR.saveConfigureDupes = function()
|
|
{
|
|
var enabledTable = SUGAR.enabledDupesTable;
|
|
var dupeVal = [];
|
|
for(var i=0; i < enabledTable.getRecordSet().getLength(); i++){
|
|
var data = enabledTable.getRecord(i).getData();
|
|
if (data.dupeVal && data.dupeVal != '')
|
|
dupeVal[i] = data.dupeVal;
|
|
}
|
|
YAHOO.util.Dom.get('enabled_dupes').value = YAHOO.lang.JSON.stringify(dupeVal);
|
|
|
|
var disabledTable = SUGAR.disabledDupesTable;
|
|
var dupeVal = [];
|
|
for(var i=0; i < disabledTable.getRecordSet().getLength(); i++){
|
|
var data = disabledTable.getRecord(i).getData();
|
|
if (data.dupeVal && data.dupeVal != '')
|
|
dupeVal[i] = data.dupeVal;
|
|
}
|
|
YAHOO.util.Dom.get('disabled_dupes').value = YAHOO.lang.JSON.stringify(dupeVal);
|
|
}
|
|
|
|
|
|
|
|
|
|
document.getElementById('goback').onclick = function(){
|
|
document.getElementById('importstepdup').action.value = 'step3';
|
|
document.getElementById('importstepdup').to_pdf.value = '0';
|
|
var success = function(data) {
|
|
var response = YAHOO.lang.JSON.parse(data.responseText);
|
|
importWizardDialogDiv = document.getElementById('importWizardDialogDiv');
|
|
importWizardDialogTitle = document.getElementById('importWizardDialogTitle');
|
|
submitDiv = document.getElementById('submitDiv');
|
|
importWizardDialogDiv.innerHTML = response['html'];
|
|
importWizardDialogTitle.innerHTML = response['title'];
|
|
SUGAR.util.evalScript(response['html']);
|
|
submitDiv.innerHTML = response['submitContent'];
|
|
eval(response['script']);
|
|
|
|
}
|
|
|
|
var formObject = document.getElementById('importstepdup');
|
|
YAHOO.util.Connect.setForm(formObject);
|
|
var cObj = YAHOO.util.Connect.asyncRequest('POST', "index.php", {success: success, failure: success});
|
|
}
|
|
|
|
document.getElementById('importnow').onclick = function(){
|
|
SUGAR.saveConfigureDupes();
|
|
|
|
var form = document.getElementById('importstepdup');
|
|
// Move on to next step
|
|
document.getElementById('importstepdup').action.value = 'Step4';
|
|
ProcessImport.begin();
|
|
}
|
|
|
|
|
|
enableQS(false);
|
|
|
|
EOJAVASCRIPT;
|
|
}
|
|
}
|