- 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.
149 lines
7.2 KiB
PHP
149 lines
7.2 KiB
PHP
<?php
|
|
/*+**********************************************************************************
|
|
The content of this file is subject to the ITS4YouMultiCompany license.
|
|
* ("License"); You may not use this file except in compliance with the License
|
|
* The Initial Developer of the Original Code is IT-Solutions4You s.r.o.
|
|
* Portions created by IT-Solutions4You s.r.o. are Copyright(C) IT-Solutions4You s.r.o.
|
|
* All Rights Reserved.
|
|
************************************************************************************/
|
|
|
|
class ITS4YouMultiCompany_EditNumbering_View extends Vtiger_Edit_View
|
|
{
|
|
public function process(Vtiger_Request $request)
|
|
{
|
|
$viewer = $this->getViewer($request);
|
|
$moduleName = $request->getModule();
|
|
$record = $request->get('record');
|
|
if (!empty($record) && $request->get('isDuplicate') == true) {
|
|
$recordModel = $this->record ? $this->record : Vtiger_Record_Model::getInstanceById($record, $moduleName);
|
|
$viewer->assign('MODE', '');
|
|
|
|
//While Duplicating record, If the related record is deleted then we are removing related record info in record model
|
|
$mandatoryFieldModels = $recordModel->getModule()->getMandatoryFieldModels();
|
|
foreach ($mandatoryFieldModels as $fieldModel) {
|
|
if ($fieldModel->isReferenceField()) {
|
|
$fieldName = $fieldModel->get('name');
|
|
if (Vtiger_Util_Helper::checkRecordExistance($recordModel->get($fieldName))) {
|
|
$recordModel->set($fieldName, '');
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
if (!empty($record)) {
|
|
$recordModel = $this->record ? $this->record : Vtiger_Record_Model::getInstanceById($record, $moduleName);
|
|
$viewer->assign('RECORD_ID', $record);
|
|
$viewer->assign('MODE', 'edit');
|
|
} else {
|
|
$recordModel = Vtiger_Record_Model::getCleanInstance($moduleName);
|
|
$viewer->assign('MODE', '');
|
|
}
|
|
}
|
|
|
|
if (!$this->record) {
|
|
$this->record = $recordModel;
|
|
}
|
|
|
|
$moduleModel = $recordModel->getModule();
|
|
$fieldList = $moduleModel->getFields();
|
|
$requestFieldList = array_intersect_key($request->getAllPurified(), $fieldList);
|
|
|
|
$relContactId = $request->get('contact_id');
|
|
if ($relContactId && $moduleName == 'Calendar') {
|
|
$contactRecordModel = Vtiger_Record_Model::getInstanceById($relContactId);
|
|
$requestFieldList['parent_id'] = $contactRecordModel->get('account_id');
|
|
}
|
|
|
|
foreach ($requestFieldList as $fieldName => $fieldValue) {
|
|
$fieldModel = $fieldList[$fieldName];
|
|
$specialField = false;
|
|
// We collate date and time part together in the EditView UI handling
|
|
// so a bit of special treatment is required if we come from QuickCreate
|
|
if ($moduleName == 'Calendar' && empty($record) && $fieldName == 'time_start' && !empty($fieldValue)) {
|
|
$specialField = true;
|
|
// Convert the incoming user-picked time to GMT time
|
|
// which will get re-translated based on user-time zone on EditForm
|
|
$fieldValue = DateTimeField::convertToDBTimeZone($fieldValue)->format("H:i");
|
|
|
|
}
|
|
|
|
if ($moduleName == 'Calendar' && empty($record) && $fieldName == 'date_start' && !empty($fieldValue)) {
|
|
$startTime = Vtiger_Time_UIType::getTimeValueWithSeconds($requestFieldList['time_start']);
|
|
$startDateTime = Vtiger_Datetime_UIType::getDBDateTimeValue($fieldValue . " " . $startTime);
|
|
list($startDate, $startTime) = explode(' ', $startDateTime);
|
|
$fieldValue = Vtiger_Date_UIType::getDisplayDateValue($startDate);
|
|
}
|
|
if ($fieldModel->isEditable() || $specialField) {
|
|
$recordModel->set($fieldName, $fieldModel->getDBInsertValue($fieldValue));
|
|
}
|
|
}
|
|
|
|
$recordStructureInstance = Vtiger_RecordStructure_Model::getInstanceFromRecordModel($recordModel, Vtiger_RecordStructure_Model::RECORD_STRUCTURE_MODE_EDIT);
|
|
$picklistDependencyDatasource = Vtiger_DependencyPicklist::getPicklistDependencyDatasource($moduleName);
|
|
|
|
$viewer->assign('PICKIST_DEPENDENCY_DATASOURCE', Vtiger_Functions::jsonEncode($picklistDependencyDatasource));
|
|
$viewer->assign('RECORD_STRUCTURE_MODEL', $recordStructureInstance);
|
|
$viewer->assign('RECORD_STRUCTURE', $recordStructureInstance->getStructure());
|
|
$viewer->assign('MODULE', $moduleName);
|
|
$viewer->assign('CURRENTDATE', date('Y-n-j'));
|
|
$viewer->assign('USER_MODEL', Users_Record_Model::getCurrentUserModel());
|
|
|
|
$isRelationOperation = $request->get('relationOperation');
|
|
|
|
//if it is relation edit
|
|
$viewer->assign('IS_RELATION_OPERATION', $isRelationOperation);
|
|
if ($isRelationOperation) {
|
|
$viewer->assign('SOURCE_MODULE', $request->get('sourceModule'));
|
|
$viewer->assign('SOURCE_RECORD', $request->get('sourceRecord'));
|
|
}
|
|
|
|
// added to set the return values
|
|
if ($request->get('returnview')) {
|
|
$request->setViewerReturnValues($viewer);
|
|
}
|
|
$viewer->assign('MAX_UPLOAD_LIMIT_MB', Vtiger_Util_Helper::getMaxUploadSize());
|
|
$viewer->assign('MAX_UPLOAD_LIMIT_BYTES', Vtiger_Util_Helper::getMaxUploadSizeInBytes());
|
|
|
|
/* ITS4You start JK */
|
|
$supportedModules = ITS4YouMultiCompany_CustomRecordNumbering_Model::getAllowedModules();
|
|
|
|
$sourceModule = $request->get('sourceModule');
|
|
if ($sourceModule) {
|
|
$defaultModuleModel = $supportedModules[getTabid($sourceModule)];
|
|
} else {
|
|
$defaultModuleModel = reset($supportedModules);
|
|
}
|
|
|
|
$viewer->assign('SUPPORTED_MODULES', $supportedModules);
|
|
$viewer->assign('SUPPORTED_MODULES_COUNT', count($supportedModules));
|
|
$viewer->assign('DEFAULT_MODULE_MODEL', $defaultModuleModel);
|
|
$viewer->assign('TAB_LABEL', $request->get('tab_label'));
|
|
|
|
$viewer->assign("QUALIFIED_MODULE", $request->getModule());
|
|
|
|
if ($request->get('displayMode') == 'overlay') {
|
|
$viewer->assign('SCRIPTS', $this->getOverlayHeaderScripts($request));
|
|
$viewer->view('OverlayEditView.tpl', $moduleName);
|
|
} else {
|
|
$viewer->view('EditView.tpl', $moduleName);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Function to get the list of Script models to be included
|
|
* @param Vtiger_Request $request
|
|
* @return <Array> - List of Vtiger_JsScript_Model instances
|
|
*/
|
|
public function getHeaderScripts(Vtiger_Request $request)
|
|
{
|
|
$headerScriptInstances = parent::getHeaderScripts($request);
|
|
$moduleName = $request->getModule();
|
|
|
|
$jsFileNames = array(
|
|
"layouts.v7.modules.$moduleName.resources.EditNumbering",
|
|
);
|
|
|
|
$jsScriptInstances = $this->checkAndConvertJsScripts($jsFileNames);
|
|
$headerScriptInstances = array_merge($headerScriptInstances, $jsScriptInstances);
|
|
return $headerScriptInstances;
|
|
}
|
|
} |