Merge branch 'tiket-productTemplate' into develop
This commit is contained in:
commit
3aa40ff214
@ -5926,7 +5926,8 @@ div.two-part-form{
|
|||||||
position: relative;
|
position: relative;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
}
|
}
|
||||||
div.two-part-form:after{
|
div.two-part-form:after,
|
||||||
|
div.form-attr-qty:after{
|
||||||
display: block;
|
display: block;
|
||||||
content: '';
|
content: '';
|
||||||
clear: both;
|
clear: both;
|
||||||
|
@ -309,40 +309,42 @@ var fieldRequired = '{l s='Please fill in all required fields, then save the cus
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-right">
|
<div class="form-right">
|
||||||
{if isset($groups)}
|
<div class="form-attr-qty">
|
||||||
<!-- attributes -->
|
{if isset($groups)}
|
||||||
<div id="attributes">
|
<!-- attributes -->
|
||||||
{foreach from=$groups key=id_attribute_group item=group}
|
<div id="attributes">
|
||||||
{if $group.attributes|@count}
|
{foreach from=$groups key=id_attribute_group item=group}
|
||||||
<p>
|
{if $group.attributes|@count}
|
||||||
<label for="group_{$id_attribute_group|intval}">{$group.name|escape:'htmlall':'UTF-8'} :</label>
|
<p>
|
||||||
{assign var="groupName" value="group_$id_attribute_group"}
|
<label for="group_{$id_attribute_group|intval}">{$group.name|escape:'htmlall':'UTF-8'} :</label>
|
||||||
<select name="{$groupName}" id="group_{$id_attribute_group|intval}" onchange="javascript:findCombination();">
|
{assign var="groupName" value="group_$id_attribute_group"}
|
||||||
{foreach from=$group.attributes key=id_attribute item=group_attribute}
|
<select name="{$groupName}" id="group_{$id_attribute_group|intval}" onchange="javascript:findCombination();">
|
||||||
<option value="{$id_attribute|intval}"{if (isset($smarty.get.$groupName) && $smarty.get.$groupName|intval == $id_attribute) || $group.default == $id_attribute} selected="selected"{/if} title="{$group_attribute|escape:'htmlall':'UTF-8'}">{$group_attribute|escape:'htmlall':'UTF-8'}</option>
|
{foreach from=$group.attributes key=id_attribute item=group_attribute}
|
||||||
{/foreach}
|
<option value="{$id_attribute|intval}"{if (isset($smarty.get.$groupName) && $smarty.get.$groupName|intval == $id_attribute) || $group.default == $id_attribute} selected="selected"{/if} title="{$group_attribute|escape:'htmlall':'UTF-8'}">{$group_attribute|escape:'htmlall':'UTF-8'}</option>
|
||||||
</select>
|
{/foreach}
|
||||||
</p>
|
</select>
|
||||||
{/if}
|
</p>
|
||||||
{/foreach}
|
{/if}
|
||||||
|
{/foreach}
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
{*<p id="product_reference" {if isset($groups) OR !$product->reference}style="display: none;"{/if}><label for="product_reference">{l s='Reference :'} </label><span class="editable">{$product->reference|escape:'htmlall':'UTF-8'}</span></p>*}
|
||||||
|
|
||||||
|
<!-- quantity wanted -->
|
||||||
|
<p id="quantity_wanted_p"{if (!$allow_oosp && $product->quantity <= 0) OR $virtual OR !$product->available_for_order OR $PS_CATALOG_MODE} style="display: none;"{/if}>
|
||||||
|
<label>{l s='Quantity :'}</label>
|
||||||
|
<input type="text" name="qty" id="quantity_wanted" class="text" value="{if isset($quantityBackup)}{$quantityBackup|intval}{else}{if $product->minimal_quantity > 1}{$product->minimal_quantity}{else}1{/if}{/if}" size="2" maxlength="3" {if $product->minimal_quantity > 1}onkeyup="checkMinimalQuantity({$product->minimal_quantity});"{/if} />
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<!-- minimal quantity wanted -->
|
||||||
|
<p id="minimal_quantity_wanted_p"{if $product->minimal_quantity <= 1 OR !$product->available_for_order OR $PS_CATALOG_MODE} style="display: none;"{/if}>{l s='You must add '} <b id="minimal_quantity_label">{$product->minimal_quantity}</b> {l s=' as a minimum quantity to buy this product.'}</p>
|
||||||
|
{if $product->minimal_quantity > 1}
|
||||||
|
<script type="text/javascript">
|
||||||
|
checkMinimalQuantity();
|
||||||
|
</script>
|
||||||
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
|
||||||
|
|
||||||
{*<p id="product_reference" {if isset($groups) OR !$product->reference}style="display: none;"{/if}><label for="product_reference">{l s='Reference :'} </label><span class="editable">{$product->reference|escape:'htmlall':'UTF-8'}</span></p>*}
|
|
||||||
|
|
||||||
<!-- quantity wanted -->
|
|
||||||
<p id="quantity_wanted_p"{if (!$allow_oosp && $product->quantity <= 0) OR $virtual OR !$product->available_for_order OR $PS_CATALOG_MODE} style="display: none;"{/if}>
|
|
||||||
<label>{l s='Quantity :'}</label>
|
|
||||||
<input type="text" name="qty" id="quantity_wanted" class="text" value="{if isset($quantityBackup)}{$quantityBackup|intval}{else}{if $product->minimal_quantity > 1}{$product->minimal_quantity}{else}1{/if}{/if}" size="2" maxlength="3" {if $product->minimal_quantity > 1}onkeyup="checkMinimalQuantity({$product->minimal_quantity});"{/if} />
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<!-- minimal quantity wanted -->
|
|
||||||
<p id="minimal_quantity_wanted_p"{if $product->minimal_quantity <= 1 OR !$product->available_for_order OR $PS_CATALOG_MODE} style="display: none;"{/if}>{l s='You must add '} <b id="minimal_quantity_label">{$product->minimal_quantity}</b> {l s=' as a minimum quantity to buy this product.'}</p>
|
|
||||||
{if $product->minimal_quantity > 1}
|
|
||||||
<script type="text/javascript">
|
|
||||||
checkMinimalQuantity();
|
|
||||||
</script>
|
|
||||||
{/if}
|
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
<p{if (!$allow_oosp && $product->quantity <= 0) OR !$product->available_for_order OR (isset($restricted_country_mode) AND $restricted_country_mode) OR $PS_CATALOG_MODE} style="display: none;"{/if} id="add_to_cart" class="buttons_bottom_block"><input type="submit" name="Submit" value="{l s='Add to cart'}" class="exclusive" /></p>
|
<p{if (!$allow_oosp && $product->quantity <= 0) OR !$product->available_for_order OR (isset($restricted_country_mode) AND $restricted_country_mode) OR $PS_CATALOG_MODE} style="display: none;"{/if} id="add_to_cart" class="buttons_bottom_block"><input type="submit" name="Submit" value="{l s='Add to cart'}" class="exclusive" /></p>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user