Files
crm.clientright.ru/layouts/v7/modules/PDFMaker/tabs/Labels.tpl
Fedor ac7467f0b4 Major CRM updates: AI Assistant, Court Status API, S3 integration improvements, and extensive file storage system
- 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.
2025-10-16 11:17:21 +03:00

55 lines
3.2 KiB
Smarty

<div class="tab-pane" id="pdfContentLabels">
<div class="edit-template-content">
{********************************************* Labels *************************************************}
<div class="form-group" id="labels_div">
<label class="control-label fieldLabel col-sm-3" style="font-weight: normal">
{vtranslate('LBL_GLOBAL_LANG',$MODULE)}:
</label>
<div class="controls col-sm-9">
<div class="input-group">
<select name="global_lang" id="global_lang" class="select2 form-control" data-width="100%">
<option value="">{vtranslate('LBL_SELECT_LABEL', $QUALIFIED_MODULE)}</option>
{html_options options=$GLOBAL_LANG_LABELS}
</select>
<span class="input-group-btn">
<button type="button" class="btn btn-warning InsertIntoTemplate" data-type="global_lang" title="{vtranslate('LBL_INSERT_LABEL_TO_TEXT',$MODULE)}"><i class="fa fa-text-width"></i></button>
</span>
</div>
</div>
</div>
<div class="form-group">
<label class="control-label fieldLabel col-sm-3" style="font-weight: normal">
{vtranslate('LBL_MODULE_LANG',$MODULE)}:
</label>
<div class="controls col-sm-9">
<div class="input-group">
<select name="module_lang" id="module_lang" class="select2 form-control" data-width="100%">
<option value="">{vtranslate('LBL_SELECT_LABEL', $QUALIFIED_MODULE)}</option>
{html_options options=$MODULE_LANG_LABELS}
</select>
<span class="input-group-btn">
<button type="button" class="btn btn-warning InsertIntoTemplate" data-type="module_lang" title="{vtranslate('LBL_INSERT_LABEL_TO_TEXT',$MODULE)}"><i class="fa fa-text-width"></i></button>
</span>
</div>
</div>
</div>
{if $VERSION_TYPE eq 'professional'}
<div class="form-group">
<label class="control-label fieldLabel col-sm-3" style="font-weight: normal">
{vtranslate('LBL_CUSTOM_LABELS',$MODULE)}:
</label>
<div class="controls col-sm-9">
<div class="input-group">
<select name="custom_lang" id="custom_lang" class="select2 form-control" data-width="100%">
<option value="">{vtranslate('LBL_SELECT_LABEL', $QUALIFIED_MODULE)}</option>
{html_options options=$CUSTOM_LANG_LABELS}
</select>
<span class="input-group-btn">
<button type="button" class="btn btn-warning InsertIntoTemplate" data-type="custom_lang" title="{vtranslate('LBL_INSERT_LABEL_TO_TEXT',$MODULE)}"><i class="fa fa-text-width"></i></button>
</span>
</div>
</div>
</div>
{/if}
</div>
</div>