Skip to content
Snippets Groups Projects

Fix: click through shouldn't be there for charts reports if the report has more than one module

Merged saran.s requested to merge saran.s/vtigercrm:159978647 into master
1 unresolved thread
1 file
+ 3
4
Compare changes
  • Side-by-side
  • Inline
@@ -9,7 +9,7 @@
<input type='hidden' name='charttype' value="{$CHART_TYPE}" />
<input type='hidden' name='data' value='{Vtiger_Functions::jsonEncode($DATA)}' />
<input type='hidden' name='clickthrough' value="{if isset($CLICK_THROUGH)}{$CLICK_THROUGH}{else}false{/if}" />
<input type='hidden' name='clickthrough' value="{if isset($CLICK_THROUGH)}{$CLICK_THROUGH}{/if}" />
<br>
<div class="dashboardWidgetContent">
@@ -17,10 +17,9 @@
<div class='border1px filterConditionContainer' style="padding:30px;">
<div id='chartcontent' name='chartcontent' style="min-height:500px overflowY:'auto';" data-mode='Reports'></div>
<br>
{if isset($CLICK_THROUGH) && $CLICK_THROUGH neq 'true'}
{if !isset($CLICK_THROUGH) || $CLICK_THROUGH neq 'true'}
<div class='row-fluid alert-info'>
<span class='col-lg-4 offset4'> &nbsp;</span>
<span class='span alert-info'>
<span class='span alert-info' style="padding:10px;text-align:center">
<i class="icon-info-sign"></i>
{vtranslate('LBL_CLICK_THROUGH_NOT_AVAILABLE', $MODULE)}
</span>
Loading