- 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.
58 lines
3.0 KiB
Smarty
58 lines
3.0 KiB
Smarty
{*+**********************************************************************************
|
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.1
|
|
* ("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}
|
|
<input type="hidden" name="merge_type" value='{$USER_INPUT->get('merge_type')}' />
|
|
<input type="hidden" name="merge_fields" value='{$MERGE_FIELDS}' />
|
|
<input type="hidden" name="lineitem_currency" value='{$LINEITEM_CURRENCY}'>
|
|
<input type="hidden" id="mandatory_fields" name="mandatory_fields" value='{$ENCODED_MANDATORY_FIELDS}' />
|
|
<input type="hidden" name="field_mapping" id="field_mapping" value="" />
|
|
<input type="hidden" name="default_values" id="default_values" value="" />
|
|
<table width="100%" class="table table-bordered">
|
|
<thead>
|
|
<tr>
|
|
{if $HAS_HEADER eq true}
|
|
<th width="25%">{'LBL_FILE_COLUMN_HEADER'|@vtranslate:$MODULE}</th>
|
|
{/if}
|
|
<th width="25%">{'LBL_ROW_1'|@vtranslate:$MODULE}</th>
|
|
<th width="23%">{'LBL_CRM_FIELDS'|@vtranslate:$MODULE}</th>
|
|
<th width="27%">{'LBL_DEFAULT_VALUE'|@vtranslate:$MODULE}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach key=_HEADER_NAME item=_FIELD_VALUE from=$ROW_1_DATA name="headerIterator"}
|
|
{assign var="_COUNTER" value=$smarty.foreach.headerIterator.iteration}
|
|
<tr class="fieldIdentifier" id="fieldIdentifier{$_COUNTER}">
|
|
{if $HAS_HEADER eq true}
|
|
<td>
|
|
<span style="word-break:break-all" name="header_name">{$_HEADER_NAME}</span>
|
|
</td>
|
|
{/if}
|
|
<td>
|
|
<span>{$_FIELD_VALUE|@textlength_check}</span>
|
|
</td>
|
|
<td>
|
|
<input type="hidden" name="row_counter" value="{$_COUNTER}" />
|
|
<select name="mapped_fields" class="select2" id ="mappedFieldsSelect" style="width:100%" onchange="Vtiger_Import_Js.loadDefaultValueWidget('fieldIdentifier{$_COUNTER}')">
|
|
<option value="">{'LBL_SELECT_OPTION'|@vtranslate:$FOR_MODULE}</option>
|
|
{foreach key=_FIELD_NAME item=_FIELD_INFO from=$AVAILABLE_FIELDS}
|
|
{assign var="_TRANSLATED_FIELD_LABEL" value=$_FIELD_INFO->getFieldLabelKey()|@vtranslate:$FOR_MODULE}
|
|
{assign var="EVENTS_TRANSLATED_FIELD_LABEL" value=$_FIELD_INFO->getFieldLabelKey()|@vtranslate:Events}
|
|
<option value="{$_FIELD_NAME}" {if strtolower(decode_html($_HEADER_NAME)) eq strtolower($_TRANSLATED_FIELD_LABEL)} selected {/if}
|
|
{if $_FIELD_NAME eq 'due_date' && strtolower(decode_html($_HEADER_NAME)) eq strtolower($EVENTS_TRANSLATED_FIELD_LABEL)} selected {/if}
|
|
data-label="{$_TRANSLATED_FIELD_LABEL}">{$_TRANSLATED_FIELD_LABEL}{if $_FIELD_INFO->isMandatory() eq 'true' || $_FIELD_NAME eq 'activitytype'} (*){/if}</option>
|
|
{/foreach}
|
|
</select>
|
|
</td>
|
|
<td name="default_value_container"> </td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
{/strip} |