HEX
Server: LiteSpeed
System: Linux php-prod-3.spaceapp.ru 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: sarli3128 (1010)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /home/retile.ru/public_html/catalog/view/theme/unishop2/template/account/address_form.twig
{{ header }}
<div id="account-address" class="container">
	<ul class="breadcrumb">
		{% for key, breadcrumb in breadcrumbs %}
			{% if key+1 < breadcrumbs|length %}
				<li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
			{% else %}
				<li>{{ breadcrumb.text }}</li>
			{% endif %}
		{% endfor %}
	</ul>
	<div class="row">
		{{ column_left }}
		{% if column_left and column_right %}
			{% set class = ' col-sm-4 col-md-6 col-lg-6 col-xxl-12' %}
		{% elseif column_left or column_right %}
			{% set class = ' col-sm-8 col-md-9 col-lg-9 col-xxl-16' %}
		{% else %}
			{% set class = ' col-sm-12' %}
		{% endif %}
		<div id="content" class="{{ class }}">
		{{ content_top }}
		<div class="uni-wrapper">
		<div class="account-address-edit uni-form form-horizontal">
			<div class="form-group">
				<div class="col-sm-2 hidden-xs"></div>
				<div class="col-sm-10"><h3 class="uni-form__heading">{{ text_address }}</div>
			</div>
			<form action="{{ action }}" method="post" enctype="multipart/form-data" class="account-address__form">
				<div class="form-group required">
					<label class="col-sm-2 control-label" for="input-firstname">{{ entry_firstname }}</label>
					<div class="col-sm-10">
						<input type="text" name="firstname" value="{{ firstname }}" placeholder="{{ entry_firstname }}" id="input-firstname" class="form-control" />
						{% if error_firstname %}<div class="text-danger">{{ error_firstname }}</div>{% endif %}
					</div>
				</div>
				<div class="form-group required">
					<label class="col-sm-2 control-label" for="input-lastname">{{ entry_lastname }}</label>
					<div class="col-sm-10">
						<input type="text" name="lastname" value="{{ lastname }}" placeholder="{{ entry_lastname }}" id="input-lastname" class="form-control" />
						{% if error_lastname %}<div class="text-danger">{{ error_lastname }}</div>{% endif %}
					</div>
				</div>
				<div class="form-group">
					<label class="col-sm-2 control-label" for="input-company">{{ entry_company }}</label>
					<div class="col-sm-10">
						<input type="text" name="company" value="{{ company }}" placeholder="{{ entry_company }}" id="input-company" class="form-control" />
					</div>
				</div>
				<div class="form-group required">
					<label class="col-sm-2 control-label" for="input-country">{{ entry_country }}</label>
					<div class="col-sm-10">
						<select name="country_id" id="input-country" class="form-control">
							<option value="">{{ text_select }}</option>
							{% for country in countries %}
								{% if country.country_id == country_id %}
									<option value="{{ country.country_id }}" selected="selected">{{ country.name }}</option>
								{% else %}
									<option value="{{ country.country_id }}">{{ country.name }}</option>
								{% endif %}
							{% endfor %}
						</select>
						{% if error_country %}<div class="text-danger">{{ error_country }}</div>{% endif %}
					</div>
				</div>
				<div class="form-group required">
					<label class="col-sm-2 control-label" for="input-zone">{{ entry_zone }}</label>
					<div class="col-sm-10">
						<select name="zone_id" id="input-zone" class="form-control"></select>
						{% if error_zone %}<div class="text-danger">{{ error_zone }}</div>{% endif %}
					</div>
				</div>
				<div class="form-group required">
					<label class="col-sm-2 control-label" for="input-city">{{ entry_city }}</label>
					<div class="col-sm-10">
						<input type="text" name="city" value="{{ city }}" placeholder="{{ entry_city }}" id="input-city" class="form-control" />
						{% if error_city %}<div class="text-danger">{{ error_city }}</div>{% endif %}
					</div>
				</div>
				<div class="form-group required">
					<label class="col-sm-2 control-label" for="input-postcode">{{ entry_postcode }}</label>
					<div class="col-sm-10">
						<input type="text" name="postcode" value="{{ postcode }}" placeholder="{{ entry_postcode }}" id="input-postcode" class="form-control" />
						{% if error_postcode %}<div class="text-danger">{{ error_postcode }}</div>{% endif %}
					</div>
				</div>
				<div class="form-group required">
					<label class="col-sm-2 control-label" for="input-address-1">{{ entry_address_1 }}</label>
					<div class="col-sm-10">
						<input type="text" name="address_1" value="{{ address_1 }}" placeholder="{{ entry_address_1 }}" id="input-address-1" class="form-control" />
						{% if error_address_1 %}<div class="text-danger">{{ error_address_1 }}</div>{% endif %}
					</div>
				</div>
				<div class="form-group">
					<label class="col-sm-2 control-label" for="input-address-2">{{ entry_address_2 }}</label>
					<div class="col-sm-10">
						<input type="text" name="address_2" value="{{ address_2 }}" placeholder="{{ entry_address_2 }}" id="input-address-2" class="form-control" />
					</div>
				</div>
				{% for custom_field in custom_fields %}
					{% if custom_field.type == 'select' %}
						<div class="form-group {% if custom_field.required %} required {% endif %} custom-field" data-sort="{{ custom_field.sort_order }}">
							<label class="col-sm-2 control-label" for="input-custom-field{{ custom_field.custom_field_id }}">{{ custom_field.name }}</label>
							<div class="col-sm-10">
								<select name="custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" id="input-custom-field{{ custom_field.custom_field_id }}" class="form-control">
									<option value="">{{ text_select }}</option>
									{% for custom_field_value in custom_field.custom_field_value %}
										{% if account_custom_field[custom_field.custom_field_id] and custom_field_value.custom_field_value_id == account_custom_field[custom_field.custom_field_id] %}
											<option value="{{ custom_field_value.custom_field_value_id }}" selected="selected">{{ custom_field_value.name }}</option>
										{% else %}
											<option value="{{ custom_field_value.custom_field_value_id }}">{{ custom_field_value.name }}</option>
										{% endif %}
									{% endfor %}
								</select>
								{% if error_custom_field[custom_field.custom_field_id] %}
									<div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
								{% endif %}
							</div>
						</div>
					{% endif %}
					{% if custom_field.type == 'radio' %}
						<div class="form-group {% if custom_field.required %} required {% endif %} custom-field" data-sort="{{ custom_field.sort_order }}">
							<label class="col-sm-2 control-label">{{ custom_field.name }}</label>
							<div class="col-sm-10">
								{% for custom_field_value in custom_field.custom_field_value %}
									<div class="radio">
										{% if account_custom_field[custom_field.custom_field_id] and custom_field_value.custom_field_value_id == account_custom_field[custom_field.custom_field_id] %}
											<label class="input"><input type="radio" name="custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" value="{{ custom_field_value.custom_field_value_id }}" checked="checked" />{{ custom_field_value.name }}</label>
										{% else %}
											<label class="input"><input type="radio" name="custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" value="{{ custom_field_value.custom_field_value_id }}" />{{ custom_field_value.name }}</label>
										{% endif %}
									</div>
								{% endfor %}
							</div>
							{% if error_custom_field[custom_field.custom_field_id] %}
								<div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
							{% endif %}
						</div>
					{% endif %}
					{% if custom_field.type == 'checkbox' %}
						<div class="form-group {% if custom_field.required %} required {% endif %} custom-field" data-sort="{{ custom_field.sort_order }}">
							<label class="col-sm-2 control-label">{{ custom_field.name }}</label>
							<div class="col-sm-10">
								{% for custom_field_value in custom_field.custom_field_value %}
									<div class="checkbox">
										{% if account_custom_field[custom_field.custom_field_id] and custom_field_value.custom_field_value_id in account_custom_field[custom_field.custom_field_id] %}
											<label class="input"><input type="checkbox" name="custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}][]" value="{{ custom_field_value.custom_field_value_id }}" checked="checked" />{{ custom_field_value.name }}</label>
										{% else %}
											<label class="input"><input type="checkbox" name="custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}][]" value="{{ custom_field_value.custom_field_value_id }}" checked="checked" />{{ custom_field_value.name }}</label>
										{% endif %}
									</div>
								{% endfor %}
							</div>
							{% if error_custom_field[custom_field.custom_field_id] %}
								<div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
							{% endif %}
						</div>
					{% endif %}
					{% if custom_field.type == 'text' %}
						<div class="form-group {% if custom_field.required %} required {% endif %} custom-field" data-sort="{{ custom_field.sort_order }}">
							<label class="col-sm-2 control-label" for="input-custom-field{{ custom_field.custom_field_id }}">{{ custom_field.name }}</label>
							<div class="col-sm-10">
								<input type="text" name="custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" value="{% if account_custom_field[custom_field.custom_field_id] %}{{ account_custom_field[custom_field.custom_field_id] }}{% else %}{{ custom_field.value }}{% endif %}" placeholder="{{ custom_field.name }}" id="input-custom-field{{ custom_field.custom_field_id }}" class="form-control" />
								{% if error_custom_field[custom_field.custom_field_id] %}
									<div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
								{% endif %}
							</div>
						</div>
					{% endif %}
					{% if custom_field.type == 'textarea' %}
						<div class="form-group {% if custom_field.required %} required {% endif %} custom-field" data-sort="{{ custom_field.sort_order }}">
							<label class="col-sm-2 control-label" for="input-custom-field{{ custom_field.custom_field_id }}">{{ custom_field.name }}</label>
							<div class="col-sm-10">
								<textarea name="custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" rows="5" placeholder="{{ custom_field.name }}" id="input-custom-field{{ custom_field.custom_field_id }}" class="form-control">{% if account_custom_field[custom_field.custom_field_id] %}{{ account_custom_field[custom_field.custom_field_id] }}{% else %}{{ custom_field.value }}{% endif %}</textarea>
									{% if error_custom_field[custom_field.custom_field_id] %}
										<div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
									{% endif %}
								</div>
							</div>
					{% endif %}
					{% if custom_field.type == 'file' %}
							<div class="form-group {% if custom_field.required %} required {% endif %} custom-field" data-sort="{{ custom_field.sort_order }}">
								<label class="col-sm-2 control-label">{{ custom_field.name }}</label>
								<div class="col-sm-10">
									<button type="button" id="button-custom-field{{ custom_field.custom_field_id }}" data-loading-text="{{ text_loading }}" class="btn btn-default"><i class="fa fa-upload"></i> {{ button_upload }}</button>
									<input type="hidden" name="custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" value="{% if account_custom_field[custom_field.custom_field_id] %}{{ account_custom_field[custom_field.custom_field_id] }} {% endif %}" />
									{% if error_custom_field[custom_field.custom_field_id] %}
										<div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
									{% endif %}
								</div>
							</div>
					{% endif %}
					{% if custom_field.type == 'date' %}
							<div class="form-group {% if custom_field.required %} required {% endif %} custom-field" data-sort="{{ custom_field.sort_order }}">
								<label class="col-sm-2 control-label" for="input-custom-field{{ custom_field.custom_field_id }}">{{ custom_field.name }}</label>
								<div class="col-sm-10">
									<div class="input-group date">
										<input type="text" name="custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" value="{% if account_custom_field[custom_field.custom_field_id] %}{{ account_custom_field[custom_field.custom_field_id] }}{% else %}{{ custom_field.value }}{% endif %}" placeholder="{{ custom_field.name }}" data-date-format="YYYY-MM-DD" id="input-custom-field{{ custom_field.custom_field_id }}" class="form-control" />
										<span class="input-group-btn">
											<button type="button" class="btn btn-default"><i class="fa fa-calendar"></i></button>
										</span>
									</div>
									{% if error_custom_field[custom_field.custom_field_id] %}
										<div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
									{% endif %}
								</div>
							</div>
					{% endif %}
					{% if custom_field.type == 'time' %}
							<div class="form-group {% if custom_field.required %} required {% endif %} custom-field" data-sort="{{ custom_field.sort_order }}">
								<label class="col-sm-2 control-label" for="input-custom-field{{ custom_field.custom_field_id }}">{{ custom_field.name }}</label>
								<div class="col-sm-10">
									<div class="input-group time">
										<input type="text" name="custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" value="{% if account_custom_field[custom_field.custom_field_id] %}{{ account_custom_field[custom_field.custom_field_id] }}{% else %}{{ custom_field.value }}{% endif %}" placeholder="{{ custom_field.name }}" data-date-format="HH:mm" id="input-custom-field{{ custom_field.custom_field_id }}" class="form-control" />
										<span class="input-group-btn">
											<button type="button" class="btn btn-default"><i class="fa fa-calendar"></i></button>
										</span>
									</div>
									{% if error_custom_field[custom_field.custom_field_id] %}
										<div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
									{% endif %}
								</div>
							</div>
					{% endif %}
					{% if custom_field.type == 'time' %}
							<div class="form-group {% if custom_field.required %} required {% endif %} custom-field" data-sort="{{ custom_field.sort_order }}">
								<label class="col-sm-2 control-label" for="input-custom-field{{ custom_field.custom_field_id }}">{{ custom_field.name }}</label>
								<div class="col-sm-10">
									<div class="input-group datetime">
										<input type="text" name="custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" value="{% if account_custom_field[custom_field.custom_field_id] %}{{ account_custom_field[custom_field.custom_field_id] }}{% else %}{{ custom_field.value }}{% endif %}" placeholder="{{ custom_field.name }}" data-date-format="YYYY-MM-DD HH:mm" id="input-custom-field{{ custom_field.custom_field_id }}" class="form-control" />
										<span class="input-group-btn">
											<button type="button" class="btn btn-default"><i class="fa fa-calendar"></i></button>
										</span>
									</div>
									{% if error_custom_field[custom_field.custom_field_id] %}
										<div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div>
									{% endif %}
								</div>
							</div>
					{% endif %}
				{% endfor %}
				<div class="form-group">
					<label class="col-sm-2 control-label">{{ entry_default }}</label>
					<div class="col-sm-10"> 
						{% if default %}
							<label class="input"><input type="radio" name="default" value="1" checked="checked" />{{ text_yes }}</label>
							<label class="input"><input type="radio" name="default" value="0" />{{ text_no }}</label>
						{% else %}
							<label class="input"><input type="radio" name="default" value="1" />{{ text_yes }}</label>
							<label class="input"><input type="radio" name="default" value="0" checked="checked" />{{ text_no }}</label>
						{% endif %}
					</div>
				</div>
				<div class="form-group">
					<div class="col-sm-2 hidden-xs"></div>
					<div class="col-sm-10">
						<button type="submit" class="account-address-edit__btn btn btn-primary">{{ button_continue }}</button>
					</div>
				</div>
			</form>
		</div>
		</div>
		{{ content_bottom }}
	</div>
	{{ column_right }}
