Files
crm.clientright.ru/layouts/vlayout/modules/Reports/ChartEditStep3.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

107 lines
5.4 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}
<form class="form-horizontal recordEditView padding1per" id="chart_report_step3" method="post" action="index.php">
<input type="hidden" name="module" value="{$MODULE}" >
<input type="hidden" name="action" value="ChartSave" >
<input type="hidden" name="record" value="{$RECORD_ID}" >
<input type="hidden" name="reportname" value="{$REPORT_MODEL->get('reportname')}" >
<input type="hidden" name="folderid" value="{$REPORT_MODEL->get('folderid')}" >
<input type="hidden" name="reports_description" value="{$REPORT_MODEL->get('reports_description')}" >
<input type="hidden" name="primary_module" value="{$PRIMARY_MODULE}" >
<input type="hidden" name="secondary_modules" value={ZEND_JSON::encode($SECONDARY_MODULES)} >
<input type="hidden" name="isDuplicate" value="{$IS_DUPLICATE}" >
<input type="hidden" name="advanced_filter" id="advanced_filter" value="" >
<input type="hidden" class="step" value="3" >
<input type="hidden" name='groupbyfield' value={$CHART_MODEL->getGroupByField()} >
<input type="hidden" name='datafields' value={Zend_JSON::encode($CHART_MODEL->getDataFields())}>
<input type="hidden" name='charttype' value={$CHART_MODEL->getChartType()}>
<div class="padding1per border1px">
<div class="row-fluid">
<div>
<div><h4><strong>{vtranslate('LBL_SELECT_CHART_TYPE',$MODULE)}</strong></h4></div><br>
<div>
<div>
<ul class="nav nav-tabs" name="charttab" style="text-align:center;font-size:14px;font-weight: bold;margin:0 3%;border:0px">
<li class="active marginRight5px" >
<a data-type="pieChart" data-toggle="tab">
<div><img src="{vimage_path('pie.PNG')}" style="border:1px solid #ccc;"/></div><br>
<div>{vtranslate('LBL_PIE_CHART', $MODULE)}</div>
</a>
</li>
<li class="marginRight5px">
<a data-type="verticalbarChart" data-toggle="tab">
<div><img src="{vimage_path('vbar.PNG')}" style="border:1px solid #ccc;"/></div><br>
<div>{vtranslate('LBL_VERTICAL_BAR_CHART', $MODULE)}</div>
</a>
</li>
<li class="marginRight5px">
<a data-type="horizontalbarChart" data-toggle="tab">
<div><img src="{vimage_path('hbar.PNG')}" style="border:1px solid #ccc;"/></div><br>
<div>{vtranslate('LBL_HORIZONTAL_BAR_CHART', $MODULE)}</div>
</a>
</li>
<li class="marginRight5px" >
<a data-type="lineChart" data-toggle="tab">
<div><img src="{vimage_path('line.PNG')}" style="border:1px solid #ccc;"/></div><br>
<div>{vtranslate('LBL_LINE_CHART', $MODULE)}</div>
</a>
</li>
</ul>
<div class='tab-content contentsBackground' style="height:auto;padding:4%;border:1px solid #ccc;">
<br>
<div class="row-fluid tab-pane active">
<div>
<span class="span4">
<div><span>{vtranslate('LBL_SELECT_GROUP_BY_FIELD', $MODULE)}</span><span class="redColor">*</span></div><br>
<div class="row-fluid">
<select id='groupbyfield' name='groupbyfield' class="span10 validate[required]" data-validation-engine="validate[required]" style='min-width:300px;'></select>
</div>
</span>
<span class="span2">&nbsp;</span>
<span class="span4">
<div><span>{vtranslate('LBL_SELECT_DATA_FIELD', $MODULE)}</span><span class="redColor">*</span></div><br>
<div class="row-fluid">
<select id='datafields' name='datafields[]' class="span10 validate[required]" data-validation-engine="validate[required]" style='min-width:300px;'>
</select></div>
</span>
</div>
</div>
<div class='row-fluid alert-info well' style="position: relative; top: 50px;width:95%">
<span class='span alert-info'>
<div>
<i class="icon-info-sign"></i>&nbsp;&nbsp;
{vtranslate('LBL_PLEASE_SELECT_ATLEAST_ONE_GROUP_FIELD_AND_DATA_FIELD', $MODULE)}
</div>
<br>
<div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{vtranslate('LBL_FOR_BAR_GRAPH_AND_LINE_GRAPH_SELECT_3_MAX_DATA_FIELDS', $MODULE)}</div>
</span>
</div>
</div>
</div>
</div>
<div class='hide'>
{include file="chartReportHiddenContents.tpl"|vtemplate_path:$MODULE}
</div>
</div>
</div>
</div>
<br>
<div class="pull-right block padding20px">
<button type="button" class="btn btn-danger backStep"><strong>{vtranslate('LBL_BACK',$MODULE)}</strong></button>&nbsp;&nbsp;
<button type="submit" class="btn btn-success" id="generateReport"><strong>{vtranslate('LBL_GENERATE_CHART',$MODULE)}</strong></button>&nbsp;&nbsp;
<a class="cancelLink" onclick="window.history.back()">{vtranslate('LBL_CANCEL',$MODULE)}</a>&nbsp;&nbsp;
<br>
</div>
</form>
{/strip}