126 lines
7.0 KiB
Smarty
126 lines
7.0 KiB
Smarty
{*
|
|
* 2010-2023 Bl Modules.
|
|
*
|
|
* If you wish to customize this module for your needs,
|
|
* please contact the authors first for more information.
|
|
*
|
|
* It's not allowed selling, reselling or other ways to share
|
|
* this file or any other module files without author permission.
|
|
*
|
|
* @author Bl Modules
|
|
* @copyright 2010-2023 Bl Modules
|
|
* @license
|
|
*}
|
|
<form action="{$postUrl|escape:'htmlall':'UTF-8'}" method="post">
|
|
<div class="panel">
|
|
<div class="panel-heading">
|
|
<i class="icon-cog"></i> {l s='Create a new affiliate price' mod='xmlfeeds'}
|
|
</div>
|
|
<div class="row">
|
|
<table border="0" width="100%" cellpadding="3" cellspacing="0">
|
|
<tr>
|
|
<td class="settings-column-name" style="width: 150px;">
|
|
{l s='Price name' mod='xmlfeeds'}
|
|
</td>
|
|
<td>
|
|
<input style="max-width: 462px;" type="text" name="price_name" value="" required>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="settings-column-name" style="width: 150px;">
|
|
{l s='XML tag name' mod='xmlfeeds'}
|
|
</td>
|
|
<td>
|
|
<input style="max-width: 462px;" type="text" name="xml_name" value="" required>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="al-t settings-column-name" style="width: 150px; padding-top: 6px;">
|
|
{l s='Price formula' mod='xmlfeeds'}
|
|
</td>
|
|
<td>
|
|
<input style="max-width: 462px;" type="text" name="price" value="" required>
|
|
<div class="bl_comments price-formula-text">[{l s='Words' mod='xmlfeeds'} "<span>base_price</span>", "<span>sale_price</span>", "<span>tax_price</span>", "<span>shipping_price</span>", "<span>price_without_discount</span>", "<span>wholesale_price</span>" {l s='will be replaced by appropriate product value. Example of a formula: sale_price - 15' mod='xmlfeeds'}]</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="al-t settings-column-name" style="width: 150px; padding-top: 6px;">
|
|
{l s='Only with specified categories' mod='xmlfeeds'}
|
|
</td>
|
|
<td>
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
boxToggle("categories_list");
|
|
});
|
|
</script>
|
|
<label for="products_categories">
|
|
{include file="{$tpl_dir}/views/templates/admin/helper/status.tpl" id='products_categories' name='categories' status=0}
|
|
</label>
|
|
<span class="categories_list_button" style="cursor: pointer; color: #268CCD; margin-left: 10px;">{l s='[Show/Hide categories]' mod='xmlfeeds'}</span>
|
|
<div class="categories_list" style="display: none; margin-top: 20px;">
|
|
<div>
|
|
<label class="blmod_mr20">
|
|
<input type="radio" name="category_type" value="0" checked="checked"> {l s='Filter by main category' mod='xmlfeeds'}
|
|
</label>
|
|
<label class="">
|
|
<input type="radio" name="category_type" value="1"> {l s='Filter by all categories' mod='xmlfeeds'}
|
|
</label>
|
|
<div class="cb"></div>
|
|
</div>
|
|
{$categoriesTree}
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<input type="hidden" name="add_affiliate_action" value="1">
|
|
<center><input type="submit" name="add_affiliate_price" value="{l s='Create new' mod='xmlfeeds'}" class="btn btn-primary blmod_mt10i" /></center>
|
|
{if !empty($prices)}
|
|
<table cellspacing="0" cellpadding="0" class="table blmod-table-light" id="radio_div">
|
|
<tbody>
|
|
<tr>
|
|
<th>{l s='Name' mod='xmlfeeds'}</th>
|
|
<th>{l s='XML tag' mod='xmlfeeds'}</th>
|
|
<th>{l s='Formula' mod='xmlfeeds'}</th>
|
|
<th style="text-align: right;">{l s='Delete' mod='xmlfeeds'}</th>
|
|
</tr>
|
|
{foreach $prices as $p}
|
|
<tr>
|
|
<td{if !empty($p.categories_names)} class="blmod-table-light"{/if}>
|
|
<label style="line-height: 26px; padding-left: 0;" for="affiliate_1" class="t">
|
|
{$p.affiliate_name|escape:'htmlall':'UTF-8'}
|
|
</label>
|
|
</td>
|
|
<td{if !empty($p.categories_names)} class="blmod-table-light"{/if}>
|
|
<label style="line-height: 26px; padding-left: 0;" for="affiliate_1" class="t">
|
|
{$p.xml_name|escape:'htmlall':'UTF-8'}
|
|
</label>
|
|
</td>
|
|
<td{if !empty($p.categories_names)} class="blmod-table-light"{/if}>
|
|
<label style="line-height: 26px; padding-left: 0;" for="affiliate_1" class="t">
|
|
{$p.affiliate_formula|escape:'htmlall':'UTF-8'}
|
|
</label>
|
|
</td>
|
|
<td{if !empty($p.categories_names)} class="blmod-table-light"{/if}>
|
|
<a href="{$full_address_no_t|escape:'htmlall':'UTF-8'}&add_affiliate_price=1&delete_affiliate_price={$p.affiliate_id|escape:'htmlall':'UTF-8'}{$token|escape:'htmlall':'UTF-8'}" onclick="return confirm('{l s='Are you sure you want to delete?' mod='xmlfeeds'}')">
|
|
<div title="{l s='Remove' mod='xmlfeeds'}" class="search_drop_product product-list-row">
|
|
<i class="icon-trash" title="{l s='Remove from list' mod='xmlfeeds'}"></i>
|
|
</div>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{if !empty($p.categories_names)}
|
|
<tr>
|
|
<td colspan="4">
|
|
<div class="bl_comments" style="font-style: italic;">
|
|
Categories: {$p.categories_names|escape:'htmlall':'UTF-8'}
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{/if}
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
</form> |