- 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.
42 lines
1.8 KiB
Smarty
42 lines
1.8 KiB
Smarty
{strip}
|
|
|
|
<div class="modal-header contentsBackground">
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
{assign var=STATUS_ID value=$RECORD_MODEL->getId()}
|
|
{if empty($STATUS_ID)}
|
|
<h3>{vtranslate('LBL_ADD_NEW_STATUS_ACCORD', $QUALIFIED_MODULE)}</h3>
|
|
{else}
|
|
<h3>{vtranslate('LBL_EDIT_STATUS_ACCORD', $QUALIFIED_MODULE)}</h3>
|
|
{/if}
|
|
</div>
|
|
<form id="editStatus" class="form-horizontal">
|
|
<input type="hidden" name="record" value="{$STATUS_ID}" />
|
|
<div class="modal-body">
|
|
<div class="row-fluid">
|
|
|
|
<!-- Select crm status -->
|
|
<div class="control-group">
|
|
<label class="muted control-label">
|
|
<span class="redColor">*</span> {vtranslate('Crm Status', $QUALIFIED_MODULE)}
|
|
</label>
|
|
<div class="controls row-fluid">
|
|
<select class="select2 span6" name="crmStatus">
|
|
{foreach item=CRM_STATUS from=$RECORD_MODEL->getCrmStatuses()}
|
|
<option value="{$CRM_STATUS}" {if $RECORD_MODEL->getCrmStatus() eq $CRM_STATUS} selected {/if}> {vtranslate($CRM_STATUS, $QUALIFIED_MODULE)} </option>
|
|
{/foreach}
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Site status -->
|
|
<div class="control-group">
|
|
<label class="muted control-label"><span class="redColor">*</span> {vtranslate('Site Status', $QUALIFIED_MODULE)}</label>
|
|
<div class="controls">
|
|
<input type="text" name="siteStatus" value="{$RECORD_MODEL->getSiteStatus()}"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{include file='ModalFooter.tpl'|@vtemplate_path:'Vtiger'}
|
|
</form>
|
|
{/strip} |