Files
crm.clientright.ru/layouts/v7/modules/Inventory/OverlayEditView.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

78 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.
************************************************************************************}
<script type="text/javascript" src="{vresource_url('layouts/v7/modules/Inventory/resources/Edit.js')}"></script>
<script type="text/javascript" src="{vresource_url('layouts/v7/modules/'|cat:{$MODULE}|cat:'/resources/Edit.js')}"></script>
<div class='fc-overlay-modal overlayEdit'>
<div class = "modal-content">
<div class="overlayHeader">
{assign var=TITLE value="{vtranslate('LBL_EDITING', $MODULE)} {vtranslate($SINGLE_MODULE_NAME, $MODULE)} {$RECORD_STRUCTURE_MODEL->getRecordName()}"}
{include file="ModalHeader.tpl"|vtemplate_path:$MODULE}
</div>
<form class="form-horizontal recordEditView" id="EditView" name="edit" method="post" action="index.php" enctype="multipart/form-data">
<div class = "modal-body 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_Util_Helper::toSafeHTML(ZEND_JSON::encode($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:'Inventory'}
</div>
</div>
<div class='modal-footer overlayFooter'>
<center>
<footer>
{* SalesPlatform.ru begin *}
{*
<button class="btn btn-success saveButton" type="submit">Save</button>
<a class="cancelLink" data-dismiss="modal" type="reset">Cancel</a>
*}
<button class="btn btn-success saveButton" type="submit">{vtranslate('LBL_SAVE')}</button>
<a class="cancelLink" data-dismiss="modal" type="reset">{vtranslate('LBL_CANCEL')}</a>
{* SalesPlatform.ru end *}
</footer>
</center>
</div>
</form>
</div>
</div>
</div>