- 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.
26 lines
1.4 KiB
Smarty
26 lines
1.4 KiB
Smarty
<div class="modelContainer" style="width:550px;">
|
|
<form method="POST" id="WorkflowImportForm" action="index.php?module=Workflow2&parent=Settings&action=WorkflowImport" enctype="multipart/form-data">
|
|
<div class="modal-header contentsBackground">
|
|
<button class="close" aria-hidden="true" data-dismiss="modal" type="button" title="{vtranslate('LBL_CLOSE')}">x</button>
|
|
<h3>EntityData Viewer ID {$crmid}</h3>
|
|
</div>
|
|
|
|
<table style="width: 550px;">
|
|
{foreach from=$entityData item=data}
|
|
<tr style="background-color: #eeeeee;line-height: 28px;">
|
|
<td width="350" style="font-weight: bold;padding-left:5px;"><img class="EntityDataDelete" data-id="{$data.dataid}" src="modules/Workflow2/icons/cross-button.png" style="margin-bottom:-3px;" /> {$data.key}</td>
|
|
<td width="150" style="text-align: right;padding-right:5px;" alt="{vtranslate('LBL_ENTITYDATA_MODIFYDATE', 'Workflow2')}" title="{vtranslate('LBL_ENTITYDATA_MODIFYDATE', 'Workflow2')}">{$data.modified}</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="350" colspan="2" style="font-family: 'Courier New';margin-bottom: 10px;padding: 5px;">{$data.value}</td>
|
|
</tr>
|
|
{/foreach}
|
|
</table>
|
|
<div class="modal-footer quickCreateActions" style="margin-top: 10px;">
|
|
<button class="btn btn-warning cancelLinkContainer" type="button" onclick="app.hideModalWindow();" style="padding: 5px 10px;"><strong>{vtranslate('LBL_CLOSE', $MODULE)}</strong></button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
|