Example #1
0
 /** 
  * @see SugarView::display()
  */
 public function display()
 {
     global $mod_strings, $app_strings, $current_user, $sugar_config, $current_language;
     $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", $this->getModuleTitle());
     // lookup this module's $mod_strings to get the correct module name
     $language = isset($current_language) ? $current_language : $sugar_config['default_language'];
     $module_mod_strings = return_module_language($current_language, $_REQUEST['import_module']);
     $this->ss->assign("MODULENAME", $module_mod_strings['LBL_MODULE_NAME']);
     $this->ss->assign("JAVASCRIPT", $this->_getJS());
     // read status file to get totals for records imported, errors, and duplicates
     $count = 0;
     $errorCount = 0;
     $dupeCount = 0;
     $createdCount = 0;
     $updatedCount = 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];
         $createdCount += (int) $row[3];
         $updatedCount += (int) $row[4];
     }
     fclose($fp);
     $this->ss->assign("errorCount", $errorCount);
     $this->ss->assign("dupeCount", $dupeCount);
     $this->ss->assign("createdCount", $createdCount);
     $this->ss->assign("updatedCount", $updatedCount);
     $this->ss->assign("errorFile", ImportCacheFiles::getErrorFileName());
     $this->ss->assign("errorrecordsFile", ImportCacheFiles::getErrorRecordsFileName());
     $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');
     foreach (UsersLastImport::getBeansByImport($_REQUEST['import_module']) as $beanname) {
         // load bean
         if (!$focus instanceof $beanname) {
             require_once $GLOBALS['beanFiles'][$beanname];
             $focus = new $beanname();
         }
         // build listview to show imported records
         require_once 'include/ListView/ListViewFacade.php';
         $lvf = new ListViewFacade($focus, $focus->module_dir, 0);
         $params = array();
         if (!empty($_REQUEST['orderBy'])) {
             $params['orderBy'] = $_REQUEST['orderBy'];
             $params['overrideOrder'] = true;
             if (!empty($_REQUEST['sortOrder'])) {
                 $params['sortOrder'] = $_REQUEST['sortOrder'];
             }
         }
         $beanname = $focus->object_name == 'Case' ? 'aCase' : $focus->object_name;
         // 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}' \n                AND users_last_import.bean_type = '{$beanname}' \n                AND users_last_import.bean_id = {$focus->table_name}.id \n                AND users_last_import.deleted = 0 \n                AND {$focus->table_name}.deleted = 0";
         $where = " {$focus->table_name}.id IN ( \n                        SELECT users_last_import.bean_id\n                            FROM users_last_import\n                            WHERE users_last_import.assigned_user_id = '{$GLOBALS['current_user']->id}' \n                                AND users_last_import.bean_type = '{$beanname}' \n                                AND users_last_import.deleted = 0 )";
         $lbl_last_imported = $mod_strings['LBL_LAST_IMPORTED'];
         $lvf->lv->mergeduplicates = false;
         $module_mod_strings = return_module_language($current_language, $focus->module_dir);
         $lvf->setup('', $where, $params, $module_mod_strings, 0, -1, '', strtoupper($beanname), array(), 'id');
         $lvf->display($lbl_last_imported . ": " . $module_mod_strings['LBL_MODULE_NAME']);
     }
 }
Example #2
0
 protected function getListViewResults()
 {
     global $mod_strings, $current_language;
     // build listview to show imported records
     $lvf = new ListViewFacade($this->bean, $this->bean->module_dir, 0);
     $params = array();
     if (!empty($_REQUEST['orderBy'])) {
         $params['orderBy'] = $_REQUEST['orderBy'];
         $params['overrideOrder'] = true;
         if (!empty($_REQUEST['sortOrder'])) {
             $params['sortOrder'] = $_REQUEST['sortOrder'];
         }
     }
     $beanname = $this->bean->object_name == 'Case' ? 'aCase' : $this->bean->object_name;
     // 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}'\n                AND users_last_import.bean_type = '{$beanname}'\n                AND users_last_import.bean_id = {$this->bean->table_name}.id\n                AND users_last_import.deleted = 0\n                AND {$this->bean->table_name}.deleted = 0";
     $where = " {$this->bean->table_name}.id IN (\n                        SELECT users_last_import.bean_id\n                            FROM users_last_import\n                            WHERE users_last_import.assigned_user_id = '{$GLOBALS['current_user']->id}'\n                                AND users_last_import.bean_type = '{$beanname}'\n                                AND users_last_import.deleted = 0 )";
     $lvf->lv->mergeduplicates = false;
     $lvf->lv->showMassupdateFields = false;
     if ($lvf->type == 2) {
         $lvf->template = 'include/ListView/ListViewNoMassUpdate.tpl';
     }
     $module_mod_strings = return_module_language($current_language, $this->bean->module_dir);
     $lvf->setup('', $where, $params, $module_mod_strings, 0, -1, '', strtoupper($beanname), array(), 'id');
     global $app_list_strings;
     return $lvf->display($app_list_strings['moduleList'][$this->bean->module_dir], 'main', TRUE);
 }