Files
crm.clientright.ru/layouts/v7/modules/Settings/Webforms/EditView.tpl
Fedor ac7467f0b4 Major CRM updates: AI Assistant, Court Status API, S3 integration improvements, and extensive file storage system
- 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.
2025-10-16 11:17:21 +03:00

76 lines
5.2 KiB
Smarty

{*+**********************************************************************************
* The contents of this file are subject to the vtiger CRM Public License Version 1.1
* ("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.
************************************************************************************}
<div class="editViewPageDiv">
<div class="col-lg-12 col-md-12 col-lg-pull-0">
<form class="form-horizontal" id="EditView" name="edit" method="post" action="index.php" enctype="multipart/form-data">
<div class="editViewHeader">
{assign var=SINGLE_MODULE_NAME value='SINGLE_'|cat:$MODULE}
{if $RECORD_ID neq ''}
<h3 class="editHeader" style="margin-top:5px;" title="{vtranslate('LBL_EDITING', $MODULE)} {vtranslate($SINGLE_MODULE_NAME, $MODULE)} {$RECORD_STRUCTURE_MODEL->getRecordName()}">{vtranslate('LBL_EDITING', $MODULE)} {vtranslate($SINGLE_MODULE_NAME, $MODULE)} - {$RECORD_STRUCTURE_MODEL->getRecordName()}</h3>
{else}
<h3 class="editHeader" style="margin-top:5px;">{vtranslate('LBL_CREATING_NEW', $MODULE)} {vtranslate($SINGLE_MODULE_NAME, $MODULE)}</h3>
{/if}
</div>
<div class="editViewBody">
<div class="editViewContents">
{assign var=WIDTHTYPE value=$USER_MODEL->get('rowheight')}
{assign var=QUALIFIED_MODULE_NAME value={$MODULE}}
{assign var=IS_PARENT_EXISTS value=strpos($MODULE,":")}
{if $IS_PARENT_EXISTS}
{assign var=SPLITTED_MODULE value=":"|explode:$MODULE}
<input type="hidden" name="module" value="{$SPLITTED_MODULE[1]}" />
<input type="hidden" name="parent" value="{$SPLITTED_MODULE[0]}" />
{else}
<input type="hidden" name="module" value="{$MODULE}" />
{/if}
<input type="hidden" name="action" value="Save" />
<input type="hidden" name="record" value="{$RECORD_ID}" />
<input type="hidden" name="defaultCallDuration" value="{$USER_MODEL->get('callduration')}" />
<input type="hidden" name="defaultOtherEventDuration" value="{$USER_MODEL->get('othereventduration')}" />
{if $IS_RELATION_OPERATION }
<input type="hidden" name="sourceModule" value="{$SOURCE_MODULE}" />
<input type="hidden" name="sourceRecord" value="{$SOURCE_RECORD}" />
<input type="hidden" name="relationOperation" value="{$IS_RELATION_OPERATION}" />
{/if}
{if $RETURN_VIEW}
<input type="hidden" name="returnmodule" value="{$RETURN_MODULE}" />
<input type="hidden" name="returnview" value="{$RETURN_VIEW}" />
<input type="hidden" name="returnrecord" value="{$RETURN_RECORD}" />
<input type="hidden" name="returntab_label" value="{$RETURN_RELATED_TAB}" />
<input type="hidden" name="returnrelatedModule" value="{$RETURN_RELATED_MODULE}" />
<input type="hidden" name="returnpage" value="{$RETURN_PAGE}" />
<input type="hidden" name="returnviewname" value="{$RETURN_VIEW_NAME}" />
<input type="hidden" name="returnsearch_params" value='{Vtiger_Functions::jsonEncode($RETURN_SEARCH_PARAMS)}' />
<input type="hidden" name="returnsearch_key" value={$RETURN_SEARCH_KEY} />
<input type="hidden" name="returnsearch_value" value={$RETURN_SEARCH_VALUE} />
<input type="hidden" name="returnoperator" value={$RETURN_SEARCH_OPERATOR} />
<input type="hidden" name="returnsortorder" value={$RETURN_SORTBY} />
<input type="hidden" name="returnorderby" value="{$RETURN_ORDERBY}" />
<input type="hidden" name="returnmode" value={$RETURN_MODE} />
<input type="hidden" name="returnrelationId" value="{$RETURN_RELATION_ID}" />
{/if}
{include file="partials/EditViewContents.tpl"|@vtemplate_path:$MODULE}
<div class="targetFieldsTableContainer">
{include file="FieldsEditView.tpl"|@vtemplate_path:$QUALIFIED_MODULE}
</div>
</div>
</div>
<div class='modal-overlay-footer clearfix'>
<div class="row clearfix">
<div class='textAlignCenter col-lg-12 col-md-12 col-sm-12 '>
<button type='submit' class='btn btn-success saveButton' >{vtranslate('LBL_SAVE', $MODULE)}</button>&nbsp;&nbsp;
<a class='cancelLink' href="javascript:history.back()" type="reset">{vtranslate('LBL_CANCEL', $MODULE)}</a>
</div>
</div>
</div>
</form>
</div>
</div>
</div>