- 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.
117 lines
4.2 KiB
PHP
117 lines
4.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 SalesOrder_SaveAjax_Action extends Inventory_SaveAjax_Action {
|
|
|
|
/**
|
|
* Function to get the record model based on the request parameters
|
|
* @param Vtiger_Request $request
|
|
* @return Vtiger_Record_Model or Module specific Record Model instance
|
|
*/
|
|
public function getRecordModelFromRequest(Vtiger_Request $request) {
|
|
$moduleName = $request->getModule();
|
|
$recordId = $request->get('record');
|
|
|
|
if($request->get('field') == 'enable_recurring'){
|
|
$enableRecurrence = true;
|
|
}
|
|
if(!empty($recordId)) {
|
|
$recordModel = Vtiger_Record_Model::getInstanceById($recordId, $moduleName);
|
|
$recordModel->set('id', $recordId);
|
|
$recordModel->set('mode', 'edit');
|
|
|
|
$fieldModelList = $recordModel->getModule()->getFields();
|
|
foreach ($fieldModelList as $fieldName => $fieldModel) {
|
|
//For not converting createdtime and modified time to user format
|
|
$uiType = $fieldModel->get('uitype');
|
|
if ($uiType == 70) {
|
|
$fieldValue = $recordModel->get($fieldName);
|
|
} else {
|
|
$fieldValue = $fieldModel->getUITypeModel()->getUserRequestValue($recordModel->get($fieldName));
|
|
}
|
|
|
|
|
|
if ($request->has($fieldName)) {
|
|
$fieldValue = $request->get($fieldName, null);
|
|
} else if ($fieldName === $request->get('field')) {
|
|
$fieldValue = $request->get('value');
|
|
}
|
|
|
|
/**
|
|
* If field is enable recurrence then we need to pass related fields of
|
|
* recurrence to save,because untill enable recurrence is checked,the
|
|
* related field values wont get saved
|
|
*/
|
|
if($enableRecurrence){
|
|
$requestFieldValue = $request->get($fieldName);
|
|
if($requestFieldValue != ''){
|
|
$fieldValue = $request->get($fieldName);
|
|
}
|
|
}
|
|
|
|
$fieldDataType = $fieldModel->getFieldDataType();
|
|
if($fieldValue){
|
|
$fieldValue = Vtiger_Util_Helper::validateFieldValue($fieldValue,$fieldModel);
|
|
}
|
|
if ($fieldDataType == 'time' && $fieldValue !== null) {
|
|
$fieldValue = Vtiger_Time_UIType::getTimeValueWithSeconds($fieldValue);
|
|
}
|
|
|
|
//SalesPlatform.ru begin
|
|
if($fieldModel->isCKEEnabled()) {
|
|
$fieldValue = vtlib_purify(decode_html($fieldValue));
|
|
}
|
|
//SalesPlatform.ru end
|
|
|
|
if ($fieldValue !== null) {
|
|
if (!is_array($fieldValue)) {
|
|
$fieldValue = trim($fieldValue);
|
|
}
|
|
$recordModel->set($fieldName, $fieldValue);
|
|
}
|
|
$recordModel->set($fieldName, $fieldValue);
|
|
}
|
|
} else {
|
|
$moduleModel = Vtiger_Module_Model::getInstance($moduleName);
|
|
|
|
$recordModel = Vtiger_Record_Model::getCleanInstance($moduleName);
|
|
$recordModel->set('mode', '');
|
|
|
|
$fieldModelList = $moduleModel->getFields();
|
|
foreach ($fieldModelList as $fieldName => $fieldModel) {
|
|
if ($request->has($fieldName)) {
|
|
$fieldValue = $request->get($fieldName, null);
|
|
} else {
|
|
$fieldValue = $fieldModel->getDefaultFieldValue();
|
|
}
|
|
$fieldDataType = $fieldModel->getFieldDataType();
|
|
if($fieldValue){
|
|
$fieldValue = Vtiger_Util_Helper::validateFieldValue($fieldValue,$fieldModel);
|
|
}
|
|
if ($fieldDataType == 'time' && $fieldValue !== null) {
|
|
$fieldValue = Vtiger_Time_UIType::getTimeValueWithSeconds($fieldValue);
|
|
}
|
|
|
|
//SalesPlatform.ru begin
|
|
if($fieldModel->isCKEEnabled()) {
|
|
$fieldValue = vtlib_purify(decode_html($fieldValue));
|
|
}
|
|
//SalesPlatform.ru end
|
|
|
|
if ($fieldValue !== null) {
|
|
if (!is_array($fieldValue)) {
|
|
$fieldValue = trim($fieldValue);
|
|
}
|
|
$recordModel->set($fieldName, $fieldValue);
|
|
}
|
|
}
|
|
}
|
|
return $recordModel;
|
|
}
|
|
} |