</div>
{% if dadata %}
	<script>
		$('input[name="city"], input[name="address_1"]').attr('autocomplete', 'off');
			
		$('input[name="city"], input[name="address_1"]').on('input', function() {
		
			$('.dadata-suggestions').remove();
			
			let $this = $(this), 
				query = $this.val(),
				query_type = ($this.attr('name') == 'city') ? 'city' : ($this.attr('name') == 'address_1' ? 'address' : ''),
				top = $this.position().top + $this.outerHeight(), 
				left = $this.position().left + 8,
				city = (!$('input[name="city"]').hasClass('hidden')) ? $('input[name="city"]').val() : '',
				locations = [{'country_iso_code': '*'}];
			
			if(query_type == 'address') {
				locations.push({'city': city});
			}
					
			$.ajax({
				url: 'https://suggestions.dadata.ru/suggestions/api/4_1/rs/suggest/address',
				headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'Authorization': 'Token {{ dadata.token }}'},
				data: JSON.stringify({query: query, locations: locations, geoLocation: true, 'restrict_value': true}),
				dataType: 'json',
				type: 'post',				
				success: function(json) {
					if(json.suggestions) {	
						city_arr = [];
								
						html = '<ul class="dadata-suggestions" style="top:'+top+'px">';
								
						for (i = 0; i < json.suggestions.length; i++) {	
							const result = json.suggestions[i];
									
							if(query_type == 'city') {
								if(result.data['city'] != null) {
									if(city_arr.indexOf(result.data['city']) == -1){
										html += '<li data-type="city">'+result.data['city']+'</li>';
									}

									city_arr.push(result.data['city']);
								}
										
								if(result.data['settlement'] != null) {
									const item = result.data.region_with_type+' '+result.data.settlement_with_type;
	
									if(city_arr.indexOf(result.data['settlement']) == -1){
										html += '<li data-type="city">'+item+'</li>';
									}
								
									city_arr.push(item);
								}
							}
					
							if(query_type == 'address') {
								html += '<li data-type="address" data-postcode="'+result.data.postal_code+'">'+result.value+'</li>';
							}
						}
						
						html += '</ul>';
								
						if(html.indexOf('<li') > -1) {
							$this.after(html);
						}
					}
				},
				error: function(xhr, ajaxOptions, thrownError) {
					console.log(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
				}
			});
		});
		
		$('body').on('click', '.dadata-suggestions li', function() {
			const $type = $(this).data('type'), $text = $(this).text();
							
			if($type == 'city') {
				$('input[name="city"]').val($text);
				$('input[name="address_1"]').val('');
			}
								
			if($type == 'address') {
				if($(this).data('postcode') && $('input[name="postcode"]').length) {
					$('input[name="postcode"]').val($(this).data('postcode'));
				}
								
				$('input[name="address_1"]').val($text);
			}
				
			$(this).parent().remove();
		});
	</script>
{% endif %}
<script>
$('.form-group[data-sort]').detach().each(function() {
	let sort = $(this).attr('data-sort')-1;

	if (sort >= 0 && sort <= $('.form-group').length) {
		$('.account-address__form .form-group').eq(sort).before(this);
	}

	if (sort >= $('.form-group').length) {
		$('.account-address__form .form-group:last').before(this);
	}

	if (sort < -$('.form-group').length) {
		$('.account-address__form .form-group:first').before(this);
	}
});
</script>
<script>
$('button[id^=\'button-custom-field\']').on('click', function() {
	var element = this;
	
	$('#form-upload').remove();
	
	$('body').prepend('<form enctype="multipart/form-data" id="form-upload" style="display: none;"><input type="file" name="file" /></form>');
	
	$('#form-upload input[name=\'file\']').trigger('click');
	
	if (typeof timer != 'undefined') {
		clearInterval(timer);
	}
	
	timer = setInterval(function() {
		if ($('#form-upload input[name=\'file\']').val() != '') {
			clearInterval(timer);
		
			$.ajax({
				url: 'index.php?route=tool/upload',
				type: 'post',
				dataType: 'json',
				data: new FormData($('#form-upload')[0]),
				cache: false,
				contentType: false,
				processData: false,
				beforeSend: function() {
					$(element).button('loading');
				},
				complete: function() {
					$(element).button('reset');
				},
				success: function(json) {
					$(element).parent().find('.text-danger').remove();
					
					if (json['error']) {
						$(element).parent().find('input').after('<div class="text-danger">' + json['error'] + '</div>');
					}
					
					if (json['success']) {
						alert(json['success']);
						
						$(element).parent().find('input').val(json['code']);
					}
				},
				error: function(xhr, ajaxOptions, thrownError) {
					alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
				}
			});
		}
	}, 500);
});
</script> 
<script type="text/javascript">
$('.date').datetimepicker({
	language: '{{ datepicker }}',
	pickTime: false
});

