Files
crm.clientright.ru/layouts/v7/modules/Settings/ITS4YouProcessFlow/DetailDisplayConditions.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

43 lines
2.0 KiB
Smarty

{*<!--
/*********************************************************************************
* The content of this file is subject to the Process Flow 4 You.
* ("License"); You may not use this file except in compliance with the License
* The Initial Developer of the Original Code is IT-Solutions4You s.r.o.
* Portions created by IT-Solutions4You s.r.o. are Copyright(C) IT-Solutions4You s.r.o.
* All Rights Reserved.
********************************************************************************/
-->*}
{strip}
{assign var=DISPLAY_CONDITION value=$RECORD_MODEL->getConditonDisplayValue()}
{assign var=ALL_CONDITIONS value=$DISPLAY_CONDITION['All']}
{assign var=ANY_CONDITIONS value=$DISPLAY_CONDITION['Any']}
{if $ALL_CONDITIONS|count eq "0" && $ANY_CONDITIONS|count eq "0"}
{vtranslate('LBL_NO_DISPLAY_CONDITIONS_DEFINED',$QUALIFIED_MODULE)}
{else}
<span><strong>{vtranslate('All')}&nbsp;:&nbsp;&nbsp;&nbsp;</strong></span>
{if is_array($ALL_CONDITIONS) && !empty($ALL_CONDITIONS)}
{foreach item=ALL_CONDITION from=$ALL_CONDITIONS name=allCounter}
{if $smarty.foreach.allCounter.iteration neq 1}
<span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>
{/if}
<span>{$ALL_CONDITION}</span>
<br>
{/foreach}
{else}
{vtranslate('LBL_NA')}
{/if}
<br>
<span><strong>{vtranslate('Any')}&nbsp;:&nbsp;</strong></span>
{if is_array($ANY_CONDITIONS) && !empty($ANY_CONDITIONS)}
{foreach item=ANY_CONDITION from=$ANY_CONDITIONS name=anyCounter}
{if $smarty.foreach.anyCounter.iteration neq 1}
<span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>
{/if}
<span>{$ANY_CONDITION}</span>
<br>
{/foreach}
{else}
{vtranslate('LBL_NA')}
{/if}
{/if}
{/strip}