- Автор темы
- #1
opencart 1.5.5.1
установлен simple
установлены два способа доставки новая почта и точно такая же укрпочта.
если подключить оба способа доставки то рвет полностью, как только отключить один из них, тут же все отображается правильно. Встроенные модули не влияют. Проблема только в IE. При включенном пошаговом оформлении тоже рвет.
кодировка у файла koi8
вот код
Заранее спасибо за помощь.
установлен simple
установлены два способа доставки новая почта и точно такая же укрпочта.
если подключить оба способа доставки то рвет полностью, как только отключить один из них, тут же все отображается правильно. Встроенные модули не влияют. Проблема только в IE. При включенном пошаговом оформлении тоже рвет.
кодировка у файла koi8
вот код
<?php
class ModelShippingnovaposhta extends Model {
function getQuote($address) {
$this->load->language('shipping/novaposhta');
if ($this->config->get('novaposhta_status')) {
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "zone_to_geo_zone WHERE geo_zone_id = '" . (int) $this->config->get('novaposhta_geo_zone_id') . "' AND country_id = '" . (int) $address['country_id'] . "' AND (zone_id = '" . (int) $address['zone_id'] . "' OR zone_id = '0')");
if (!$this->config->get('novaposhta_geo_zone_id')) {
$status = TRUE;
} elseif ($query->num_rows) {
$status = TRUE;
} else {
$status = FALSE;
}
} else {
$status = FALSE;
}
$method_data = array();
if ($status) {
$quote_data = array();
$cost = 0.00;
if ($this->config->get('novaposhta_min_total_for_free_delivery') > $this->cart->getSubTotal()) {
$cost = $this->config->get('novaposhta_delivery_price');
}
$quote_data['novaposhta'] = array(
'code' => 'novaposhta.novaposhta',
'title' => $this->language->get('text_description'),
'cost' => $cost,
'tax_class_id' => 0,
'text' => $this->currency->format($cost)
);
$method_data = array(
'code' => 'novaposhta',
'title' => $this->language->get('text_title'),
'quote' => $quote_data,
'sort_order' => $this->config->get('novaposhta_sort_order'),
'error' => FALSE
);
}
return $method_data;
}
}
?>
class ModelShippingnovaposhta extends Model {
function getQuote($address) {
$this->load->language('shipping/novaposhta');
if ($this->config->get('novaposhta_status')) {
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "zone_to_geo_zone WHERE geo_zone_id = '" . (int) $this->config->get('novaposhta_geo_zone_id') . "' AND country_id = '" . (int) $address['country_id'] . "' AND (zone_id = '" . (int) $address['zone_id'] . "' OR zone_id = '0')");
if (!$this->config->get('novaposhta_geo_zone_id')) {
$status = TRUE;
} elseif ($query->num_rows) {
$status = TRUE;
} else {
$status = FALSE;
}
} else {
$status = FALSE;
}
$method_data = array();
if ($status) {
$quote_data = array();
$cost = 0.00;
if ($this->config->get('novaposhta_min_total_for_free_delivery') > $this->cart->getSubTotal()) {
$cost = $this->config->get('novaposhta_delivery_price');
}
$quote_data['novaposhta'] = array(
'code' => 'novaposhta.novaposhta',
'title' => $this->language->get('text_description'),
'cost' => $cost,
'tax_class_id' => 0,
'text' => $this->currency->format($cost)
);
$method_data = array(
'code' => 'novaposhta',
'title' => $this->language->get('text_title'),
'quote' => $quote_data,
'sort_order' => $this->config->get('novaposhta_sort_order'),
'error' => FALSE
);
}
return $method_data;
}
}
?>