$('.datetime').datetimepicker({
	language: '{{ datepicker }}',
	pickDate: true,
	pickTime: true
});

$('.time').datetimepicker({
	language: '{{ datepicker }}',
	pickDate: false
});
</script> 
<script type="text/javascript">
$('select[name=\'country_id\']').on('change', function() {
	$.ajax({
		url: 'index.php?route=account/account/country&country_id=' + this.value,
		dataType: 'json',
		beforeSend: function() {
			$('select[name=\'country_id\']').prop('disabled', true);
		},
		complete: function() {
			$('select[name=\'country_id\']').prop('disabled', false);
		},
		success: function(json) {
			if (json['postcode_required'] == '1') {
				$('input[name=\'postcode\']').parent().parent().addClass('required');
			} else {
				$('input[name=\'postcode\']').parent().parent().removeClass('required');
			}
			
			html = '<option value="">{{ text_select }}</option>';
			
			if (json['zone'] && json['zone'] != '') {
				for (i = 0; i < json['zone'].length; i++) {
					html += '<option value="' + json['zone'][i]['zone_id'] + '"';
					
					if (json['zone'][i]['zone_id'] == '{{ zone_id }}') {
						html += ' selected="selected"';
					}
					
					html += '>' + json['zone'][i]['name'] + '</option>';
				}
			} else {
				html += '<option value="0" selected="selected">{{ text_none }}</option>';
			}
			
			$('select[name=\'zone_id\']').html(html);
		},
		error: function(xhr, ajaxOptions, thrownError) {
			alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
		}
	});
});

$('select[name=\'country_id\']').trigger('change');
</script> 
{{ footer }}