Files
crm.clientright.ru/layouts/vlayout/modules/Install/Step5.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

159 lines
5.0 KiB
Smarty

{*<!--
/*********************************************************************************
** 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.
*
********************************************************************************/
-->*}
<form class="form-horizontal" name="step5" method="post" action="index.php">
<input type=hidden name="module" value="Install" />
<input type=hidden name="view" value="Index" />
<input type=hidden name="mode" value="Step6" />
<input type=hidden name="auth_key" value="{$AUTH_KEY}" />
<div class="row-fluid main-container">
<div class="inner-container">
<div class="row-fluid">
<div class="span10">
<h4>{vtranslate('LBL_CONFIRM_CONFIGURATION_SETTINGS','Install')}</h4>
</div>
<div class="span2">
{* SalesPlatform.ru begin Link to SP wiki *}
<a href="http://salesplatform.ru/wiki/index.php/SalesPlatform_vtiger_crm_640" target="_blank" class="pull-right">
{*<a href="https://wiki.vtiger.com/vtiger6/" target="_blank" class="pull-right">*}
{* SalesPlatform.ru end *}
<img src="{'help.png'|vimage_path}" alt="Help-Icon"/>
</a>
</div>
</div>
<hr>
{if $DB_CONNECTION_INFO['flag'] neq true}
<div class="offset2 row-fluid" id="errorMessage">
<div class="span8">
<div class="alert alert-error">
{$DB_CONNECTION_INFO['error_msg']}
{$DB_CONNECTION_INFO['error_msg_info']}
</div>
</div>
</div>
{/if}
<div class="offset2 row-fluid">
<div class="span8">
<table class="config-table input-table">
<thead>
<tr>
<th colspan="2">{vtranslate('LBL_DATABASE_INFORMATION','Install')}</th>
</tr>
</thead>
<tbody>
<tr>
<td>
{vtranslate('LBL_DATABASE_TYPE','Install')}<span class="no">*</span>
</td>
<td>
{vtranslate('MySQL','Install')}
</td>
</tr>
<tr>
<td>
{vtranslate('LBL_DB_NAME','Install')}<span class="no">*</span>
</td><td>
{$INFORMATION['db_name']}
</td>
</tr>
</tbody>
</table>
<table class="config-table input-table">
<thead>
<tr>
<th colspan="2">{vtranslate('LBL_SYSTEM_INFORMATION','Install')}</th>
</tr>
</thead>
<tbody>
<tr>
<td>
{vtranslate('LBL_URL','Install')}<span class="no">*</span>
</td>
<td>
<a href="#">{$SITE_URL}</a>
</td>
</tr>
<tr>
<td>
{vtranslate('LBL_CURRENCY','Install')}<span class="no">*</span>
</td>
<td>
{* SalesPlatform.ru begin Link to SP wiki *}
{vtranslate($INFORMATION['currency_name'], 'Install')}
{* SalesPlatform.ru end *}
</td>
</tr>
</tbody>
</table>
<table class="config-table input-table">
<thead>
<tr>
<th colspan="2">{vtranslate('LBL_ADMIN_USER_INFORMATION','Install')}</th>
</tr>
</thead>
<tbody>
<tr>
<td>
{vtranslate('LBL_USERNAME','Install')}
</td>
<td>
{$INFORMATION['admin']}
</td>
</tr>
<tr>
<td>
{vtranslate('LBL_EMAIL','Install')}<span class="no">*</span>
</td><td>
{$INFORMATION['admin_email']}
</td>
</tr>
<tr>
<td>
{vtranslate('LBL_TIME_ZONE','Install')}<span class="no">*</span>
</td>
<td>
{* SalesPlatform.ru begin *}
{vtranslate($INFORMATION['timezone'], 'Users')}
{*{$INFORMATION['timezone']}*}
{* SalesPlatform.ru end *}
</td>
</tr>
<tr>
<td>
{vtranslate('LBL_DATE_FORMAT','Install')}<span class="no">*</span>
</td>
<td>
{* SalesPlatform.ru begin *}
{vtranslate($INFORMATION['dateformat'], 'Install')}
{*{$INFORMATION['dateformat']}*}
{* SalesPlatform.ru end *}
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row-fluid offset2">
<div class="span8">
<div class="button-container">
<input type="button" class="btn btn-large" value="{vtranslate('LBL_BACK','Install')}" {if $DB_CONNECTION_INFO['flag'] eq true} disabled= "disabled" {/if} name="back"/>
{if $DB_CONNECTION_INFO['flag'] eq true}
<input type="button" class="btn btn-large btn-primary" value="{vtranslate('LBL_NEXT','Install')}" name="step6"/>
{/if}
</div>
</div>
</div>
</div>
</div>
</form>
</div>