mirror of
https://github.com/retailcrm/opencart-module.git
synced 2024-11-22 13:16:07 +03:00
commit
81d1d5e94e
@ -176,6 +176,7 @@
|
|||||||
<label class="col-sm-2 control-label" style="text-align:right!important;" for="opencart_customer_group_<?php echo $customerGroup['customer_group_id']; ?>"><?php echo $customerGroup['name']; ?></label>
|
<label class="col-sm-2 control-label" style="text-align:right!important;" for="opencart_customer_group_<?php echo $customerGroup['customer_group_id']; ?>"><?php echo $customerGroup['name']; ?></label>
|
||||||
<div class="col-md-4 col-sm-10">
|
<div class="col-md-4 col-sm-10">
|
||||||
<select id="retailcrm_special_<?php echo $cid; ?>" name="retailcrm_special_<?php echo $cid; ?>" class="form-control">
|
<select id="retailcrm_special_<?php echo $cid; ?>" name="retailcrm_special_<?php echo $cid; ?>" class="form-control">
|
||||||
|
<option value="" <?php if (empty($saved_settings['retailcrm_special_' . $cid])) echo 'selected'; ?>>---</option>
|
||||||
<?php foreach ($priceTypes as $k => $priceType): ?>
|
<?php foreach ($priceTypes as $k => $priceType): ?>
|
||||||
<?php if ($priceType['active'] == true and $priceType['default'] == false) :?>
|
<?php if ($priceType['active'] == true and $priceType['default'] == false) :?>
|
||||||
<option value="<?php echo $priceType['code'];?>" <?php if(isset($saved_settings['retailcrm_special_' . $cid]) && $priceType['code'] == $saved_settings['retailcrm_special_' . $cid]):?>selected="selected"<?php endif;?>>
|
<option value="<?php echo $priceType['code'];?>" <?php if(isset($saved_settings['retailcrm_special_' . $cid]) && $priceType['code'] == $saved_settings['retailcrm_special_' . $cid]):?>selected="selected"<?php endif;?>>
|
||||||
|
@ -130,14 +130,14 @@
|
|||||||
<div class="col-sm-10">
|
<div class="col-sm-10">
|
||||||
<label class="radio-inline">
|
<label class="radio-inline">
|
||||||
<input type="radio" name="module_retailcrm_status_changes" value="1"
|
<input type="radio" name="module_retailcrm_status_changes" value="1"
|
||||||
{% if saved_settings.retailcrm_status_changes is defined and saved_settings.retailcrm_status_changes == 1 %}
|
{% if saved_settings.module_retailcrm_status_changes is defined and saved_settings.module_retailcrm_status_changes == 1 %}
|
||||||
checked
|
checked
|
||||||
{% endif %} />
|
{% endif %} />
|
||||||
{{ text_yes }}
|
{{ text_yes }}
|
||||||
</label>
|
</label>
|
||||||
<label class="radio-inline">
|
<label class="radio-inline">
|
||||||
<input type="radio" name="module_retailcrm_status_changes" value="0"
|
<input type="radio" name="module_retailcrm_status_changes" value="0"
|
||||||
{% if saved_settings.retailcrm_status_changes is not defined or saved_settings.retailcrm_status_changes == 0 %}
|
{% if saved_settings.module_retailcrm_status_changes is not defined or saved_settings.module_retailcrm_status_changes == 0 %}
|
||||||
checked
|
checked
|
||||||
{% endif %} />
|
{% endif %} />
|
||||||
{{ text_no }}
|
{{ text_no }}
|
||||||
@ -177,6 +177,7 @@
|
|||||||
<label class="col-sm-2 control-label" for="opencart_customer_group_{{ cud }}">{{ customerGroup.name }}</label>
|
<label class="col-sm-2 control-label" for="opencart_customer_group_{{ cud }}">{{ customerGroup.name }}</label>
|
||||||
<div class="col-md-4 col-sm-10">
|
<div class="col-md-4 col-sm-10">
|
||||||
<select id="module_retailcrm_special_{{ cud }}" name="module_retailcrm_special_{{ cud }}" class="form-control">
|
<select id="module_retailcrm_special_{{ cud }}" name="module_retailcrm_special_{{ cud }}" class="form-control">
|
||||||
|
<option value="" {% if saved_settings['module_retailcrm_special_'~cud] is not defined or saved_settings['module_retailcrm_special_'~cud] is empty %}selected{% endif %}>---</option>
|
||||||
{% for priceType in priceTypes %}
|
{% for priceType in priceTypes %}
|
||||||
{% if priceType.active == true and priceType.default == false%}
|
{% if priceType.active == true and priceType.default == false%}
|
||||||
<option value ="{{ priceType.code }}" {% if saved_settings['module_retailcrm_special_'~cud] is defined and priceType.code == saved_settings['module_retailcrm_special_'~cud] %} selected="selected" {% endif %}>
|
<option value ="{{ priceType.code }}" {% if saved_settings['module_retailcrm_special_'~cud] is defined and priceType.code == saved_settings['module_retailcrm_special_'~cud] %} selected="selected" {% endif %}>
|
||||||
|
Loading…
Reference in New Issue
Block a user