4f25e4968e
public/admin/view/template/catalog/product_form.twig:494 — вместо таблицы с автокомплитом и кнопками добавления/удаления, теперь статический вывод: группы атрибутов панелями, слева название, справа textarea. JS-код addAttribute/attributeautocomplete удалён. public/admin/model/catalog/product.php:25,183 — в addProduct() и editProduct() добавлена проверка !empty($text) — сохраняются только заполненные textarea, пустые пропускаются.
1907 lines
65 KiB
PHP
1907 lines
65 KiB
PHP
<?php
|
|
// * @source See SOURCE.txt for source and other copyright.
|
|
// * @license GNU General Public License version 3; see LICENSE.txt
|
|
|
|
class ControllerCatalogProduct extends Controller {
|
|
private $error = array();
|
|
|
|
public function index() {
|
|
$this->load->language('catalog/product');
|
|
|
|
$this->document->setTitle($this->language->get('heading_title'));
|
|
|
|
$this->load->model('catalog/product');
|
|
|
|
$this->getList();
|
|
}
|
|
|
|
public function add() {
|
|
$this->load->language('catalog/product');
|
|
|
|
$this->document->setTitle($this->language->get('heading_title'));
|
|
|
|
$this->load->model('catalog/product');
|
|
|
|
if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validateForm()) {
|
|
$this->model_catalog_product->addProduct($this->request->post);
|
|
|
|
$this->session->data['success'] = $this->language->get('text_success');
|
|
|
|
$url = '';
|
|
|
|
if (isset($this->request->get['filter_name'])) {
|
|
$url .= '&filter_name=' . urlencode(html_entity_decode($this->request->get['filter_name'], ENT_QUOTES, 'UTF-8'));
|
|
}
|
|
|
|
if (isset($this->request->get['filter_model'])) {
|
|
$url .= '&filter_model=' . urlencode(html_entity_decode($this->request->get['filter_model'], ENT_QUOTES, 'UTF-8'));
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price'])) {
|
|
$url .= '&filter_price=' . $this->request->get['filter_price'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price_min'])) {
|
|
$url .= '&filter_price_min=' . $this->request->get['filter_price_min'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price_max'])) {
|
|
$url .= '&filter_price_max=' . $this->request->get['filter_price_max'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity'])) {
|
|
$url .= '&filter_quantity=' . $this->request->get['filter_quantity'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity_min'])) {
|
|
$url .= '&filter_quantity_min=' . $this->request->get['filter_quantity_min'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity_max'])) {
|
|
$url .= '&filter_quantity_max=' . $this->request->get['filter_quantity_max'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_status'])) {
|
|
$url .= '&filter_status=' . $this->request->get['filter_status'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_category'])) {
|
|
$url .= '&filter_category=' . $this->request->get['filter_category'];
|
|
if (isset($this->request->get['filter_sub_category'])) {
|
|
$url .= '&filter_sub_category';
|
|
}
|
|
}
|
|
|
|
if (isset($this->request->get['filter_manufacturer_id'])) {
|
|
$url .= '&filter_manufacturer_id=' . $this->request->get['filter_manufacturer_id'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_noindex'])) {
|
|
$url .= '&filter_noindex=' . $this->request->get['filter_noindex'];
|
|
}
|
|
|
|
if (isset($this->request->get['sort'])) {
|
|
$url .= '&sort=' . $this->request->get['sort'];
|
|
}
|
|
|
|
if (isset($this->request->get['order'])) {
|
|
$url .= '&order=' . $this->request->get['order'];
|
|
}
|
|
|
|
if (isset($this->request->get['page'])) {
|
|
$url .= '&page=' . $this->request->get['page'];
|
|
}
|
|
|
|
$this->response->redirect($this->url->link('catalog/product', 'user_token=' . $this->session->data['user_token'] . $url, true));
|
|
}
|
|
|
|
$this->getForm();
|
|
}
|
|
|
|
public function edit() {
|
|
$this->load->language('catalog/product');
|
|
|
|
$this->document->setTitle($this->language->get('heading_title'));
|
|
|
|
$this->load->model('catalog/product');
|
|
|
|
if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validateForm()) {
|
|
$this->model_catalog_product->editProduct($this->request->get['product_id'], $this->request->post);
|
|
|
|
$this->session->data['success'] = $this->language->get('text_success');
|
|
|
|
$url = '';
|
|
|
|
if (isset($this->request->get['filter_name'])) {
|
|
$url .= '&filter_name=' . urlencode(html_entity_decode($this->request->get['filter_name'], ENT_QUOTES, 'UTF-8'));
|
|
}
|
|
|
|
if (isset($this->request->get['filter_model'])) {
|
|
$url .= '&filter_model=' . urlencode(html_entity_decode($this->request->get['filter_model'], ENT_QUOTES, 'UTF-8'));
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price'])) {
|
|
$url .= '&filter_price=' . $this->request->get['filter_price'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price_min'])) {
|
|
$url .= '&filter_price_min=' . $this->request->get['filter_price_min'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price_max'])) {
|
|
$url .= '&filter_price_max=' . $this->request->get['filter_price_max'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity'])) {
|
|
$url .= '&filter_quantity=' . $this->request->get['filter_quantity'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity'])) {
|
|
$url .= '&filter_quantity=' . $this->request->get['filter_quantity'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity_min'])) {
|
|
$url .= '&filter_quantity_min=' . $this->request->get['filter_quantity_min'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity_max'])) {
|
|
$url .= '&filter_quantity_max=' . $this->request->get['filter_quantity_max'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_status'])) {
|
|
$url .= '&filter_status=' . $this->request->get['filter_status'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_status'])) {
|
|
$url .= '&filter_status=' . $this->request->get['filter_status'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_category'])) {
|
|
$url .= '&filter_category=' . $this->request->get['filter_category'];
|
|
if (isset($this->request->get['filter_sub_category'])) {
|
|
$url .= '&filter_sub_category';
|
|
}
|
|
}
|
|
|
|
if (isset($this->request->get['filter_manufacturer_id'])) {
|
|
$url .= '&filter_manufacturer_id=' . $this->request->get['filter_manufacturer_id'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_noindex'])) {
|
|
$url .= '&filter_noindex=' . $this->request->get['filter_noindex'];
|
|
}
|
|
|
|
if (isset($this->request->get['sort'])) {
|
|
$url .= '&sort=' . $this->request->get['sort'];
|
|
}
|
|
|
|
if (isset($this->request->get['order'])) {
|
|
$url .= '&order=' . $this->request->get['order'];
|
|
}
|
|
|
|
if (isset($this->request->get['page'])) {
|
|
$url .= '&page=' . $this->request->get['page'];
|
|
}
|
|
|
|
$this->response->redirect($this->url->link('catalog/product', 'user_token=' . $this->session->data['user_token'] . $url, true));
|
|
}
|
|
|
|
$this->getForm();
|
|
}
|
|
|
|
public function delete() {
|
|
$this->load->language('catalog/product');
|
|
|
|
$this->document->setTitle($this->language->get('heading_title'));
|
|
|
|
$this->load->model('catalog/product');
|
|
|
|
if (isset($this->request->post['selected']) && $this->validateDelete()) {
|
|
foreach ($this->request->post['selected'] as $product_id) {
|
|
$this->model_catalog_product->deleteProduct($product_id);
|
|
}
|
|
|
|
$this->session->data['success'] = $this->language->get('text_success');
|
|
|
|
$url = '';
|
|
|
|
if (isset($this->request->get['filter_name'])) {
|
|
$url .= '&filter_name=' . urlencode(html_entity_decode($this->request->get['filter_name'], ENT_QUOTES, 'UTF-8'));
|
|
}
|
|
|
|
if (isset($this->request->get['filter_model'])) {
|
|
$url .= '&filter_model=' . urlencode(html_entity_decode($this->request->get['filter_model'], ENT_QUOTES, 'UTF-8'));
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price'])) {
|
|
$url .= '&filter_price=' . $this->request->get['filter_price'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price_min'])) {
|
|
$url .= '&filter_price_min=' . $this->request->get['filter_price_min'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price_max'])) {
|
|
$url .= '&filter_price_max=' . $this->request->get['filter_price_max'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity'])) {
|
|
$url .= '&filter_quantity=' . $this->request->get['filter_quantity'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity_min'])) {
|
|
$url .= '&filter_quantity_min=' . $this->request->get['filter_quantity_min'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity_max'])) {
|
|
$url .= '&filter_quantity_max=' . $this->request->get['filter_quantity_max'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_status'])) {
|
|
$url .= '&filter_status=' . $this->request->get['filter_status'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_category'])) {
|
|
$url .= '&filter_category=' . $this->request->get['filter_category'];
|
|
if (isset($this->request->get['filter_sub_category'])) {
|
|
$url .= '&filter_sub_category';
|
|
}
|
|
}
|
|
|
|
if (isset($this->request->get['filter_manufacturer_id'])) {
|
|
$url .= '&filter_manufacturer_id=' . $this->request->get['filter_manufacturer_id'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_noindex'])) {
|
|
$url .= '&filter_noindex=' . $this->request->get['filter_noindex'];
|
|
}
|
|
|
|
if (isset($this->request->get['sort'])) {
|
|
$url .= '&sort=' . $this->request->get['sort'];
|
|
}
|
|
|
|
if (isset($this->request->get['order'])) {
|
|
$url .= '&order=' . $this->request->get['order'];
|
|
}
|
|
|
|
if (isset($this->request->get['page'])) {
|
|
$url .= '&page=' . $this->request->get['page'];
|
|
}
|
|
|
|
$this->response->redirect($this->url->link('catalog/product', 'user_token=' . $this->session->data['user_token'] . $url, true));
|
|
}
|
|
|
|
$this->getList();
|
|
}
|
|
|
|
public function copy() {
|
|
$this->load->language('catalog/product');
|
|
|
|
$this->document->setTitle($this->language->get('heading_title'));
|
|
|
|
$this->load->model('catalog/product');
|
|
|
|
if (isset($this->request->post['selected']) && $this->validateCopy()) {
|
|
foreach ($this->request->post['selected'] as $product_id) {
|
|
$this->model_catalog_product->copyProduct($product_id);
|
|
}
|
|
|
|
$this->session->data['success'] = $this->language->get('text_success');
|
|
|
|
$url = '';
|
|
|
|
if (isset($this->request->get['filter_name'])) {
|
|
$url .= '&filter_name=' . urlencode(html_entity_decode($this->request->get['filter_name'], ENT_QUOTES, 'UTF-8'));
|
|
}
|
|
|
|
if (isset($this->request->get['filter_model'])) {
|
|
$url .= '&filter_model=' . urlencode(html_entity_decode($this->request->get['filter_model'], ENT_QUOTES, 'UTF-8'));
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price'])) {
|
|
$url .= '&filter_price=' . $this->request->get['filter_price'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price_min'])) {
|
|
$url .= '&filter_price_min=' . $this->request->get['filter_price_min'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price_max'])) {
|
|
$url .= '&filter_price_max=' . $this->request->get['filter_price_max'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity'])) {
|
|
$url .= '&filter_quantity=' . $this->request->get['filter_quantity'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity_min'])) {
|
|
$url .= '&filter_quantity_min=' . $this->request->get['filter_quantity_min'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity_max'])) {
|
|
$url .= '&filter_quantity_max=' . $this->request->get['filter_quantity_max'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_status'])) {
|
|
$url .= '&filter_status=' . $this->request->get['filter_status'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_category'])) {
|
|
$url .= '&filter_category=' . $this->request->get['filter_category'];
|
|
if (isset($this->request->get['filter_sub_category'])) {
|
|
$url .= '&filter_sub_category';
|
|
}
|
|
}
|
|
|
|
if (isset($this->request->get['filter_manufacturer_id'])) {
|
|
$url .= '&filter_manufacturer_id=' . $this->request->get['filter_manufacturer_id'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_noindex'])) {
|
|
$url .= '&filter_noindex=' . $this->request->get['filter_noindex'];
|
|
}
|
|
|
|
if (isset($this->request->get['sort'])) {
|
|
$url .= '&sort=' . $this->request->get['sort'];
|
|
}
|
|
|
|
if (isset($this->request->get['order'])) {
|
|
$url .= '&order=' . $this->request->get['order'];
|
|
}
|
|
|
|
if (isset($this->request->get['page'])) {
|
|
$url .= '&page=' . $this->request->get['page'];
|
|
}
|
|
|
|
$this->response->redirect($this->url->link('catalog/product', 'user_token=' . $this->session->data['user_token'] . $url, true));
|
|
}
|
|
|
|
$this->getList();
|
|
}
|
|
|
|
protected function getList() {
|
|
if (isset($this->request->get['filter_name'])) {
|
|
$filter_name = $this->request->get['filter_name'];
|
|
} else {
|
|
$filter_name = '';
|
|
}
|
|
|
|
if (isset($this->request->get['filter_model'])) {
|
|
$filter_model = $this->request->get['filter_model'];
|
|
} else {
|
|
$filter_model = '';
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price'])) {
|
|
$filter_price = $this->request->get['filter_price'];
|
|
} else {
|
|
$filter_price = '';
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price_min'])) {
|
|
$filter_price_min = $this->request->get['filter_price_min'];
|
|
} else {
|
|
$filter_price_min = null;
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price_max'])) {
|
|
$filter_price_max = $this->request->get['filter_price_max'];
|
|
} else {
|
|
$filter_price_max = null;
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity'])) {
|
|
$filter_quantity = $this->request->get['filter_quantity'];
|
|
} else {
|
|
$filter_quantity = '';
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity_min'])) {
|
|
$filter_quantity_min = $this->request->get['filter_quantity_min'];
|
|
} else {
|
|
$filter_quantity_min = null;
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity_max'])) {
|
|
$filter_quantity_max = $this->request->get['filter_quantity_max'];
|
|
} else {
|
|
$filter_quantity_max = null;
|
|
}
|
|
|
|
if (isset($this->request->get['filter_status'])) {
|
|
$filter_status = $this->request->get['filter_status'];
|
|
} else {
|
|
$filter_status = '';
|
|
}
|
|
|
|
$filter_sub_category = null;
|
|
if (isset($this->request->get['filter_category'])) {
|
|
$filter_category = $this->request->get['filter_category'];
|
|
if (!empty($filter_category) && isset($this->request->get['filter_sub_category'])) {
|
|
$filter_sub_category = true;
|
|
} elseif (isset($this->request->get['filter_sub_category'])) {
|
|
unset($this->request->get['filter_sub_category']);
|
|
}
|
|
} else {
|
|
$filter_category = null;
|
|
if (isset($this->request->get['filter_sub_category'])) {
|
|
unset($this->request->get['filter_sub_category']);
|
|
}
|
|
}
|
|
|
|
$filter_category_name = null;
|
|
if (isset($filter_category)) {
|
|
if ($filter_category>0) {
|
|
$this->load->model('catalog/category');
|
|
|
|
|
|
|
|
$category = $this->model_catalog_category->getCategory($filter_category);
|
|
if ($category) {
|
|
$filter_category_name = ($category['path']) ? $category['path'] . ' > ' . $category['name'] : $category['name'];
|
|
} else {
|
|
$filter_category = null;
|
|
unset($this->request->get['filter_category']);
|
|
$filter_sub_category = null;
|
|
if (isset($this->request->get['filter_sub_category'])) {
|
|
unset($this->request->get['filter_sub_category']);
|
|
}
|
|
}
|
|
} else {
|
|
$filter_category_name = $this->language->get('text_none_category');
|
|
}
|
|
}
|
|
|
|
$filter_manufacturer_id = null;
|
|
$filter_manufacturer_name = '';
|
|
if (isset($this->request->get['filter_manufacturer_id'])) {
|
|
$filter_manufacturer_id = (int)$this->request->get['filter_manufacturer_id'];
|
|
if($filter_manufacturer_id > 0) {
|
|
$this->load->model('catalog/manufacturer');
|
|
$manufacturer = $this->model_catalog_manufacturer->getManufacturer($filter_manufacturer_id);
|
|
if ($manufacturer) {
|
|
$filter_manufacturer_name = $manufacturer['name'];
|
|
} else {
|
|
$filter_manufacturer_name = null;
|
|
unset($this->request->get['filter_manufacturer_id']);
|
|
}
|
|
} else {
|
|
$filter_manufacturer_id = 0;
|
|
$filter_manufacturer_name = $this->language->get('text_none_manufacturer');
|
|
}
|
|
}
|
|
|
|
/*
|
|
$filter_manufacturer_name = null;
|
|
if (isset($filter_manufacturer)) {
|
|
if ($filter_manufacturer>0) {
|
|
$this->load->model('catalog/manufacturer');
|
|
$manufacturer = $this->model_catalog_manufacturer->getManufacturer($filter_manufacturer);
|
|
if ($manufacturer) {
|
|
$filter_manufacturer_name = $manufacturer['name'];
|
|
} else {
|
|
$filter_manufacturer = null;
|
|
unset($this->request->get['filter_manufacturer']);
|
|
}
|
|
} elseif ($filter_manufacturer==0) {
|
|
$filter_manufacturer_name = $this->language->get('text_none_manufacturer');
|
|
}
|
|
}
|
|
*/
|
|
|
|
if (isset($this->request->get['filter_noindex'])) {
|
|
$filter_noindex = $this->request->get['filter_noindex'];
|
|
} else {
|
|
$filter_noindex = '';
|
|
}
|
|
|
|
if (isset($this->request->get['sort'])) {
|
|
$sort = $this->request->get['sort'];
|
|
} else {
|
|
$sort = 'pd.name';
|
|
}
|
|
|
|
if (isset($this->request->get['order'])) {
|
|
$order = $this->request->get['order'];
|
|
} else {
|
|
$order = 'ASC';
|
|
}
|
|
|
|
if (isset($this->request->get['page'])) {
|
|
$page = (int)$this->request->get['page'];
|
|
} else {
|
|
$page = 1;
|
|
}
|
|
|
|
$url = '';
|
|
|
|
if (isset($this->request->get['filter_name'])) {
|
|
$url .= '&filter_name=' . urlencode(html_entity_decode($this->request->get['filter_name'], ENT_QUOTES, 'UTF-8'));
|
|
}
|
|
|
|
if (isset($this->request->get['filter_model'])) {
|
|
$url .= '&filter_model=' . urlencode(html_entity_decode($this->request->get['filter_model'], ENT_QUOTES, 'UTF-8'));
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price'])) {
|
|
$url .= '&filter_price=' . $this->request->get['filter_price'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price_min'])) {
|
|
$url .= '&filter_price_min=' . $this->request->get['filter_price_min'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price_max'])) {
|
|
$url .= '&filter_price_max=' . $this->request->get['filter_price_max'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity'])) {
|
|
$url .= '&filter_quantity=' . $this->request->get['filter_quantity'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity_min'])) {
|
|
$url .= '&filter_quantity_min=' . $this->request->get['filter_quantity_min'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity_max'])) {
|
|
$url .= '&filter_quantity_max=' . $this->request->get['filter_quantity_max'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_status'])) {
|
|
$url .= '&filter_status=' . $this->request->get['filter_status'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_category'])) {
|
|
$url .= '&filter_category=' . $this->request->get['filter_category'];
|
|
if (isset($this->request->get['filter_sub_category'])) {
|
|
$url .= '&filter_sub_category';
|
|
}
|
|
}
|
|
|
|
|
|
if (isset($this->request->get['filter_manufacturer_id'])) {
|
|
$url .= '&filter_manufacturer_id=' . $this->request->get['filter_manufacturer_id'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_noindex'])) {
|
|
$url .= '&filter_noindex=' . $this->request->get['filter_noindex'];
|
|
}
|
|
|
|
if (isset($this->request->get['order'])) {
|
|
$url .= '&order=' . $this->request->get['order'];
|
|
}
|
|
|
|
if (isset($this->request->get['page'])) {
|
|
$url .= '&page=' . $this->request->get['page'];
|
|
}
|
|
|
|
$data['breadcrumbs'] = array();
|
|
|
|
$data['breadcrumbs'][] = array(
|
|
'text' => $this->language->get('text_home'),
|
|
'href' => $this->url->link('common/dashboard', 'user_token=' . $this->session->data['user_token'], true)
|
|
);
|
|
|
|
$data['breadcrumbs'][] = array(
|
|
'text' => $this->language->get('heading_title'),
|
|
'href' => $this->url->link('catalog/product', 'user_token=' . $this->session->data['user_token'] . $url, true)
|
|
);
|
|
|
|
$data['add'] = $this->url->link('catalog/product/add', 'user_token=' . $this->session->data['user_token'] . $url, true);
|
|
$data['copy'] = $this->url->link('catalog/product/copy', 'user_token=' . $this->session->data['user_token'] . $url, true);
|
|
$data['delete'] = $this->url->link('catalog/product/delete', 'user_token=' . $this->session->data['user_token'] . $url, true);
|
|
$data['enabled'] = $this->url->link('catalog/product/enable', 'user_token=' . $this->session->data['user_token'] . $url, true);
|
|
$data['disabled'] = $this->url->link('catalog/product/disable', 'user_token=' . $this->session->data['user_token'] . $url, true);
|
|
|
|
$data['products'] = array();
|
|
|
|
$filter_data = array(
|
|
'filter_name' => $filter_name,
|
|
'filter_model' => $filter_model,
|
|
'filter_price' => $filter_price,
|
|
'filter_price_min'=> $filter_price_min,
|
|
'filter_price_max'=> $filter_price_max,
|
|
'filter_quantity' => $filter_quantity,
|
|
'filter_quantity_min' => $filter_quantity_min,
|
|
'filter_quantity_max' => $filter_quantity_max,
|
|
'filter_status' => $filter_status,
|
|
'filter_category' => $filter_category,
|
|
'filter_sub_category' => $filter_sub_category,
|
|
'filter_manufacturer_id'=> $filter_manufacturer_id,
|
|
'filter_noindex' => $filter_noindex,
|
|
'sort' => $sort,
|
|
'order' => $order,
|
|
'start' => ($page - 1) * $this->config->get('config_limit_admin'),
|
|
'limit' => $this->config->get('config_limit_admin')
|
|
);
|
|
|
|
|
|
$this->load->model('tool/image');
|
|
|
|
$product_total = $this->model_catalog_product->getTotalProducts($filter_data);
|
|
|
|
$results = $this->model_catalog_product->getProducts($filter_data);
|
|
|
|
foreach ($results as $result) {
|
|
if (is_file(DIR_IMAGE . $result['image'])) {
|
|
$image = $this->model_tool_image->resize($result['image'], 40, 40);
|
|
} else {
|
|
$image = $this->model_tool_image->resize('no_image.png', 40, 40);
|
|
}
|
|
|
|
$special = false;
|
|
|
|
$product_specials = $this->model_catalog_product->getProductSpecials($result['product_id']);
|
|
|
|
foreach ($product_specials as $product_special) {
|
|
if (($product_special['date_start'] == '0000-00-00' || strtotime($product_special['date_start']) < time()) && ($product_special['date_end'] == '0000-00-00' || strtotime($product_special['date_end']) > time())) {
|
|
$special = $this->currency->format($product_special['price'], $this->config->get('config_currency'));
|
|
|
|
break;
|
|
}
|
|
}
|
|
|
|
$data['products'][] = array(
|
|
'product_id' => $result['product_id'],
|
|
'image' => $image,
|
|
'name' => $result['name'],
|
|
'model' => $result['model'],
|
|
'price' => $this->currency->format($result['price'], $this->config->get('config_currency')),
|
|
'special' => $special,
|
|
'quantity' => $result['quantity'],
|
|
'status' => $result['status'] ? $this->language->get('text_enabled_short') : $this->language->get('text_disabled_short'),
|
|
'noindex' => $result['noindex'] ? $this->language->get('text_enabled_short') : $this->language->get('text_disabled_short'),
|
|
'href_shop' => HTTP_CATALOG . 'index.php?route=product/product&product_id=' . $result['product_id'],
|
|
'edit' => $this->url->link('catalog/product/edit', 'user_token=' . $this->session->data['user_token'] . '&product_id=' . $result['product_id'] . $url, true)
|
|
);
|
|
}
|
|
|
|
$data['user_token'] = $this->session->data['user_token'];
|
|
|
|
if (isset($this->error['warning'])) {
|
|
$data['error_warning'] = $this->error['warning'];
|
|
} else {
|
|
$data['error_warning'] = '';
|
|
}
|
|
|
|
if (isset($this->session->data['success'])) {
|
|
$data['success'] = $this->session->data['success'];
|
|
|
|
unset($this->session->data['success']);
|
|
} else {
|
|
$data['success'] = '';
|
|
}
|
|
|
|
if (isset($this->request->post['selected'])) {
|
|
$data['selected'] = (array)$this->request->post['selected'];
|
|
} else {
|
|
$data['selected'] = array();
|
|
}
|
|
|
|
$url = '';
|
|
|
|
if (isset($this->request->get['filter_name'])) {
|
|
$url .= '&filter_name=' . urlencode(html_entity_decode($this->request->get['filter_name'], ENT_QUOTES, 'UTF-8'));
|
|
}
|
|
|
|
if (isset($this->request->get['filter_model'])) {
|
|
$url .= '&filter_model=' . urlencode(html_entity_decode($this->request->get['filter_model'], ENT_QUOTES, 'UTF-8'));
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price'])) {
|
|
$url .= '&filter_price=' . $this->request->get['filter_price'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price_min'])) {
|
|
$url .= '&filter_price_min=' . $this->request->get['filter_price_min'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price_max'])) {
|
|
$url .= '&filter_price_max=' . $this->request->get['filter_price_max'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity'])) {
|
|
$url .= '&filter_quantity=' . $this->request->get['filter_quantity'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity_min'])) {
|
|
$url .= '&filter_quantity_min=' . $this->request->get['filter_quantity_min'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity_max'])) {
|
|
$url .= '&filter_quantity_max=' . $this->request->get['filter_quantity_max'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_status'])) {
|
|
$url .= '&filter_status=' . $this->request->get['filter_status'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_category'])) {
|
|
$url .= '&filter_category=' . $this->request->get['filter_category'];
|
|
if (isset($this->request->get['filter_sub_category'])) {
|
|
$url .= '&filter_sub_category';
|
|
}
|
|
}
|
|
|
|
if (isset($this->request->get['filter_manufacturer_id'])) {
|
|
$url .= '&filter_manufacturer_id=' . $this->request->get['filter_manufacturer_id'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_noindex'])) {
|
|
$url .= '&filter_noindex=' . $this->request->get['filter_noindex'];
|
|
}
|
|
|
|
if ($order == 'ASC') {
|
|
$url .= '&order=DESC';
|
|
} else {
|
|
$url .= '&order=ASC';
|
|
}
|
|
|
|
if (isset($this->request->get['page'])) {
|
|
$url .= '&page=' . $this->request->get['page'];
|
|
}
|
|
|
|
$data['sort_name'] = $this->url->link('catalog/product', 'user_token=' . $this->session->data['user_token'] . '&sort=pd.name' . $url, true);
|
|
$data['sort_model'] = $this->url->link('catalog/product', 'user_token=' . $this->session->data['user_token'] . '&sort=p.model' . $url, true);
|
|
$data['sort_price'] = $this->url->link('catalog/product', 'user_token=' . $this->session->data['user_token'] . '&sort=p.price' . $url, true);
|
|
$data['sort_quantity'] = $this->url->link('catalog/product', 'user_token=' . $this->session->data['user_token'] . '&sort=p.quantity' . $url, true);
|
|
$data['sort_status'] = $this->url->link('catalog/product', 'user_token=' . $this->session->data['user_token'] . '&sort=p.status' . $url, true);
|
|
$data['sort_noindex'] = $this->url->link('catalog/product', 'user_token=' . $this->session->data['user_token'] . '&sort=p.noindex' . $url, true);
|
|
$data['sort_order'] = $this->url->link('catalog/product', 'user_token=' . $this->session->data['user_token'] . '&sort=p.sort_order' . $url, true);
|
|
|
|
$url = '';
|
|
|
|
if (isset($this->request->get['filter_name'])) {
|
|
$url .= '&filter_name=' . urlencode(html_entity_decode($this->request->get['filter_name'], ENT_QUOTES, 'UTF-8'));
|
|
}
|
|
|
|
if (isset($this->request->get['filter_model'])) {
|
|
$url .= '&filter_model=' . urlencode(html_entity_decode($this->request->get['filter_model'], ENT_QUOTES, 'UTF-8'));
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price'])) {
|
|
$url .= '&filter_price=' . $this->request->get['filter_price'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price_min'])) {
|
|
$url .= '&filter_price_min=' . $this->request->get['filter_price_min'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price_max'])) {
|
|
$url .= '&filter_price_max=' . $this->request->get['filter_price_max'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity'])) {
|
|
$url .= '&filter_quantity=' . $this->request->get['filter_quantity'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity_min'])) {
|
|
$url .= '&filter_quantity_min=' . $this->request->get['filter_quantity_min'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity_max'])) {
|
|
$url .= '&filter_quantity_max=' . $this->request->get['filter_quantity_max'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_status'])) {
|
|
$url .= '&filter_status=' . $this->request->get['filter_status'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_category'])) {
|
|
$url .= '&filter_category=' . $this->request->get['filter_category'];
|
|
if (isset($this->request->get['filter_sub_category'])) {
|
|
$url .= '&filter_sub_category';
|
|
}
|
|
}
|
|
|
|
if (isset($this->request->get['filter_manufacturer_id'])) {
|
|
$url .= '&filter_manufacturer_id=' . $this->request->get['filter_manufacturer_id'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_noindex'])) {
|
|
$url .= '&filter_noindex=' . $this->request->get['filter_noindex'];
|
|
}
|
|
|
|
if (isset($this->request->get['sort'])) {
|
|
$url .= '&sort=' . $this->request->get['sort'];
|
|
}
|
|
|
|
if (isset($this->request->get['order'])) {
|
|
$url .= '&order=' . $this->request->get['order'];
|
|
}
|
|
|
|
$pagination = new Pagination();
|
|
$pagination->total = $product_total;
|
|
$pagination->page = $page;
|
|
$pagination->limit = $this->config->get('config_limit_admin');
|
|
$pagination->url = $this->url->link('catalog/product', 'user_token=' . $this->session->data['user_token'] . $url . '&page={page}', true);
|
|
|
|
$data['pagination'] = $pagination->render();
|
|
|
|
$data['results'] = sprintf($this->language->get('text_pagination'), ($product_total) ? (($page - 1) * $this->config->get('config_limit_admin')) + 1 : 0, ((($page - 1) * $this->config->get('config_limit_admin')) > ($product_total - $this->config->get('config_limit_admin'))) ? $product_total : ((($page - 1) * $this->config->get('config_limit_admin')) + $this->config->get('config_limit_admin')), $product_total, ceil($product_total / $this->config->get('config_limit_admin')));
|
|
|
|
$data['filter_name'] = $filter_name;
|
|
$data['filter_model'] = $filter_model;
|
|
$data['filter_price'] = $filter_price;
|
|
$data['filter_price_min'] = $filter_price_min;
|
|
$data['filter_price_max'] = $filter_price_max;
|
|
$data['filter_quantity'] = $filter_quantity;
|
|
$data['filter_quantity_min'] = $filter_quantity_min;
|
|
$data['filter_quantity_max'] = $filter_quantity_max;
|
|
$data['filter_status'] = $filter_status;
|
|
$data['filter_category_name'] = $filter_category_name;
|
|
$data['filter_category'] = $filter_category;
|
|
$data['filter_sub_category'] = $filter_sub_category;
|
|
$data['filter_manufacturer_name'] = $filter_manufacturer_name;
|
|
$data['filter_manufacturer_id'] = $filter_manufacturer_id;
|
|
$data['filter_noindex'] = $filter_noindex;
|
|
|
|
$data['sort'] = $sort;
|
|
$data['order'] = $order;
|
|
|
|
$data['header'] = $this->load->controller('common/header');
|
|
$data['column_left'] = $this->load->controller('common/column_left');
|
|
$data['footer'] = $this->load->controller('common/footer');
|
|
|
|
$this->response->setOutput($this->load->view('catalog/product_list', $data));
|
|
}
|
|
|
|
protected function getForm() {
|
|
$data['text_form'] = !isset($this->request->get['product_id']) ? $this->language->get('text_add') : $this->language->get('text_edit');
|
|
|
|
if (isset($this->error['warning'])) {
|
|
$data['error_warning'] = $this->error['warning'];
|
|
} else {
|
|
$data['error_warning'] = '';
|
|
}
|
|
|
|
if (isset($this->error['name'])) {
|
|
$data['error_name'] = $this->error['name'];
|
|
} else {
|
|
$data['error_name'] = array();
|
|
}
|
|
|
|
if (isset($this->error['meta_title'])) {
|
|
$data['error_meta_title'] = $this->error['meta_title'];
|
|
} else {
|
|
$data['error_meta_title'] = array();
|
|
}
|
|
|
|
if (isset($this->error['meta_h1'])) {
|
|
$data['error_meta_h1'] = $this->error['meta_h1'];
|
|
} else {
|
|
$data['error_meta_h1'] = array();
|
|
}
|
|
|
|
if (isset($this->error['model'])) {
|
|
$data['error_model'] = $this->error['model'];
|
|
} else {
|
|
$data['error_model'] = '';
|
|
}
|
|
|
|
if (isset($this->error['keyword'])) {
|
|
$data['error_keyword'] = $this->error['keyword'];
|
|
} else {
|
|
$data['error_keyword'] = '';
|
|
}
|
|
|
|
$url = '';
|
|
|
|
if (isset($this->request->get['filter_name'])) {
|
|
$url .= '&filter_name=' . urlencode(html_entity_decode($this->request->get['filter_name'], ENT_QUOTES, 'UTF-8'));
|
|
}
|
|
|
|
if (isset($this->request->get['filter_model'])) {
|
|
$url .= '&filter_model=' . urlencode(html_entity_decode($this->request->get['filter_model'], ENT_QUOTES, 'UTF-8'));
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price'])) {
|
|
$url .= '&filter_price=' . $this->request->get['filter_price'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price_min'])) {
|
|
$url .= '&filter_price_min=' . $this->request->get['filter_price_min'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_price_max'])) {
|
|
$url .= '&filter_price_max=' . $this->request->get['filter_price_max'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity'])) {
|
|
$url .= '&filter_quantity=' . $this->request->get['filter_quantity'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity_min'])) {
|
|
$url .= '&filter_quantity_min=' . $this->request->get['filter_quantity_min'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_quantity_max'])) {
|
|
$url .= '&filter_quantity_max=' . $this->request->get['filter_quantity_max'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_status'])) {
|
|
$url .= '&filter_status=' . $this->request->get['filter_status'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_status'])) {
|
|
$url .= '&filter_status=' . $this->request->get['filter_status'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_category'])) {
|
|
$url .= '&filter_category=' . $this->request->get['filter_category'];
|
|
if (isset($this->request->get['filter_sub_category'])) {
|
|
$url .= '&filter_sub_category';
|
|
}
|
|
}
|
|
|
|
if (isset($this->request->get['filter_manufacturer_id'])) {
|
|
$url .= '&filter_manufacturer_id=' . $this->request->get['filter_manufacturer_id'];
|
|
}
|
|
|
|
if (isset($this->request->get['filter_noindex'])) {
|
|
$url .= '&filter_noindex=' . $this->request->get['filter_noindex'];
|
|
}
|
|
|
|
if (isset($this->request->get['sort'])) {
|
|
$url .= '&sort=' . $this->request->get['sort'];
|
|
}
|
|
|
|
if (isset($this->request->get['order'])) {
|
|
$url .= '&order=' . $this->request->get['order'];
|
|
}
|
|
|
|
if (isset($this->request->get['page'])) {
|
|
$url .= '&page=' . $this->request->get['page'];
|
|
}
|
|
|
|
$data['breadcrumbs'] = array();
|
|
|
|
$data['breadcrumbs'][] = array(
|
|
'text' => $this->language->get('text_home'),
|
|
'href' => $this->url->link('common/dashboard', 'user_token=' . $this->session->data['user_token'], true)
|
|
);
|
|
|
|
$data['breadcrumbs'][] = array(
|
|
'text' => $this->language->get('heading_title'),
|
|
'href' => $this->url->link('catalog/product', 'user_token=' . $this->session->data['user_token'] . $url, true)
|
|
);
|
|
|
|
if (!isset($this->request->get['product_id'])) {
|
|
$data['action'] = $this->url->link('catalog/product/add', 'user_token=' . $this->session->data['user_token'] . $url, true);
|
|
} else {
|
|
$data['action'] = $this->url->link('catalog/product/edit', 'user_token=' . $this->session->data['user_token'] . '&product_id=' . $this->request->get['product_id'] . $url, true);
|
|
}
|
|
|
|
$data['cancel'] = $this->url->link('catalog/product', 'user_token=' . $this->session->data['user_token'] . $url, true);
|
|
|
|
if (isset($this->request->get['product_id']) && ($this->request->server['REQUEST_METHOD'] != 'POST')) {
|
|
$product_info = $this->model_catalog_product->getProduct($this->request->get['product_id']);
|
|
}
|
|
|
|
$data['user_token'] = $this->session->data['user_token'];
|
|
|
|
$this->load->model('localisation/language');
|
|
|
|
$data['languages'] = $this->model_localisation_language->getLanguages();
|
|
|
|
if (isset($this->request->post['product_description'])) {
|
|
$data['product_description'] = $this->request->post['product_description'];
|
|
} elseif (isset($this->request->get['product_id'])) {
|
|
$data['product_description'] = $this->model_catalog_product->getProductDescriptions($this->request->get['product_id']);
|
|
} else {
|
|
$data['product_description'] = array();
|
|
}
|
|
|
|
$language_id = $this->config->get('config_language_id');
|
|
if (isset($data['product_description'][$language_id]['name'])) {
|
|
$data['heading_title'] = $data['product_description'][$language_id]['name'];
|
|
}
|
|
|
|
if (isset($this->request->post['model'])) {
|
|
$data['model'] = $this->request->post['model'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['model'] = $product_info['model'];
|
|
} else {
|
|
$data['model'] = '';
|
|
}
|
|
|
|
if (isset($this->request->post['sku'])) {
|
|
$data['sku'] = $this->request->post['sku'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['sku'] = $product_info['sku'];
|
|
} else {
|
|
$data['sku'] = '';
|
|
}
|
|
|
|
if (isset($this->request->post['upc'])) {
|
|
$data['upc'] = $this->request->post['upc'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['upc'] = $product_info['upc'];
|
|
} else {
|
|
$data['upc'] = '';
|
|
}
|
|
|
|
if (isset($this->request->post['ean'])) {
|
|
$data['ean'] = $this->request->post['ean'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['ean'] = $product_info['ean'];
|
|
} else {
|
|
$data['ean'] = '';
|
|
}
|
|
|
|
if (isset($this->request->post['jan'])) {
|
|
$data['jan'] = $this->request->post['jan'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['jan'] = $product_info['jan'];
|
|
} else {
|
|
$data['jan'] = '';
|
|
}
|
|
|
|
if (isset($this->request->post['isbn'])) {
|
|
$data['isbn'] = $this->request->post['isbn'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['isbn'] = $product_info['isbn'];
|
|
} else {
|
|
$data['isbn'] = '';
|
|
}
|
|
|
|
if (isset($this->request->post['mpn'])) {
|
|
$data['mpn'] = $this->request->post['mpn'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['mpn'] = $product_info['mpn'];
|
|
} else {
|
|
$data['mpn'] = '';
|
|
}
|
|
|
|
if (isset($this->request->post['location'])) {
|
|
$data['location'] = $this->request->post['location'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['location'] = $product_info['location'];
|
|
} else {
|
|
$data['location'] = '';
|
|
}
|
|
|
|
$this->load->model('setting/store');
|
|
|
|
$data['stores'] = array();
|
|
|
|
$data['stores'][] = array(
|
|
'store_id' => 0,
|
|
'name' => $this->language->get('text_default')
|
|
);
|
|
|
|
$stores = $this->model_setting_store->getStores();
|
|
|
|
foreach ($stores as $store) {
|
|
$data['stores'][] = array(
|
|
'store_id' => $store['store_id'],
|
|
'name' => $store['name']
|
|
);
|
|
}
|
|
|
|
if (isset($this->request->post['product_store'])) {
|
|
$data['product_store'] = $this->request->post['product_store'];
|
|
} elseif (isset($this->request->get['product_id'])) {
|
|
$data['product_store'] = $this->model_catalog_product->getProductStores($this->request->get['product_id']);
|
|
} else {
|
|
$data['product_store'] = array(0);
|
|
}
|
|
|
|
if (isset($this->request->post['shipping'])) {
|
|
$data['shipping'] = $this->request->post['shipping'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['shipping'] = $product_info['shipping'];
|
|
} else {
|
|
$data['shipping'] = 1;
|
|
}
|
|
|
|
if (isset($this->request->post['price_2'])) {
|
|
$data['price_2'] = $this->request->post['price_2'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['price_2'] = $product_info['price_2'];
|
|
} else {
|
|
$data['price_2'] = '';
|
|
}
|
|
|
|
if (isset($this->request->post['price_3'])) {
|
|
$data['price_3'] = $this->request->post['price_3'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['price_3'] = $product_info['price_3'];
|
|
} else {
|
|
$data['price_3'] = '';
|
|
}
|
|
if (isset($this->request->post['price'])) {
|
|
$data['price'] = $this->request->post['price'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['price'] = $product_info['price'];
|
|
} else {
|
|
$data['price'] = '';
|
|
}
|
|
|
|
$this->load->model('catalog/recurring');
|
|
|
|
$data['recurrings'] = $this->model_catalog_recurring->getRecurrings();
|
|
|
|
if (isset($this->request->post['product_recurrings'])) {
|
|
$data['product_recurrings'] = $this->request->post['product_recurrings'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['product_recurrings'] = $this->model_catalog_product->getRecurrings($product_info['product_id']);
|
|
} else {
|
|
$data['product_recurrings'] = array();
|
|
}
|
|
|
|
$this->load->model('localisation/tax_class');
|
|
|
|
$data['tax_classes'] = $this->model_localisation_tax_class->getTaxClasses();
|
|
|
|
if (isset($this->request->post['tax_class_id'])) {
|
|
$data['tax_class_id'] = $this->request->post['tax_class_id'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['tax_class_id'] = $product_info['tax_class_id'];
|
|
} else {
|
|
$data['tax_class_id'] = 0;
|
|
}
|
|
|
|
if (isset($this->request->post['date_available'])) {
|
|
$data['date_available'] = $this->request->post['date_available'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['date_available'] = ($product_info['date_available'] != '0000-00-00') ? $product_info['date_available'] : '';
|
|
} else {
|
|
$data['date_available'] = date('Y-m-d');
|
|
}
|
|
|
|
if (isset($this->request->post['quantity'])) {
|
|
$data['quantity'] = $this->request->post['quantity'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['quantity'] = $product_info['quantity'];
|
|
} else {
|
|
$data['quantity'] = 1;
|
|
}
|
|
|
|
if (isset($this->request->post['minimum'])) {
|
|
$data['minimum'] = $this->request->post['minimum'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['minimum'] = $product_info['minimum'];
|
|
} else {
|
|
$data['minimum'] = 1;
|
|
}
|
|
|
|
if (isset($this->request->post['subtract'])) {
|
|
$data['subtract'] = $this->request->post['subtract'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['subtract'] = $product_info['subtract'];
|
|
} else {
|
|
$data['subtract'] = 1;
|
|
}
|
|
|
|
if (isset($this->request->post['sort_order'])) {
|
|
$data['sort_order'] = $this->request->post['sort_order'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['sort_order'] = $product_info['sort_order'];
|
|
} else {
|
|
$data['sort_order'] = 1;
|
|
}
|
|
|
|
$this->load->model('localisation/stock_status');
|
|
|
|
$data['stock_statuses'] = $this->model_localisation_stock_status->getStockStatuses();
|
|
|
|
if (isset($this->request->post['stock_status_id'])) {
|
|
$data['stock_status_id'] = $this->request->post['stock_status_id'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['stock_status_id'] = $product_info['stock_status_id'];
|
|
} else {
|
|
$data['stock_status_id'] = 0;
|
|
}
|
|
|
|
if (isset($this->request->post['status'])) {
|
|
$data['status'] = $this->request->post['status'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['status'] = $product_info['status'];
|
|
} else {
|
|
$data['status'] = true;
|
|
}
|
|
|
|
if (isset($this->request->post['noindex'])) {
|
|
$data['noindex'] = $this->request->post['noindex'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['noindex'] = $product_info['noindex'];
|
|
} else {
|
|
$data['noindex'] = 1;
|
|
}
|
|
|
|
if (isset($this->request->post['weight'])) {
|
|
$data['weight'] = $this->request->post['weight'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['weight'] = $product_info['weight'];
|
|
} else {
|
|
$data['weight'] = '';
|
|
}
|
|
|
|
$this->load->model('localisation/weight_class');
|
|
|
|
$data['weight_classes'] = $this->model_localisation_weight_class->getWeightClasses();
|
|
|
|
if (isset($this->request->post['weight_class_id'])) {
|
|
$data['weight_class_id'] = $this->request->post['weight_class_id'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['weight_class_id'] = $product_info['weight_class_id'];
|
|
} else {
|
|
$data['weight_class_id'] = $this->config->get('config_weight_class_id');
|
|
}
|
|
|
|
if (isset($this->request->post['length'])) {
|
|
$data['length'] = $this->request->post['length'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['length'] = $product_info['length'];
|
|
} else {
|
|
$data['length'] = '';
|
|
}
|
|
|
|
if (isset($this->request->post['width'])) {
|
|
$data['width'] = $this->request->post['width'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['width'] = $product_info['width'];
|
|
} else {
|
|
$data['width'] = '';
|
|
}
|
|
|
|
if (isset($this->request->post['height'])) {
|
|
$data['height'] = $this->request->post['height'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['height'] = $product_info['height'];
|
|
} else {
|
|
$data['height'] = '';
|
|
}
|
|
|
|
$this->load->model('localisation/length_class');
|
|
|
|
$data['length_classes'] = $this->model_localisation_length_class->getLengthClasses();
|
|
|
|
if (isset($this->request->post['length_class_id'])) {
|
|
$data['length_class_id'] = $this->request->post['length_class_id'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['length_class_id'] = $product_info['length_class_id'];
|
|
} else {
|
|
$data['length_class_id'] = $this->config->get('config_length_class_id');
|
|
}
|
|
|
|
$this->load->model('catalog/manufacturer');
|
|
|
|
if (isset($this->request->post['manufacturer_id'])) {
|
|
$data['manufacturer_id'] = $this->request->post['manufacturer_id'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['manufacturer_id'] = $product_info['manufacturer_id'];
|
|
} else {
|
|
$data['manufacturer_id'] = 0;
|
|
}
|
|
|
|
if (isset($this->request->post['manufacturer'])) {
|
|
$data['manufacturer'] = $this->request->post['manufacturer'];
|
|
} elseif (!empty($product_info)) {
|
|
$manufacturer_info = $this->model_catalog_manufacturer->getManufacturer($product_info['manufacturer_id']);
|
|
|
|
if ($manufacturer_info) {
|
|
$data['manufacturer'] = $manufacturer_info['name'];
|
|
} else {
|
|
$data['manufacturer'] = '';
|
|
}
|
|
} else {
|
|
$data['manufacturer'] = '';
|
|
}
|
|
|
|
// Categories
|
|
$this->load->model('catalog/category');
|
|
|
|
$data['categories'] = $this->model_catalog_category->getAllCategories();
|
|
|
|
if (isset($this->request->post['main_category_id'])) {
|
|
$data['main_category_id'] = $this->request->post['main_category_id'];
|
|
} elseif (isset($product_info)) {
|
|
$data['main_category_id'] = $this->model_catalog_product->getProductMainCategoryId($this->request->get['product_id']);
|
|
} else {
|
|
$data['main_category_id'] = 0;
|
|
}
|
|
|
|
if (isset($this->request->post['product_category'])) {
|
|
$categories = $this->request->post['product_category'];
|
|
} elseif (isset($this->request->get['product_id'])) {
|
|
$categories = $this->model_catalog_product->getProductCategories($this->request->get['product_id']);
|
|
} else {
|
|
$categories = array();
|
|
}
|
|
|
|
$data['product_categories'] = array();
|
|
|
|
foreach ($categories as $category_id) {
|
|
$category_info = $this->model_catalog_category->getCategory($category_id);
|
|
|
|
if ($category_info) {
|
|
$data['product_categories'][] = array(
|
|
'category_id' => $category_info['category_id'],
|
|
'name' => ($category_info['path']) ? $category_info['path'] . ' > ' . $category_info['name'] : $category_info['name']
|
|
);
|
|
}
|
|
}
|
|
|
|
// Filters
|
|
$this->load->model('catalog/filter');
|
|
|
|
if (isset($this->request->post['product_filter'])) {
|
|
$filters = $this->request->post['product_filter'];
|
|
} elseif (isset($this->request->get['product_id'])) {
|
|
$filters = $this->model_catalog_product->getProductFilters($this->request->get['product_id']);
|
|
} else {
|
|
$filters = array();
|
|
}
|
|
|
|
$data['product_filters'] = array();
|
|
|
|
foreach ($filters as $filter_id) {
|
|
$filter_info = $this->model_catalog_filter->getFilter($filter_id);
|
|
|
|
if ($filter_info) {
|
|
$data['product_filters'][] = array(
|
|
'filter_id' => $filter_info['filter_id'],
|
|
'name' => $filter_info['group'] . ' > ' . $filter_info['name']
|
|
);
|
|
}
|
|
}
|
|
|
|
// Attributes
|
|
$this->load->model('catalog/attribute');
|
|
$this->load->model('catalog/attribute_group');
|
|
|
|
$attribute_groups = $this->model_catalog_attribute_group->getAttributeGroups();
|
|
|
|
$saved_attributes = array();
|
|
|
|
if (isset($this->request->post['product_attribute'])) {
|
|
$saved_attributes_raw = $this->request->post['product_attribute'];
|
|
|
|
foreach ($saved_attributes_raw as $attr_id => $attr_data) {
|
|
if (!empty($attr_data['product_attribute_description'])) {
|
|
$saved_attributes[] = array(
|
|
'attribute_id' => $attr_id,
|
|
'product_attribute_description' => $attr_data['product_attribute_description']
|
|
);
|
|
}
|
|
}
|
|
} elseif (isset($this->request->get['product_id'])) {
|
|
$saved_attributes = $this->model_catalog_product->getProductAttributes($this->request->get['product_id']);
|
|
}
|
|
|
|
$data['attribute_groups'] = array();
|
|
|
|
foreach ($attribute_groups as $attribute_group) {
|
|
$attributes = $this->model_catalog_attribute->getAttributes(array(
|
|
'filter_attribute_group_id' => $attribute_group['attribute_group_id'],
|
|
'sort' => 'a.sort_order',
|
|
'order' => 'ASC'
|
|
));
|
|
|
|
if (!$attributes) {
|
|
continue;
|
|
}
|
|
|
|
$group_attributes = array();
|
|
|
|
foreach ($attributes as $attribute) {
|
|
$text_data = array();
|
|
|
|
foreach ($saved_attributes as $saved) {
|
|
if ($saved['attribute_id'] == $attribute['attribute_id']) {
|
|
$text_data = $saved['product_attribute_description'];
|
|
break;
|
|
}
|
|
}
|
|
|
|
$group_attributes[] = array(
|
|
'attribute_id' => $attribute['attribute_id'],
|
|
'name' => $attribute['name'],
|
|
'text' => $text_data
|
|
);
|
|
}
|
|
|
|
$data['attribute_groups'][] = array(
|
|
'name' => $attribute_group['name'],
|
|
'attribute' => $group_attributes
|
|
);
|
|
}
|
|
|
|
// Options
|
|
$this->load->model('catalog/option');
|
|
|
|
if (isset($this->request->post['product_option'])) {
|
|
$product_options = $this->request->post['product_option'];
|
|
} elseif (isset($this->request->get['product_id'])) {
|
|
$product_options = $this->model_catalog_product->getProductOptions($this->request->get['product_id']);
|
|
} else {
|
|
$product_options = array();
|
|
}
|
|
|
|
$data['product_options'] = array();
|
|
|
|
foreach ($product_options as $product_option) {
|
|
$product_option_value_data = array();
|
|
|
|
if (isset($product_option['product_option_value'])) {
|
|
foreach ($product_option['product_option_value'] as $product_option_value) {
|
|
$product_option_value_data[] = array(
|
|
'product_option_value_id' => $product_option_value['product_option_value_id'],
|
|
'option_value_id' => $product_option_value['option_value_id'],
|
|
'quantity' => $product_option_value['quantity'],
|
|
'subtract' => $product_option_value['subtract'],
|
|
'price' => $product_option_value['price'],
|
|
'price_prefix' => $product_option_value['price_prefix'],
|
|
'points' => $product_option_value['points'],
|
|
'points_prefix' => $product_option_value['points_prefix'],
|
|
'weight' => $product_option_value['weight'],
|
|
'weight_prefix' => $product_option_value['weight_prefix']
|
|
);
|
|
}
|
|
}
|
|
|
|
$data['product_options'][] = array(
|
|
'product_option_id' => $product_option['product_option_id'],
|
|
'product_option_value' => $product_option_value_data,
|
|
'option_id' => $product_option['option_id'],
|
|
'name' => $product_option['name'],
|
|
'type' => $product_option['type'],
|
|
'value' => isset($product_option['value']) ? $product_option['value'] : '',
|
|
'required' => $product_option['required']
|
|
);
|
|
}
|
|
|
|
$data['option_values'] = array();
|
|
|
|
foreach ($data['product_options'] as $product_option) {
|
|
if ($product_option['type'] == 'select' || $product_option['type'] == 'radio' || $product_option['type'] == 'checkbox' || $product_option['type'] == 'image') {
|
|
if (!isset($data['option_values'][$product_option['option_id']])) {
|
|
$data['option_values'][$product_option['option_id']] = $this->model_catalog_option->getOptionValues($product_option['option_id']);
|
|
}
|
|
}
|
|
}
|
|
|
|
$this->load->model('customer/customer_group');
|
|
|
|
$data['customer_groups'] = $this->model_customer_customer_group->getCustomerGroups();
|
|
|
|
if (isset($this->request->post['product_discount'])) {
|
|
$product_discounts = $this->request->post['product_discount'];
|
|
} elseif (isset($this->request->get['product_id'])) {
|
|
$product_discounts = $this->model_catalog_product->getProductDiscounts($this->request->get['product_id']);
|
|
} else {
|
|
$product_discounts = array();
|
|
}
|
|
|
|
$data['product_discounts'] = array();
|
|
|
|
foreach ($product_discounts as $product_discount) {
|
|
$data['product_discounts'][] = array(
|
|
'customer_group_id' => $product_discount['customer_group_id'],
|
|
'quantity' => $product_discount['quantity'],
|
|
'priority' => $product_discount['priority'],
|
|
'price' => $product_discount['price'],
|
|
'date_start' => ($product_discount['date_start'] != '0000-00-00') ? $product_discount['date_start'] : '',
|
|
'date_end' => ($product_discount['date_end'] != '0000-00-00') ? $product_discount['date_end'] : ''
|
|
);
|
|
}
|
|
|
|
if (isset($this->request->post['product_special'])) {
|
|
$product_specials = $this->request->post['product_special'];
|
|
} elseif (isset($this->request->get['product_id'])) {
|
|
$product_specials = $this->model_catalog_product->getProductSpecials($this->request->get['product_id']);
|
|
} else {
|
|
$product_specials = array();
|
|
}
|
|
|
|
$data['product_specials'] = array();
|
|
|
|
foreach ($product_specials as $product_special) {
|
|
$data['product_specials'][] = array(
|
|
'customer_group_id' => $product_special['customer_group_id'],
|
|
'priority' => $product_special['priority'],
|
|
'price' => $product_special['price'],
|
|
'date_start' => ($product_special['date_start'] != '0000-00-00') ? $product_special['date_start'] : '',
|
|
'date_end' => ($product_special['date_end'] != '0000-00-00') ? $product_special['date_end'] : ''
|
|
);
|
|
}
|
|
|
|
// Image
|
|
if (isset($this->request->post['image'])) {
|
|
$data['image'] = $this->request->post['image'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['image'] = $product_info['image'];
|
|
} else {
|
|
$data['image'] = '';
|
|
}
|
|
|
|
$this->load->model('tool/image');
|
|
|
|
if (isset($this->request->post['image']) && is_file(DIR_IMAGE . $this->request->post['image'])) {
|
|
$data['thumb'] = $this->model_tool_image->resize($this->request->post['image'], 100, 100);
|
|
} elseif (!empty($product_info) && is_file(DIR_IMAGE . $product_info['image'])) {
|
|
$data['thumb'] = $this->model_tool_image->resize($product_info['image'], 100, 100);
|
|
} else {
|
|
$data['thumb'] = $this->model_tool_image->resize('no_image.png', 100, 100);
|
|
}
|
|
|
|
$data['placeholder'] = $this->model_tool_image->resize('no_image.png', 100, 100);
|
|
|
|
// Images
|
|
if (isset($this->request->post['product_image'])) {
|
|
$product_images = $this->request->post['product_image'];
|
|
} elseif (isset($this->request->get['product_id'])) {
|
|
$product_images = $this->model_catalog_product->getProductImages($this->request->get['product_id']);
|
|
} else {
|
|
$product_images = array();
|
|
}
|
|
|
|
$data['product_images'] = array();
|
|
|
|
foreach ($product_images as $product_image) {
|
|
if (is_file(DIR_IMAGE . $product_image['image'])) {
|
|
$image = $product_image['image'];
|
|
$thumb = $product_image['image'];
|
|
} else {
|
|
$image = '';
|
|
$thumb = 'no_image.png';
|
|
}
|
|
|
|
$data['product_images'][] = array(
|
|
'image' => $image,
|
|
'thumb' => $this->model_tool_image->resize($thumb, 100, 100),
|
|
'sort_order' => $product_image['sort_order']
|
|
);
|
|
}
|
|
|
|
// Downloads
|
|
$this->load->model('catalog/download');
|
|
|
|
if (isset($this->request->post['product_download'])) {
|
|
$product_downloads = $this->request->post['product_download'];
|
|
} elseif (isset($this->request->get['product_id'])) {
|
|
$product_downloads = $this->model_catalog_product->getProductDownloads($this->request->get['product_id']);
|
|
} else {
|
|
$product_downloads = array();
|
|
}
|
|
|
|
$data['product_downloads'] = array();
|
|
|
|
foreach ($product_downloads as $download_id) {
|
|
$download_info = $this->model_catalog_download->getDownload($download_id);
|
|
|
|
if ($download_info) {
|
|
$data['product_downloads'][] = array(
|
|
'download_id' => $download_info['download_id'],
|
|
'name' => $download_info['name']
|
|
);
|
|
}
|
|
}
|
|
|
|
if (isset($this->request->post['product_related'])) {
|
|
$products = $this->request->post['product_related'];
|
|
} elseif (isset($this->request->get['product_id'])) {
|
|
$products = $this->model_catalog_product->getProductRelated($this->request->get['product_id']);
|
|
} else {
|
|
$products = array();
|
|
}
|
|
|
|
$data['product_relateds'] = array();
|
|
|
|
foreach ($products as $product_id) {
|
|
$related_info = $this->model_catalog_product->getProduct($product_id);
|
|
|
|
if ($related_info) {
|
|
$data['product_relateds'][] = array(
|
|
'product_id' => $related_info['product_id'],
|
|
'name' => $related_info['name']
|
|
);
|
|
}
|
|
}
|
|
|
|
if (isset($this->request->post['product_related_article'])) {
|
|
$articles = $this->request->post['product_related_article'];
|
|
} elseif (isset($product_info)) {
|
|
$articles = $this->model_catalog_product->getArticleRelated($this->request->get['product_id']);
|
|
} else {
|
|
$articles = array();
|
|
}
|
|
|
|
$data['product_related_article'] = array();
|
|
$this->load->model('blog/article');
|
|
|
|
foreach ($articles as $article_id) {
|
|
$article_info = $this->model_blog_article->getArticle($article_id);
|
|
|
|
if ($article_info) {
|
|
$data['product_related_article'][] = array(
|
|
'article_id' => $article_info['article_id'],
|
|
'name' => $article_info['name']
|
|
);
|
|
}
|
|
}
|
|
|
|
if (isset($this->request->post['points'])) {
|
|
$data['points'] = $this->request->post['points'];
|
|
} elseif (!empty($product_info)) {
|
|
$data['points'] = $product_info['points'];
|
|
} else {
|
|
$data['points'] = '';
|
|
}
|
|
|
|
if (isset($this->request->post['product_reward'])) {
|
|
$data['product_reward'] = $this->request->post['product_reward'];
|
|
} elseif (isset($this->request->get['product_id'])) {
|
|
$data['product_reward'] = $this->model_catalog_product->getProductRewards($this->request->get['product_id']);
|
|
} else {
|
|
$data['product_reward'] = array();
|
|
}
|
|
|
|
if (isset($this->request->post['product_seo_url'])) {
|
|
$data['product_seo_url'] = $this->request->post['product_seo_url'];
|
|
} elseif (isset($this->request->get['product_id'])) {
|
|
$data['product_seo_url'] = $this->model_catalog_product->getProductSeoUrls($this->request->get['product_id']);
|
|
} else {
|
|
$data['product_seo_url'] = array();
|
|
}
|
|
|
|
if (isset($this->request->post['product_layout'])) {
|
|
$data['product_layout'] = $this->request->post['product_layout'];
|
|
} elseif (isset($this->request->get['product_id'])) {
|
|
$data['product_layout'] = $this->model_catalog_product->getProductLayouts($this->request->get['product_id']);
|
|
} else {
|
|
$data['product_layout'] = array();
|
|
}
|
|
|
|
$this->load->model('design/layout');
|
|
|
|
$data['layouts'] = $this->model_design_layout->getLayouts();
|
|
|
|
$data['header'] = $this->load->controller('common/header');
|
|
$data['column_left'] = $this->load->controller('common/column_left');
|
|
$data['footer'] = $this->load->controller('common/footer');
|
|
|
|
$this->response->setOutput($this->load->view('catalog/product_form', $data));
|
|
}
|
|
|
|
protected function validateForm() {
|
|
if (!$this->user->hasPermission('modify', 'catalog/product')) {
|
|
$this->error['warning'] = $this->language->get('error_permission');
|
|
}
|
|
|
|
foreach ($this->request->post['product_description'] as $language_id => $value) {
|
|
if ((utf8_strlen($value['name']) < 1) || (utf8_strlen($value['name']) > 255)) {
|
|
$this->error['name'][$language_id] = $this->language->get('error_name');
|
|
}
|
|
|
|
if ((utf8_strlen($value['meta_title']) < 0) || (utf8_strlen($value['meta_title']) > 255)) {
|
|
$this->error['meta_title'][$language_id] = $this->language->get('error_meta_title');
|
|
}
|
|
|
|
if ((utf8_strlen($value['meta_h1']) < 0) || (utf8_strlen($value['meta_h1']) > 255)) {
|
|
$this->error['meta_h1'][$language_id] = $this->language->get('error_meta_h1');
|
|
}
|
|
}
|
|
|
|
if ((utf8_strlen($this->request->post['model']) < 1) || (utf8_strlen($this->request->post['model']) > 64)) {
|
|
$this->error['model'] = $this->language->get('error_model');
|
|
}
|
|
|
|
if (isset($this->request->post['product_seo_url']) && is_array($this->request->post['product_seo_url'])) {
|
|
foreach ($this->request->post['product_seo_url'] as $store_id => &$languages) {
|
|
foreach ($languages as $language_id => &$keyword) {
|
|
if (!empty($keyword)) {
|
|
$keyword = translit($keyword);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (isset($this->request->post['product_description'])) {
|
|
foreach ($this->request->post['product_description'] as $language_id => $value) {
|
|
if (!empty($value['name'])) {
|
|
if (!isset($this->request->post['product_seo_url'][0][$language_id]) || trim($this->request->post['product_seo_url'][0][$language_id]) === '') {
|
|
$this->request->post['product_seo_url'][0][$language_id] = translit($value['name']);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($this->request->post['product_seo_url']) {
|
|
$this->load->model('design/seo_url');
|
|
|
|
foreach ($this->request->post['product_seo_url'] as $store_id => $language) {
|
|
foreach ($language as $language_id => $keyword) {
|
|
if (!empty($keyword)) {
|
|
if (count(array_keys($language, $keyword)) > 1) {
|
|
$this->error['keyword'][$store_id][$language_id] = $this->language->get('error_unique');
|
|
}
|
|
|
|
$seo_urls = $this->model_design_seo_url->getSeoUrlsByKeyword($keyword);
|
|
|
|
foreach ($seo_urls as $seo_url) {
|
|
if (($seo_url['store_id'] == $store_id) && (!isset($this->request->get['product_id']) || (($seo_url['query'] != 'product_id=' . $this->request->get['product_id'])))) {
|
|
$this->error['keyword'][$store_id][$language_id] = $this->language->get('error_keyword');
|
|
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($this->error && !isset($this->error['warning'])) {
|
|
$this->error['warning'] = $this->language->get('error_warning');
|
|
}
|
|
|
|
return !$this->error;
|
|
}
|
|
|
|
public function enable() {
|
|
$this->load->language('catalog/product');
|
|
$this->document->setTitle($this->language->get('heading_title'));
|
|
$this->load->model('catalog/product');
|
|
if (isset($this->request->post['selected']) && $this->validateEnable()) {
|
|
foreach ($this->request->post['selected'] as $product_id) {
|
|
$this->model_catalog_product->editProductStatus($product_id, 1);
|
|
}
|
|
$this->session->data['success'] = $this->language->get('text_success');
|
|
$url = '';
|
|
if (isset($this->request->get['page'])) {
|
|
$url .= '&page=' . $this->request->get['page'];
|
|
}
|
|
if (isset($this->request->get['sort'])) {
|
|
$url .= '&sort=' . $this->request->get['sort'];
|
|
}
|
|
if (isset($this->request->get['order'])) {
|
|
$url .= '&order=' . $this->request->get['order'];
|
|
}
|
|
$this->response->redirect($this->url->link('catalog/product', 'user_token=' . $this->session->data['user_token'] . $url, true));
|
|
}
|
|
$this->getList();
|
|
}
|
|
public function disable() {
|
|
$this->load->language('catalog/product');
|
|
$this->document->setTitle($this->language->get('heading_title'));
|
|
$this->load->model('catalog/product');
|
|
if (isset($this->request->post['selected']) && $this->validateDisable()) {
|
|
foreach ($this->request->post['selected'] as $product_id) {
|
|
$this->model_catalog_product->editProductStatus($product_id, 0);
|
|
}
|
|
$this->session->data['success'] = $this->language->get('text_success');
|
|
$url = '';
|
|
if (isset($this->request->get['page'])) {
|
|
$url .= '&page=' . $this->request->get['page'];
|
|
}
|
|
if (isset($this->request->get['sort'])) {
|
|
$url .= '&sort=' . $this->request->get['sort'];
|
|
}
|
|
if (isset($this->request->get['order'])) {
|
|
$url .= '&order=' . $this->request->get['order'];
|
|
}
|
|
$this->response->redirect($this->url->link('catalog/product', 'user_token=' . $this->session->data['user_token'] . $url, true));
|
|
}
|
|
$this->getList();
|
|
}
|
|
|
|
protected function validateEnable() {
|
|
if (!$this->user->hasPermission('modify', 'catalog/product')) {
|
|
$this->error['warning'] = $this->language->get('error_permission');
|
|
}
|
|
|
|
return !$this->error;
|
|
}
|
|
|
|
protected function validateDisable() {
|
|
if (!$this->user->hasPermission('modify', 'catalog/product')) {
|
|
$this->error['warning'] = $this->language->get('error_permission');
|
|
}
|
|
|
|
return !$this->error;
|
|
}
|
|
|
|
protected function validateDelete() {
|
|
if (!$this->user->hasPermission('modify', 'catalog/product')) {
|
|
$this->error['warning'] = $this->language->get('error_permission');
|
|
}
|
|
|
|
return !$this->error;
|
|
}
|
|
|
|
protected function validateCopy() {
|
|
if (!$this->user->hasPermission('modify', 'catalog/product')) {
|
|
$this->error['warning'] = $this->language->get('error_permission');
|
|
}
|
|
|
|
return !$this->error;
|
|
}
|
|
|
|
public function autocomplete() {
|
|
$json = array();
|
|
|
|
if (isset($this->request->get['filter_name']) || isset($this->request->get['filter_model'])) {
|
|
$this->load->model('catalog/product');
|
|
$this->load->model('catalog/option');
|
|
|
|
if (isset($this->request->get['filter_name'])) {
|
|
$filter_name = $this->request->get['filter_name'];
|
|
} else {
|
|
$filter_name = '';
|
|
}
|
|
|
|
if (isset($this->request->get['filter_model'])) {
|
|
$filter_model = $this->request->get['filter_model'];
|
|
} else {
|
|
$filter_model = '';
|
|
}
|
|
|
|
if (isset($this->request->get['limit'])) {
|
|
$limit = (int)$this->request->get['limit'];
|
|
} else {
|
|
$limit = $this->config->get('config_limit_autocomplete');
|
|
}
|
|
|
|
$filter_data = array(
|
|
'filter_name' => $filter_name,
|
|
'filter_model' => $filter_model,
|
|
'start' => 0,
|
|
'limit' => $limit
|
|
);
|
|
|
|
$results = $this->model_catalog_product->getProducts($filter_data);
|
|
|
|
foreach ($results as $result) {
|
|
$option_data = array();
|
|
|
|
$product_options = $this->model_catalog_product->getProductOptions($result['product_id']);
|
|
|
|
foreach ($product_options as $product_option) {
|
|
$option_info = $this->model_catalog_option->getOption($product_option['option_id']);
|
|
|
|
if ($option_info) {
|
|
$product_option_value_data = array();
|
|
|
|
foreach ($product_option['product_option_value'] as $product_option_value) {
|
|
$option_value_info = $this->model_catalog_option->getOptionValue($product_option_value['option_value_id']);
|
|
|
|
if ($option_value_info) {
|
|
$product_option_value_data[] = array(
|
|
'product_option_value_id' => $product_option_value['product_option_value_id'],
|
|
'option_value_id' => $product_option_value['option_value_id'],
|
|
'name' => $option_value_info['name'],
|
|
'price' => (float)$product_option_value['price'] ? $this->currency->format($product_option_value['price'], $this->config->get('config_currency')) : false,
|
|
'price_prefix' => $product_option_value['price_prefix']
|
|
);
|
|
}
|
|
}
|
|
|
|
$option_data[] = array(
|
|
'product_option_id' => $product_option['product_option_id'],
|
|
'product_option_value' => $product_option_value_data,
|
|
'option_id' => $product_option['option_id'],
|
|
'name' => $option_info['name'],
|
|
'type' => $option_info['type'],
|
|
'value' => $product_option['value'],
|
|
'required' => $product_option['required']
|
|
);
|
|
}
|
|
}
|
|
|
|
$json[] = array(
|
|
'product_id' => $result['product_id'],
|
|
'name' => strip_tags(html_entity_decode($result['name'], ENT_QUOTES, 'UTF-8')),
|
|
'model' => $result['model'],
|
|
'option' => $option_data,
|
|
'price' => $result['price']
|
|
);
|
|
}
|
|
}
|
|
|
|
$this->response->addHeader('Content-Type: application/json');
|
|
$this->response->setOutput(json_encode($json));
|
|
}
|
|
}
|