Files
drmaterac.pl/iadmin/themes/default/template/controllers/referrers/helpers/view/view.tpl
2025-03-21 20:24:43 +01:00

133 lines
4.0 KiB
Smarty

{**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to https://devdocs.prestashop.com/ for more information.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*}
{extends file="helpers/view/view.tpl"}
{block name="override_tpl"}
<script type="text/javascript">
$(function() {
var btn_save_calendar = $('span[class~="process-icon-save-calendar"]').parent();
var btn_submit_calendar = $('#submitDatePicker');
if (btn_save_calendar.length > 0 && btn_submit_calendar.length > 0)
{
btn_submit_calendar.hide();
btn_save_calendar.click(function() {
btn_submit_calendar.before('<input type="hidden" name="'+btn_submit_calendar.attr("name")+'" value="1" />');
$('#calendar_form').submit();
});
}
});
</script>
{if $enable_calendar}
{$calendar_form}
{/if}
</div>
<script type="text/javascript">
function updateConversionRate(id_product)
{
$.getJSON('index.php',
{
ajax: 1,
controller: 'AdminReferrers',
action: 'productFilter',
id_employee:{$id_employee},
token:'{$token|escape:'html':'UTF-8'}',
id_referrer:{$referrer->id},
id_product:id_product
},
function(j) {
{foreach $display_tab as $key => $value}
$("#{$key}").html(j[0].{$key});
{/foreach}
}
)
}
function fillProducts(filter)
{
var form = document.layers ? document.forms.product_referrers : document.product_referrers;
var filter = form.filterProduct.value;
$.getJSON('index.php',
{
ajax: 1,
controller: 'AdminReferrers',
action: 'fillProducts',
id_employee:{$id_employee},
token:'{$token|escape:'html':'UTF-8'}',
id_lang:{$id_lang},
filter:filter
},
function(j) {
form.selectProduct.length = j.length + 1;
for (var i = 0; i < j.length; i++)
{
form.selectProduct.options[i+1].value = j[i].id_product;
form.selectProduct.options[i+1].text = j[i].name;
}
}
);
}
</script>
<div class="panel">
<h3>
<i class="icon-bar-chart"></i> {l s='Statistics' d='Admin.Shopparameters.Feature'}
</h3>
<h2>{$referrer->name}</h2>
<table class="table">
{foreach $display_tab as $data => $label}
<tr>
<td>{$label}</td>
<td id="{$data}"></td>
</tr>
{/foreach}
</table>
<form id="product_referrers" name="product_referrers" class="form-horizontal">
<div class="form-group">
<label class="control-label col-lg-3">{l s='Filter by product:' d='Admin.Shopparameters.Feature'}</label>
<div class="col-lg-9">
<select id="selectProduct" class="fixed-width-xl" name="selectProduct" onfocus="fillProducts();" onchange="updateConversionRate(this.value);">
<option value="0" selected="selected">- {l s='All' d='Admin.Global'} -</option>
</select>
</div>
</div>
<div class="form-group">
<label class="control-label col-lg-3">{l s='Search' d='Admin.Actions'}</label>
<div class="col-lg-9">
<input class="btn btn-default" type="text" size="34" id="filterProduct" name="filterProduct" onkeyup="fillProducts();" />
</div>
</div>
</form>
</div>
<script type="text/javascript">
updateConversionRate(0);
</script>
{/block}