- 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.
75 lines
3.7 KiB
Smarty
75 lines
3.7 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}
|
|
{assign var="MODULE_NAME" value=$MODULE_MODEL->get('name')}
|
|
<input id="recordId" type="hidden" value="{$RECORD->getId()}" />
|
|
<div class="detailViewContainer">
|
|
<div class="detailViewTitle" id="prefPageHeader">
|
|
<div class="row-fluid">
|
|
<div class="span8">
|
|
<span class="row-fluid marginLeftZero">
|
|
<span class="logo span1">
|
|
{foreach key=ITER item=IMAGE_INFO from=$RECORD->getImageDetails()}
|
|
{if !empty($IMAGE_INFO.path) && !empty($IMAGE_INFO.orgname)}
|
|
<img src="{$IMAGE_INFO.path}_{$IMAGE_INFO.orgname}" alt="{$IMAGE_INFO.orgname}" title="{$IMAGE_INFO.orgname}" data-image-id="{$IMAGE_INFO.id}">
|
|
{/if}
|
|
{/foreach}
|
|
</span>
|
|
<span class="span9">
|
|
<span id="myPrefHeading" class="row-fluid">
|
|
<h3>{vtranslate('LBL_MY_PREFERENCES', $MODULE_NAME)} </h3>
|
|
</span>
|
|
<span class="row-fluid">
|
|
{vtranslate('LBL_USERDETAIL_INFO', $MODULE_NAME)} "<b>{$RECORD->getName()}</b>"
|
|
</span>
|
|
</span>
|
|
</span>
|
|
</div>
|
|
<div class="span4">
|
|
<div class="row-fluid pull-right detailViewButtoncontainer">
|
|
<div class="btn-toolbar pull-right">
|
|
{foreach item=DETAIL_VIEW_BASIC_LINK from=$DETAILVIEW_LINKS['DETAILVIEWPREFERENCE']}
|
|
<div class="btn-group">
|
|
<button class="btn"
|
|
{if $DETAIL_VIEW_BASIC_LINK->isPageLoadLink()}
|
|
onclick="window.location.href='{$DETAIL_VIEW_BASIC_LINK->getUrl()}'"
|
|
{else}
|
|
onclick={$DETAIL_VIEW_BASIC_LINK->getUrl()}
|
|
{/if}>
|
|
<strong>{vtranslate($DETAIL_VIEW_BASIC_LINK->getLabel(), $MODULE_NAME)}</strong>
|
|
</button>
|
|
</div>
|
|
{/foreach}
|
|
{if $DETAILVIEW_LINKS['DETAILVIEW']|@count gt 0}
|
|
<span class="btn-group">
|
|
<button class="btn dropdown-toggle" data-toggle="dropdown" href="javascript:void(0);">
|
|
<strong>{vtranslate('LBL_MORE', $MODULE_NAME)}</strong> <i class="caret"></i>
|
|
</button>
|
|
<ul class="dropdown-menu pull-right">
|
|
{foreach item=DETAIL_VIEW_LINK from=$DETAILVIEW_LINKS['DETAILVIEW']}
|
|
<li id="{$MODULE_NAME}_detailView_moreAction_{Vtiger_Util_Helper::replaceSpaceWithUnderScores($DETAIL_VIEW_LINK->getLabel())}">
|
|
<a href={$DETAIL_VIEW_LINK->getUrl()} >{vtranslate($DETAIL_VIEW_LINK->getLabel(), $MODULE_NAME)}</a>
|
|
</li>
|
|
{/foreach}
|
|
</ul>
|
|
</span>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="detailViewInfo userPreferences row-fluid">
|
|
<div class="details span12">
|
|
<form id="detailView" data-name-fields='{ZEND_JSON::encode($MODULE_MODEL->getNameFields())}' method="POST">
|
|
<div class="contents">
|
|
{/strip} |