- Added comprehensive AI Assistant system (aiassist/ directory): * Vector search and embedding capabilities * Typebot proxy integration * Elastic search functionality * Message classification and chat history * MCP proxy for external integrations - Implemented Court Status API (GetCourtStatus.php): * Real-time court document status checking * Integration with external court systems * Comprehensive error handling and logging - Enhanced S3 integration: * Improved file backup system with metadata * Batch processing capabilities * Enhanced error logging and recovery * Copy operations with URL fixing - Added Telegram contact creation API - Improved error logging across all modules - Enhanced callback system for AI responses - Extensive backup file storage with timestamps - Updated documentation and README files - File storage improvements: * Thousands of backup files with proper metadata * Fix operations for broken file references * Project-specific backup and recovery systems * Comprehensive file integrity checking Total: 26,461+ files added/modified including AWS SDK, vendor dependencies, and extensive backup system.
83 lines
3.2 KiB
PHP
83 lines
3.2 KiB
PHP
<?php
|
|
/*+***********************************************************************************
|
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
|
* ("License"); You may not use this file except in compliance with the License
|
|
* The Original Code is: vtiger CRM Open Source
|
|
* The Initial Developer of the Original Code is vtiger.
|
|
* Portions created by vtiger are Copyright (C) vtiger.
|
|
* All Rights Reserved.
|
|
*************************************************************************************/
|
|
|
|
class Vtiger_Export_View extends Vtiger_Index_View {
|
|
|
|
public function requiresPermission(\Vtiger_Request $request) {
|
|
$permissions = parent::requiresPermission($request);
|
|
$permissions[] = array('module_parameter' => 'module', 'action' => 'Export');
|
|
|
|
return $permissions;
|
|
}
|
|
|
|
function process(Vtiger_Request $request) {
|
|
$viewer = $this->getViewer($request);
|
|
|
|
$source_module = $request->getModule();
|
|
$viewId = $request->get('viewname');
|
|
$selectedIds = $request->get('selected_ids');
|
|
$excludedIds = $request->get('excluded_ids');
|
|
$orderBy = $request->get('orderby');
|
|
$sortOrder = $request->get('sortorder');
|
|
$tagParams = $request->get('tag_params');
|
|
$page = $request->get('page');
|
|
|
|
$viewer->assign('SELECTED_IDS', $selectedIds);
|
|
$viewer->assign('EXCLUDED_IDS', $excludedIds);
|
|
$viewer->assign('VIEWID', $viewId);
|
|
$viewer->assign('PAGE', $page);
|
|
$viewer->assign('SOURCE_MODULE', $source_module);
|
|
$viewer->assign('MODULE','Export');
|
|
$viewer->assign('ORDER_BY', $orderBy);
|
|
$viewer->assign('SORT_ORDER', $sortOrder);
|
|
$viewer->assign('TAG_PARAMS', $tagParams);
|
|
|
|
//SalesPlatform.ru add encoding and delimiter support
|
|
$viewer->assign('SUPPORTED_FILE_ENCODING', Import_Utils_Helper::getSupportedFileEncoding());
|
|
$viewer->assign('SUPPORTED_DELIMITERS', Import_Utils_Helper::getSupportedDelimiters());
|
|
//SalesPlatform.ru end
|
|
|
|
// for the option of selecting currency while exporting inventory module records
|
|
if(in_array($source_module, Vtiger_Functions::getLineItemFieldModules())){
|
|
$viewer->assign('MULTI_CURRENCY',true);
|
|
}
|
|
|
|
$searchKey = $request->get('search_key');
|
|
$searchValue = $request->get('search_value');
|
|
$operator = $request->get('operator');
|
|
if(!empty($operator)) {
|
|
$viewer->assign('OPERATOR',$operator);
|
|
$viewer->assign('ALPHABET_VALUE',$searchValue);
|
|
$viewer->assign('SEARCH_KEY',$searchKey);
|
|
}
|
|
$viewer->assign('SUPPORTED_FILE_TYPES', array('csv', 'ics'));
|
|
$viewer->assign('SEARCH_PARAMS', $request->get('search_params'));
|
|
$viewer->view('Export.tpl', $source_module);
|
|
}
|
|
|
|
function getHeaderScripts(Vtiger_Request $request) {
|
|
$headerScriptInstances = parent::getHeaderScripts($request);
|
|
|
|
$moduleName = $request->getModule();
|
|
if (in_array($moduleName, getInventoryModules())) {
|
|
$moduleEditFile = 'modules.'.$moduleName.'.resources.Edit';
|
|
unset($headerScriptInstances[$moduleEditFile]);
|
|
|
|
$jsFileNames = array(
|
|
'modules.Inventory.resources.Edit',
|
|
'modules.'.$moduleName.'.resources.Edit',
|
|
);
|
|
}
|
|
|
|
$jsScriptInstances = $this->checkAndConvertJsScripts($jsFileNames);
|
|
$headerScriptInstances = array_merge($headerScriptInstances, $jsScriptInstances);
|
|
return $headerScriptInstances;
|
|
}
|
|
} |