- 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.
88 lines
5.3 KiB
Smarty
88 lines
5.3 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.
|
|
*
|
|
********************************************************************************/
|
|
-->*}
|
|
{strip}
|
|
<div class="main-container clearfix">
|
|
<div class="editViewPageDiv full-width">
|
|
<div class="col-sm-12 col-xs-12 ">
|
|
<form id="EditView" class="form-horizontal recordEditView" name="EditView" method="post" action="index.php">
|
|
<input type="hidden" name="record" value="{$RECORDID}" id="record"/>
|
|
<input type="hidden" name="module" value="{$MODULE}"/>
|
|
<input type="hidden" name="action" value="IndexAjax"/>
|
|
<input type="hidden" name="mode" value="SaveDisplayConditions"/>
|
|
<input type="hidden" name="conditions" id="advanced_filter" value=''/>
|
|
<div class="editViewHeader">
|
|
<div class='row'>
|
|
<div class="col-lg-12 col-md-12 col-lg-pull-0">
|
|
{if $RECORD_ID neq ''}
|
|
<h4 class="editHeader" title="{vtranslate('LBL_EDITING', $MODULE)} {vtranslate('LBL_CONDITIONS', $MODULE)}">{vtranslate('LBL_EDITING', $MODULE)} {vtranslate('LBL_CONDITIONS', $MODULE)}</h4>
|
|
{else}
|
|
<h4 class="editHeader">{vtranslate('LBL_CREATING_NEW', $MODULE)} {vtranslate('LBL_CONDITIONS', $MODULE)}</h4>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="editViewBody">
|
|
<div class="editViewContents" id="editViewContents">
|
|
{if $OLD_CONDITIONS eq "yes"}
|
|
<div class="alert alert-info">
|
|
{vtranslate('LBL_CREATED_IN_OLD_LOOK_CANNOT_BE_EDITED',$MODULE)}
|
|
|
|
<br><br><strong>{vtranslate('LBL_OLD_CONDITIONS', $MODULE)}:</strong><br>
|
|
{include file='DetailDisplayConditions.tpl'|@vtemplate_path:$MODULE}
|
|
</div>
|
|
{/if}
|
|
<div class="form-group">
|
|
<div class="col-sm-12" id="display_condition">
|
|
|
|
<div class="editViewHeader">
|
|
<div class="row">
|
|
<div class="col-lg-12 col-md-12 col-lg-pull-0">
|
|
|
|
<h4>{vtranslate('LBL_DISPLAYED',$MODULE)}:
|
|
|
|
<select id="displayedValue" name="displayedValue" class="select2">
|
|
<option value="0" {if $EMAIL_TEMPLATE_RESULT.displayed eq "0"}selected{/if}>{vtranslate('LBL_YES',$MODULE)}</option>
|
|
<option value="1" {if $EMAIL_TEMPLATE_RESULT.displayed eq "1"}selected{/if}>{vtranslate('LBL_NO',$MODULE)}</option>
|
|
</select>
|
|
{vtranslate('LBL_IF',$MODULE)}:
|
|
|
|
</h4>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="advanceFilterContainer" class="conditionsContainer">
|
|
<div class="col-sm-12">
|
|
<div class="table table-bordered" style="padding: 5%">
|
|
{include file='AdvanceFilter.tpl'|@vtemplate_path:$MODULE RECORD_STRUCTURE=$RECORD_STRUCTURE}
|
|
</div>
|
|
</div>
|
|
{include file="FieldExpressions.tpl"|@vtemplate_path:$MODULE}
|
|
</div>
|
|
</div>
|
|
</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>
|
|
<a class='cancelLink' href="javascript:history.back()" type="reset">{vtranslate('LBL_CANCEL', $MODULE)}</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/strip}
|