OpenCart 🇺🇦

Схема

public mixed faqDismiss ( )

Аргументы

Аргумент Возможный тип Описание
У метода нет аргументов

Описание

Метод пока еще не документирован.

Исходный код

ensionOpenbay extends Controller {
ublic function index() {
$this->load->model('openbay/openbay');
$this->load->model('setting/extension');
$this->data = array_merge($this->data, $this->load->language('extension/openbay'));

$this->document->setTitle($this->language->get('lang_heading_title'));
$this->document->addStyle('view/stylesheet/openbay.css');
$this->document->addScript('view/javascript/openbay/faq.js');

$this->data['breadcrumbs'] = array();

$this->data['breadcrumbs'][] = array(
	'text' => $this->language->get('text_home'),
	'href' => $this->url->link('common/home', 'token=' . $this->session->data['token'], 'SSL'),
	'separator' => false
);

$this->data['breadcrumbs'][] = array(
	'text' => $this->language->get('lang_heading_title'),
	'href' => $this->url->link('extension/openbay', 'token=' . $this->session->data['token'], 'SSL'),
	'separator' => ' :: '
);

$this->data['mcrypt']           = $this->model_openbay_openbay->checkMcrypt();
$this->data['mbstring']         = $this->model_openbay_openbay->checkMbstings();
$this->data['ftpenabled']       = $this->model_openbay_openbay->checkFtpenabled();
$this->data['manage_link']  = $this->url->link('extension/openbay/manage', 'token=' . $this->session->data['token'], 'SSL');

$this->data['success']      = '';
if (isset($this->session->data['success'])) {
	$this->data['success'] = $this->session->data['success'];
	unset($this->session->data['success']);
}

$this->data['error']        = '';
if (isset($this->session->data['error'])) {
	$this->data['error'] = $this->session->data['error'];
	unset($this->session->data['error']);
}

$extensions = $this->model_setting_extension->getInstalled('openbay');

foreach ($extensions as $key => $value) {
	if (!file_exists(DIR_APPLICATION . 'controller/openbay/' . $value . '.php')) {
		$this->model_setting_extension->uninstall('openbay', $value);
		unset($extensions[$key]);
	}
}

$this->data['extensions'] = array();

$markets = array(
	'openbay',
	'amazon',
	'amazonus'
);

foreach ($markets as $market) {
	$extension = basename($market, '.php');

	$this->load->language('openbay/' . $extension);

	$action = array();

	if (!in_array($extension, $extensions)) {
		$action[] = array(
			'text' => $this->language->get('text_install'),
			'href' => $this->url->link('extension/openbay/install', 'token=' . $this->session->data['token'] . '&extension=' . $extension, 'SSL')
		);
	} else {
		$action[] = array(
			'text' => $this->language->get('text_edit'),
			'href' => $this->url->link('openbay/' . $extension, 'token=' . $this->session->data['token'], 'SSL')
		);

		$action[] = array(
			'text' => $this->language->get('text_uninstall'),
			'href' => $this->url->link('extension/openbay/uninstall', 'token=' . $this->session->data['token'] . '&extension=' . $extension, 'SSL')
		);
	}

	$this->data['extensions'][] = array(
		'name' => $this->language->get('heading_title'),
		'status' => $this->config->get($extension . '_status') ? $this->language->get('text_enabled') : $this->language->get('text_disabled'),
		'action' => $action
	);
}

$this->template = 'extension/openbay.tpl';
$this->children = array(
	'common/header',
	'common/footer',
);

$this->load->model('setting/setting');
$settings = $this->model_setting_setting->getSetting('openbaymanager');

if (isset($settings['openbay_version'])) {
	$this->data['openbay_version'] = $settings['openbay_version'];
} else {
	$this->load->model('openbay/version');
	$this->data['openbay_version']  = $this->model_openbay_version->getVersion();
	$settings['openbay_version']    = $this->model_openbay_version->getVersion();
	$this->model_setting_setting->editSetting('openbaymanager', $settings);
}

$this->response->setOutput($this->render());


ublic function install() {
if (!$this->user->hasPermission('modify', 'extension/openbay')) {
	$this->session->data['error'] = $this->language->get('error_permission');
	$this->redirect($this->url->link('extension/openbay', 'token=' . $this->session->data['token'], 'SSL'));
} else {
	$this->load->model('user/user_group');

	$this->model_user_user_group->addPermission($this->user->getId(), 'access', 'openbay/' . $this->request->get['extension']);
	$this->model_user_user_group->addPermission($this->user->getId(), 'modify', 'openbay/' . $this->request->get['extension']);

	require_once(DIR_APPLICATION . 'controller/openbay/' . $this->request->get['extension'] . '.php');

	$class = 'ControllerOpenbay' . str_replace('_', '', $this->request->get['extension']);
	$class = new $class($this->registry);

	if (method_exists($class, 'install')) {
		$class->install();
	}

	$this->redirect($this->url->link('extension/openbay', 'token=' . $this->session->data['token'], 'SSL'));
}


ublic function uninstall() {
if (!$this->user->hasPermission('modify', 'extension/openbay')) {
	$this->session->data['error'] = $this->language->get('error_permission');

	$this->redirect($this->url->link('extension/openbay', 'token=' . $this->session->data['token'], 'SSL'));
} else {
	require_once(DIR_APPLICATION . 'controller/openbay/' . $this->request->get['extension'] . '.php');

	$this->load->model('setting/extension');
	$this->load->model('setting/setting');

	$this->model_setting_extension->uninstall('openbay', $this->request->get['extension']);
	$this->model_setting_setting->deleteSetting($this->request->get['extension']);

	$class = 'ControllerOpenbay' . str_replace('_', '', $this->request->get['extension']);
	$class = new $class($this->registry);

	if (method_exists($class, 'uninstall')) {
		$class->uninstall();
	}

	$this->redirect($this->url->link('extension/openbay', 'token=' . $this->session->data['token'], 'SSL'));
}


ublic function manage() {
$this->load->model('setting/setting');

$this->data = array_merge($this->data, $this->load->language('extension/openbay'));

$this->document->addStyle('view/stylesheet/openbay.css');
$this->document->addScript('view/javascript/openbay/faq.js');

if ($this->request->server['REQUEST_METHOD'] == 'POST') {
	$this->model_setting_setting->editSetting('openbaymanager', $this->request->post);

	$this->session->data['success'] = $this->language->get('lang_text_success');

	$this->redirect(HTTPS_SERVER . 'index.php?route=extension/openbay&token=' . $this->session->data['token']);
}

/**
 * OpenBay updates
 */
if (isset($this->request->post['openbay_version'])) {
	$this->data['openbay_version'] = $this->request->post['openbay_version'];
} else {
	$settings = $this->model_setting_setting->getSetting('openbaymanager');

	if (isset($settings['openbay_version'])) {
		$this->data['openbay_version'] = $settings['openbay_version'];
	} else {
		$this->load->model('openbay/version');
		$settings['openbay_version'] = $this->model_openbay_version->getVersion();
		$this->data['openbay_version'] = $this->model_openbay_version->getVersion();
		$this->model_setting_setting->editSetting('openbaymanager', $settings);
	}
}

if (isset($this->request->post['openbay_ftp_username'])) {
	$this->data['openbay_ftp_username'] = $this->request->post['openbay_ftp_username'];
} else {
	$this->data['openbay_ftp_username'] = $this->config->get('openbay_ftp_username');
}

if (isset($this->request->post['openbay_ftp_pw'])) {
	$this->data['openbay_ftp_pw'] = $this->request->post['openbay_ftp_pw'];
} else {
	$this->data['openbay_ftp_pw'] = $this->config->get('openbay_ftp_pw');
}

if (isset($this->request->post['openbay_ftp_rootpath'])) {
	$this->data['openbay_ftp_rootpath'] = $this->request->post['openbay_ftp_rootpath'];
} else {
	$this->data['openbay_ftp_rootpath'] = $this->config->get('openbay_ftp_rootpath');
}

if (isset($this->request->post['openbay_ftp_pasv'])) {
	$this->data['openbay_ftp_pasv'] = $this->request->post['openbay_ftp_pasv'];
} else {
	$this->data['openbay_ftp_pasv'] = $this->config->get('openbay_ftp_pasv');
}

if (isset($this->request->post['openbay_ftp_beta'])) {
	$this->data['openbay_ftp_beta'] = $this->request->post['openbay_ftp_beta'];
} else {
	$this->data['openbay_ftp_beta'] = $this->config->get('openbay_ftp_beta');
}

if (isset($this->request->post['openbay_ftp_server'])) {
	$this->data['openbay_ftp_server'] = $this->request->post['openbay_ftp_server'];
} else {
	$this->data['openbay_ftp_server'] = $this->config->get('openbay_ftp_server');

	if (empty($this->data['openbay_ftp_server'])) {
		$this->data['openbay_ftp_server'] = $_SERVER["SERVER_ADDR"];
	}
}

if (isset($this->request->post['openbay_admin_directory'])) {
	$this->data['openbay_admin_directory'] = $this->request->post['openbay_admin_directory'];
} else {
	if (!$this->config->get('openbay_admin_directory')) {
		$this->data['openbay_admin_directory'] = 'admin';
	} else {
		$this->data['openbay_admin_directory'] = $this->config->get('openbay_admin_directory');
	}
}

if (isset($this->request->post['openbay_language'])) {
	$this->data['openbay_language'] = $this->request->post['openbay_language'];
} else {
	$this->data['openbay_language'] = $this->config->get('openbay_language');
}

$this->data['languages'] = array(
	'en_GB' => 'English',
	'de_DE' => 'German',
	'es_ES' => 'Spanish',
	'fr_FR' => 'French',
	'it_IT' => 'Italian',
	'nl_NL' => 'Dutch',
	'zh_HK' => 'Simplified Chinese'
);

/**
 * Updating language
 */
$this->data['txt_obp_version'] = $this->config->get('openbay_version');
$this->data['openbaymanager_show_menu'] = $this->config->get('openbaymanager_show_menu');

$this->document->setTitle($this->language->get('lang_text_manager'));

$this->data['action'] = HTTPS_SERVER . 'index.php?route=extension/openbay/manage&token=' . $this->session->data['token'];
$this->data['cancel'] = HTTPS_SERVER . 'index.php?route=extension/openbay&token=' . $this->session->data['token'];

$this->data['breadcrumbs'] = array();

$this->data['breadcrumbs'][] = array(
	'href' => HTTPS_SERVER . 'index.php?route=common/home&token=' . $this->session->data['token'],
	'text' => $this->language->get('text_home'),
	'separator' => false
);

$this->data['breadcrumbs'][] = array(
	'href' => HTTPS_SERVER . 'index.php?route=extension/openbay&token=' . $this->session->data['token'],
	'text' => 'OpenBay Pro',
	'separator' => ' :: '
);

$this->data['breadcrumbs'][] = array(
	'href' => HTTPS_SERVER . 'index.php?route=extension/openbay/manage&token=' . $this->session->data['token'],
	'text' => 'Manage',
	'separator' => ' :: '
);


$this->template = 'openbay/openbay_manage.tpl';
$this->children = array(
	'common/header',
	'common/footer',
);

$this->response->setOutput($this->render());


ublic function ftpTestConnection() {


$this->load->model('openbay/openbay');

$data = $this->model_openbay_openbay->ftpTestConnection();

$this->response->setOutput(json_encode($data));


ublic function ftpUpdateModule() {


$this->load->model('openbay/openbay');

$data = $this->model_openbay_openbay->ftpUpdateModule();

$this->response->setOutput(json_encode($data));


ublic function getNotifications() {


$this->load->model('openbay/openbay');
$this->response->setOutput(json_encode($this->model_openbay_openbay->getNotifications()));


ublic function getVersion() {

sleep(1);

$this->load->model('openbay/openbay');
$this->response->setOutput(json_encode($this->model_openbay_openbay->getVersion()));


ublic function runPatch() {


$this->load->model('openbay/ebay_patch');
$this->load->model('openbay/amazon_patch');
$this->load->model('openbay/amazonus_patch');
$this->load->model('setting/extension');
$this->load->model('setting/setting');
$this->load->model('user/user_group');
$this->load->model('openbay/version');

$this->model_openbay_ebay_patch->runPatch();
$this->model_openbay_amazon_patch->runPatch();
$this->model_openbay_amazonus_patch->runPatch();

$openbaymanager = $this->model_setting_setting->getSetting('openbaymanager');
$openbaymanager['openbay_version'] = (int)$this->model_openbay_version->getVersion();
$openbaymanager['openbaymanager_show_menu'] = 1;
$this->model_setting_setting->editSetting('openbaymanager', $openbaymanager);

$installed_modules = $this->model_setting_extension->getInstalled('module');

if (!in_array('openbaypro', $installed_modules)) {
	$this->model_setting_extension->install('module', 'openbaypro');
	$this->model_user_user_group->addPermission($this->user->getId(), 'access', 'module/openbaypro');
	$this->model_user_user_group->addPermission($this->user->getId(), 'modify', 'module/openbaypro');
}

sleep(1);

$json = array();
$json['msg'] = 'ok';

$this->response->setOutput(json_encode($json));


ublic function faqGet(){


$this->load->model('openbay/openbay');
$this->load->language('extension/openbay');

$data = $this->model_openbay_openbay->faqGet($this->request->get['qry_route']);
$data['faqbtn'] = $this->language->get('faqbtn');
$this->response->setOutput(json_encode($data));


ublic function faqDismiss(){


$this->load->model('openbay/openbay');
$this->response->setOutput(json_encode($this->model_openbay_openbay->faqDismiss($this->request->get['qry_route'])));


ublic function faqClear(){


$this->load->model('openbay/openbay');
$this->model_openbay_openbay->faqClear();
sleep(1);

$json = array();
$json['msg'] = 'ok';

$this->response->setOutput(json_encode($json));


ublic function ajaxOrderInfo(){
$this->data = array_merge($this->data, $this->load->language('extension/openbay'));

if ($this->config->get('openbay_status') == 1) {
	if($this->openbay->ebay->isEbayOrder($this->request->get['order_id']) !== false){
		//if status is shipped
		if($this->config->get('EBAY_DEF_SHIPPED_ID') == $this->request->get['status_id']){
			$this->data['carriers']     = $this->openbay->ebay->getCarriers();
			$this->data['order_info']   = $this->openbay->ebay->getOrder($this->request->get['order_id']);
			$this->template             = 'openbay/ebay_ajax_shippinginfo.tpl';
			$this->response->setOutput($this->render(true), $this->config->get('config_compression'));
		}
	}
}

if($this->config->get('amazon_status') == 1) {
	$this->data['order_info'] = $this->openbay->amazon->getOrder($this->request->get['order_id']);

	//if is amazon order
	if($this->data['order_info']){
		//if status is shipped
		if($this->request->get['status_id'] == $this->config->get('openbay_amazon_order_status_shipped')){
			$this->data['couriers'] = $this->openbay->amazon->getCarriers();
			$this->data['courier_default'] = $this->config->get('openbay_amazon_default_carrier');
			$this->template = 'openbay/amazon_ajax_shippinginfo.tpl';
			$this->response->setOutput($this->render(true), $this->config->get('config_compression'));
		}
	}
}

if($this->config->get('amazonus_status') == 1) {
	$this->data['order_info'] = $this->openbay->amazonus->getOrder($this->request->get['order_id']);

	//if is amazonus order
	if($this->data['order_info']){
		//if status is shipped
		if($this->request->get['status_id'] == $this->config->get('openbay_amazonus_order_status_shipped')){
			$this->data['couriers'] = $this->openbay->amazonus->getCarriers();
			$this->data['courier_default'] = $this->config->get('openbay_amazon_default_carrier');
			$this->template = 'openbay/amazonus_ajax_shippinginfo.tpl';
			$this->response->setOutput($this->render(true), $this->config->get('config_compression'));
		}
	}
}



ublic function ajaxAddOrderInfo(){
//ebay
if ($this->config->get('openbay_status') == 1) {
	if($this->openbay->ebay->isEbayOrder($this->request->get['order_id']) !== false){
		if($this->config->get('EBAY_DEF_SHIPPED_ID') == $this->request->get['status_id']){
			$this->openbay->ebay->orderStatusListen($this->request->get['order_id'], $this->request->get['status_id'], array('tracking_no' => $this->request->post['tracking_no'], 'carrier_id' => $this->request->post['carrier_id']));
		}else{
			$this->openbay->ebay->orderStatusListen($this->request->get['order_id'], $this->request->get['status_id']);
		}
	}
}

//Amazon EU
if ($this->config->get('amazon_status') == 1) {
	$amazonOrder = $this->openbay->amazon->getOrder($this->request->get['order_id']);
	if($amazonOrder){
		if($this->config->get('openbay_amazon_order_status_shipped') == $this->request->get['status_id']){
			if(!empty($this->request->post['courier_other'])) {
				$this->openbay->amazon->updateOrder($this->request->get['order_id'], 'shipped', $this->request->post['courier_other'], false, $this->request->post['tracking_no']);
			} else {
				$this->openbay->amazon->updateOrder($this->request->get['order_id'], 'shipped', $this->request->post['courier_id'], true, $this->request->post['tracking_no']);
			}
		}
		if($this->config->get('openbay_amazon_order_status_canceled') == $this->request->get['status_id']){
			$this->openbay->amazon->updateOrder($this->request->get['order_id'], 'canceled');
		}
	}
}

//Amazon US
if ($this->config->get('amazonus_status') == 1) {
	$amazonusOrder = $this->openbay->amazonus->getOrder($this->request->get['order_id']);
	if($amazonusOrder){
		if($this->config->get('openbay_amazonus_order_status_shipped') == $this->request->get['status_id']){
			if(!empty($this->request->post['courier_other'])) {
				$this->openbay->amazonus->updateOrder($this->request->get['order_id'], 'shipped', $this->request->post['courier_other'], false, $this->request->post['tracking_no']);
			} else {
				$this->openbay->amazonus->updateOrder($this->request->get['order_id'], 'shipped', $this->request->post['courier_id'], true, $this->request->post['tracking_no']);
			}
		}
		if($this->config->get('openbay_amazonus_order_status_canceled') == $this->request->get['status_id']){
			$this->openbay->amazonus->updateOrder($this->request->get['order_id'], 'canceled');
		}
	}
}



ublic function orderList(){
$this->load->language('sale/order');
$this->load->model('openbay/order');

$this->data = array_merge($this->data, $this->load->language('extension/openbay_order'));
$this->document->setTitle($this->language->get('lang_title_order_update'));

if (isset($this->request->get['filter_order_id'])) {
	$filter_order_id = $this->request->get['filter_order_id'];
} else {
	$filter_order_id = null;
}

if (isset($this->request->get['filter_customer'])) {
	$filter_customer = $this->request->get['filter_customer'];
} else {
	$filter_customer = null;
}

if (isset($this->request->get['filter_order_status_id'])) {
	$filter_order_status_id = $this->request->get['filter_order_status_id'];
} else {
	$filter_order_status_id = null;
}

if (isset($this->request->get['filter_date_added'])) {
	$filter_date_added = $this->request->get['filter_date_added'];
} else {
	$filter_date_added = null;
}

if (isset($this->request->get['sort'])) {
	$sort = $this->request->get['sort'];
} else {
	$sort = 'o.order_id';
}

if (isset($this->request->get['order'])) {
	$order = $this->request->get['order'];
} else {
	$order = 'DESC';
}

if (isset($this->request->get['page'])) {
	$page = $this->request->get['page'];
} else {
	$page = 1;
}

$url = '';

if (isset($this->request->get['filter_order_id'])) {
	$url .= '&filter_order_id=' . $this->request->get['filter_order_id'];
}

if (isset($this->request->get['filter_customer'])) {
	$url .= '&filter_customer=' . $this->request->get['filter_customer'];
}

if (isset($this->request->get['filter_order_status_id'])) {
	$url .= '&filter_order_status_id=' . $this->request->get['filter_order_status_id'];
}

if (isset($this->request->get['filter_date_added'])) {
	$url .= '&filter_date_added=' . $this->request->get['filter_date_added'];
}

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->data['breadcrumbs'] = array();

$this->data['breadcrumbs'][] = array(
	'text'      => $this->language->get('text_home'),
	'href'      => $this->url->link('common/home', 'token=' . $this->session->data['token'], 'SSL'),
	'separator' => false
);

$this->data['breadcrumbs'][] = array(
	'href' => HTTPS_SERVER . 'index.php?route=extension/openbay&token=' . $this->session->data['token'],
	'text' => 'OpenBay Pro',
	'separator' => ' :: '
);

$this->data['breadcrumbs'][] = array(
	'href' => HTTPS_SERVER . 'index.php?route=extension/openbay/manage&token=' . $this->session->data['token'],
	'text' => $this->data['lang_title_order_update'],
	'separator' => ' :: '
);

$this->data['orders'] = array();

$data = array(
	'filter_order_id'        => $filter_order_id,
	'filter_customer'	     => $filter_customer,
	'filter_order_status_id' => $filter_order_status_id,
	'filter_date_added'      => $filter_date_added,
	'sort'                   => $sort,
	'order'                  => $order,
	'start'                  => ($page - 1) * $this->config->get('config_admin_limit'),
	'limit'                  => $this->config->get('config_admin_limit')
);

$order_total = $this->model_openbay_order->getTotalOrders($data);
$results = $this->model_openbay_order->getOrders($data);

foreach ($results as $result) {
	$action = array();

	$action[] = array(
		'text' => $this->language->get('text_view'),
		'href' => $this->url->link('sale/order/info', 'token=' . $this->session->data['token'] . '&order_id=' . $result['order_id'] . $url, 'SSL')
	);

	if (strtotime($result['date_added']) > strtotime('-' . (int)$this->config->get('config_order_edit') . ' day')) {
		$action[] = array(
			'text' => $this->language->get('text_edit'),
			'href' => $this->url->link('sale/order/update', 'token=' . $this->session->data['token'] . '&order_id=' . $result['order_id'] . $url, 'SSL')
		);
	}

	$this->data['orders'][] = array(
		'order_id'      => $result['order_id'],
		'customer'      => $result['customer'],
		'status'        => $result['status'],
		'date_added'    => date($this->language->get('date_format_short'), strtotime($result['date_added'])),
		'selected'      => isset($this->request->post['selected']) && in_array($result['order_id'], $this->request->post['selected']),
		'action'        => $action,
		'channel'       => $this->model_openbay_order->findOrderChannel($result['order_id'])
	);
}

$this->data['heading_title'] = $this->language->get('heading_title');
$this->data['text_no_results'] = $this->language->get('text_no_results');
$this->data['text_missing'] = $this->language->get('text_missing');
$this->data['column_order_id'] = $this->language->get('column_order_id');
$this->data['column_customer'] = $this->language->get('column_customer');
$this->data['column_status'] = $this->language->get('column_status');
$this->data['column_date_added'] = $this->language->get('column_date_added');
$this->data['column_action'] = $this->language->get('column_action');
$this->data['button_filter'] = $this->language->get('button_filter');

$this->data['token'] = $this->session->data['token'];

if (isset($this->session->data['error'])) {
	$this->data['error_warning'] = $this->session->data['error'];
	unset($this->session->data['error']);
} else {
	$this->data['error_warning'] = '';
}

if (isset($this->session->data['success'])) {
	$this->data['success'] = $this->session->data['success'];

	unset($this->session->data['success']);
} else {
	$this->data['success'] = '';
}

$url = '';

if (isset($this->request->get['filter_order_id'])) {
	$url .= '&filter_order_id=' . $this->request->get['filter_order_id'];
}

if (isset($this->request->get['filter_customer'])) {
	$url .= '&filter_customer=' . $this->request->get['filter_customer'];
}

if (isset($this->request->get['filter_order_status_id'])) {
	$url .= '&filter_order_status_id=' . $this->request->get['filter_order_status_id'];
}

if (isset($this->request->get['filter_date_added'])) {
	$url .= '&filter_date_added=' . $this->request->get['filter_date_added'];
}

if ($order == 'ASC') {
	$url .= '&order=DESC';
} else {
	$url .= '&order=ASC';
}

if (isset($this->request->get['page'])) {
	$url .= '&page=' . $this->request->get['page'];
}

$this->data['sort_order'] = $this->url->link('extension/openbay/orderList', 'token=' . $this->session->data['token'] . '&sort=o.order_id' . $url, 'SSL');
$this->data['sort_customer'] = $this->url->link('extension/openbay/orderList', 'token=' . $this->session->data['token'] . '&sort=customer' . $url, 'SSL');
$this->data['sort_status'] = $this->url->link('extension/openbay/orderList', 'token=' . $this->session->data['token'] . '&sort=status' . $url, 'SSL');
$this->data['sort_date_added'] = $this->url->link('extension/openbay/orderList', 'token=' . $this->session->data['token'] . '&sort=o.date_added' . $url, 'SSL');
$this->data['link_update'] = $this->url->link('extension/openbay/orderListUpdate', 'token=' . $this->session->data['token'] . '&sort=o.date_added' . $url, 'SSL');

$url = '';

if (isset($this->request->get['filter_order_id'])) {
	$url .= '&filter_order_id=' . $this->request->get['filter_order_id'];
}

if (isset($this->request->get['filter_customer'])) {
	$url .= '&filter_customer=' . $this->request->get['filter_customer'];
}

if (isset($this->request->get['filter_order_status_id'])) {
	$url .= '&filter_order_status_id=' . $this->request->get['filter_order_status_id'];
}

if (isset($this->request->get['filter_date_added'])) {
	$url .= '&filter_date_added=' . $this->request->get['filter_date_added'];
}

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 = $order_total;
$pagination->page = $page;
$pagination->limit = $this->config->get('config_admin_limit');
$pagination->text = $this->language->get('text_pagination');
$pagination->url = $this->url->link('extension/openbay/orderList', 'token=' . $this->session->data['token'] . $url . '&page={page}', 'SSL');

$this->data['pagination'] = $pagination->render();

$this->data['filter_order_id'] = $filter_order_id;
$this->data['filter_customer'] = $filter_customer;
$this->data['filter_order_status_id'] = $filter_order_status_id;
$this->data['filter_date_added'] = $filter_date_added;

$this->load->model('localisation/order_status');

$this->data['order_statuses'] = $this->model_localisation_order_status->getOrderStatuses();

$this->data['sort'] = $sort;
$this->data['order'] = $order;

$this->template = 'openbay/openbay_orderlist.tpl';
$this->children = array(
	'common/header',
	'common/footer'
);

$this->response->setOutput($this->render());


ublic function orderListUpdate(){

$this->data = array_merge($this->data, $this->load->language('extension/openbay_order'));
$this->document->setTitle($this->language->get('lang_title_order_update'));

if(!isset($this->request->post['selected']) || empty($this->request->post['selected'])){
	$this->session->data['error'] = $this->data['lang_no_orders'];
	$this->redirect($this->url->link('extension/openbay/orderList', 'token=' . $this->session->data['token'], 'SSL'));
}else{
	$this->load->model('openbay/order');
	$this->load->language('sale/order');

	$this->data['column_order_id'] = $this->language->get('column_order_id');
	$this->data['column_customer'] = $this->language->get('column_customer');
	$this->data['column_status'] = $this->language->get('column_status');
	$this->data['column_date_added'] = $this->language->get('column_date_added');
	$this->data['heading_title'] = $this->language->get('heading_title');

	$this->data['link_cancel'] = $this->url->link('extension/openbay/orderList', 'token=' . $this->session->data['token'], 'SSL');
	$this->data['link_complete'] = $this->url->link('extension/openbay/orderListComplete', 'token=' . $this->session->data['token'], 'SSL');

	$this->data['market_options'] = array();

	if ($this->config->get('openbay_status') == 1) {
		$this->data['market_options']['ebay']['carriers'] = $this->openbay->ebay->getCarriers();
	}

	if ($this->config->get('amazon_status') == 1) {
		$this->data['market_options']['amazon']['carriers'] = $this->openbay->amazon->getCarriers();
		$this->data['market_options']['amazon']['default_carrier'] = $this->config->get('openbay_amazon_default_carrier');
	}

	if ($this->config->get('amazonus_status') == 1) {
		$this->data['market_options']['amazonus']['carriers'] = $this->openbay->amazonus->getCarriers();
	}

	$this->load->model('localisation/order_status');
	$this->data['order_statuses'] = $this->model_localisation_order_status->getOrderStatuses();
	$this->data['status_mapped'] = array();

	foreach($this->data['order_statuses'] as $status){
		$this->data['status_mapped'][$status['order_status_id']] = $status['name'];
	}

	$orders = array();

	foreach($this->request->post['selected'] as $order_id){
		$order = $this->model_openbay_order->getOrder($order_id);

		if($order['order_status_id'] != $this->request->post['change_order_status_id']){
			$order['channel'] = $this->model_openbay_order->findOrderChannel($order_id);
			$orders[] = $order;
		}
	}

	if(empty($orders)){
		$this->session->data['error'] = $this->data['lang_no_orders'];
		$this->redirect($this->url->link('extension/openbay/orderList', 'token=' . $this->session->data['token'], 'SSL'));
	}else{
		$this->data['orders'] = $orders;
	}

	$this->data['breadcrumbs'] = array();

	$this->data['breadcrumbs'][] = array(
		'text'      => $this->language->get('text_home'),
		'href'      => $this->url->link('common/home', 'token=' . $this->session->data['token'], 'SSL'),
		'separator' => false
	);

	$this->data['breadcrumbs'][] = array(
		'href' => HTTPS_SERVER . 'index.php?route=extension/openbay&token=' . $this->session->data['token'],
		'text' => 'OpenBay Pro',
		'separator' => ' :: '
	);

	$this->data['breadcrumbs'][] = array(
		'href' => HTTPS_SERVER . 'index.php?route=extension/openbay/manage&token=' . $this->session->data['token'],
		'text' => $this->data['lang_title_order_update'],
		'separator' => ' :: '
	);

	$this->template = 'openbay/openbay_orderlist_confirm.tpl';
	$this->children = array(
		'common/header',
		'common/footer'
	);

	$this->response->setOutput($this->render());
}


ublic function orderListComplete(){

$this->load->model('sale/order');
$this->load->model('localisation/order_status');

$this->data = array_merge($this->data, $this->load->language('extension/openbay_order'));

$order_statuses = $this->model_localisation_order_status->getOrderStatuses();
$status_mapped = array();

foreach($order_statuses as $status){
	$status_mapped[$status['order_status_id']] = $status['name'];
}

$i = 0;
foreach($this->request->post['order_id'] as $order_id){
	//ebay
	if ($this->config->get('openbay_status') == 1 && $this->request->post['channel'][$order_id] == 'eBay') {
		if($this->config->get('EBAY_DEF_SHIPPED_ID') == $this->request->post['order_status_id']){
			$this->openbay->ebay->orderStatusListen($order_id, $this->request->post['order_status_id'], array('tracking_no' => $this->request->post['tracking'][$order_id], 'carrier_id' => $this->request->post['carrier'][$order_id]));
		}else{
			$this->openbay->ebay->orderStatusListen($this->request->get['order_id'], $this->request->get['status_id']);
		}
	}

	//Amazon EU
	if ($this->config->get('amazon_status') == 1 && $this->request->post['channel'][$order_id] == 'Amazon') {
		if($this->config->get('openbay_amazon_order_status_shipped') == $this->request->post['order_status_id']){
			if(isset($this->request->post['carrier_other'][$order_id]) && !empty($this->request->post['carrier_other'][$order_id])) {
				$this->openbay->amazon->updateOrder($order_id, 'shipped', $this->request->post['carrier_other'][$order_id], false, $this->request->post['tracking'][$order_id]);
			} else {
				$this->openbay->amazon->updateOrder($order_id, 'shipped', $this->request->post['carrier'][$order_id], true, $this->request->post['tracking'][$order_id]);
			}
		}
		if($this->config->get('openbay_amazon_order_status_canceled') == $this->request->post['order_status_id']){
			$this->openbay->amazon->updateOrder($order_id, 'canceled');
		}
	}

	//Amazon US
	if ($this->config->get('amazonus_status') == 1 && $this->request->post['channel'][$order_id] == 'Amazonus') {
		if($this->config->get('openbay_amazonus_order_status_shipped') == $this->request->post['order_status_id']){
			if(isset($this->request->post['carrier_other'][$order_id]) && !empty($this->request->post['carrier_other'][$order_id])) {
				$this->openbay->amazonus->updateOrder($order_id, 'shipped', $this->request->post['carrier_other'][$order_id], false, $this->request->post['tracking'][$order_id]);
			} else {
				$this->openbay->amazonus->updateOrder($order_id, 'shipped', $this->request->post['carrier'][$order_id], true, $this->request->post['tracking'][$order_id]);
			}
		}
		if($this->config->get('openbay_amazonus_order_status_canceled') == $this->request->post['order_status_id']){
			$this->openbay->amazonus->updateOrder($order_id, 'canceled');
		}
	}

	$data = array(
		'notify' => $this->request->post['notify'][$order_id],
		'order_status_id' => $this->request->post['order_status_id'],
		'comment' => $this->request->post['comments'][$order_id],
	);

	$this->model_sale_order->addOrderHistory($order_id, $data);
	$i++;
}

$this->session->data['success'] = $i.' '. $this->data['lang_confirmed'] .' '.$status_mapped[$this->request->post['order_status_id']];

$this->redirect($this->url->link('extension/openbay/orderList', 'token=' . $this->session->data['token'], 'SSL'));


ublic function linkStatus(){
$product_id = $this->request->get['product_id'];

$this->data = array_merge($this->data, $this->load->language('extension/default'));

$markets = array();

if ($this->config->get('openbay_status') == '1') {
	$this->load->model('openbay/ebay');

	if($this->openbay->ebay->getEbayItemId($product_id) == false) {
		$markets[] = array(
			'name'      => 'eBay',
			'status'    => 0,
			'text'      => $this->language->get('lang_openbay_new'),
			'href'      => $this->url->link('openbay/openbay/create', 'token=' . $this->session->data['token'] . '&product_id=' . $product_id, 'SSL'),
			'target'    => ''
		);
	} else {
		$markets[] = array(
			'name'      => 'eBay',
			'status'    => 1,
			'text'      => $this->language->get('lang_openbay_edit'),
			'href'      => $this->url->link('openbay/openbay/edit', 'token=' . $this->session->data['token'] . '&product_id=' . $product_id, 'SSL'),
			'target'    => ''
		);
	}
}

if ($this->config->get('amazon_status') == '1') {
	$this->load->model('openbay/amazon');
	$amazon_status = $this->model_openbay_amazon->getProductStatus($product_id);

	if ($amazon_status == 'processing') {
		$markets[] = array(
			'name' => 'Amazon EU',
			'status' => 0,
			'text' => $this->language->get('lang_openbay_processing'),
			'href' => '',
			'target'    => ''
		);
	} else if ($amazon_status == 'linked' || $amazon_status == 'ok' || $amazon_status == 'saved') {
		$markets[] = array(
			'name' => 'Amazon EU',
			'status' => 1,
			'text' => $this->language->get('lang_openbay_edit'),
			'href' => $this->url->link('openbay/amazon_listing/edit', 'token=' . $this->session->data['token'] . '&product_id=' . $product_id, 'SSL'),
			'target'    => '',
		);
	} else if ($amazon_status == 'error_quick' || $amazon_status == 'error_advanced' || $amazon_status == 'error_few') {
		$markets[] = array(
			'name' => 'Amazon EU',
			'status' => 0,
			'text' => $this->language->get('lang_openbay_fix'),
			'href' => $this->url->link('openbay/amazon_listing/create', 'token=' . $this->session->data['token'] . '&product_id=' . $product_id, 'SSL'),
			'target'    => '',
		);
	} else {
		$markets[] = array(
			'name' => 'Amazon EU',
			'status' => 0,
			'text' => $this->language->get('lang_openbay_new'),
			'href' => $this->url->link('openbay/amazon_listing/create', 'token=' . $this->session->data['token'] . '&product_id=' . $product_id, 'SSL'),
			'target'    => '',
		);
	}
}

if ($this->config->get('amazonus_status') == '1') {
	$this->load->model('openbay/amazonus');
	$amazonus_status = $this->model_openbay_amazonus->getProductStatus($product_id);

	if ($amazonus_status == 'processing') {
		$markets[] = array(
			'name' => 'Amazon US',
			'status' => 0,
			'text' => $this->language->get('lang_openbay_processing'),
			'href' => '',
			'target'    => '',
		);
	} else if ($amazonus_status == 'linked' || $amazonus_status == 'ok' || $amazonus_status == 'saved') {
		$markets[] = array(
			'name' => 'Amazon US',
			'status' => 1,
			'text' => $this->language->get('lang_openbay_edit'),
			'href' => $this->url->link('openbay/amazonus_listing/edit', 'token=' . $this->session->data['token'] . '&product_id=' . $product_id, 'SSL'),
			'target'    => '',
		);
	} else if ($amazonus_status == 'error_quick' || $amazonus_status == 'error_advanced' || $amazonus_status == 'error_few') {
		$markets[] = array(
			'name' => 'Amazon US',
			'status' => 0,
			'text' => $this->language->get('lang_openbay_fix'),
			'href' => $this->url->link('openbay/amazonus_listing/create', 'token=' . $this->session->data['token'] . '&product_id=' . $product_id, 'SSL'),
			'target'    => '',
		);
	} else {
		$markets[] = array(
			'name' => 'Amazon US',
			'status' => 0,
			'text' => $this->language->get('lang_openbay_new'),
			'href' => $this->url->link('openbay/amazonus_listing/create', 'token=' . $this->session->data['token'] . '&product_id=' . $product_id, 'SSL'),
			'target'    => '',
		);
	}
}

$this->data['markets'] = $markets;

$this->template = 'openbay/openbay_links.tpl';
$this->children = array();
$this->response->setOutput($this->render());


ublic function itemList() {
$this->document->addScript('view/javascript/openbay/openbay.js');
$this->document->addScript('view/javascript/openbay/faq.js');
$this->document->addStyle('view/stylesheet/openbay.css');

$this->data = array_merge($this->data, $this->load->language('catalog/product'));
$this->data = array_merge($this->data, $this->load->language('extension/default'));
$this->data = array_merge($this->data, $this->load->language('openbay/openbay_itemlist'));

$this->document->setTitle($this->language->get('heading_title'));

$this->load->model('catalog/product');
$this->load->model('catalog/category');
$this->load->model('catalog/manufacturer');
$this->load->model('openbay/openbay');
$this->load->model('tool/image');

if ($this->openbay->addonLoad('openstock')) {
	$this->load->model('openstock/openstock');
	$openstock_installed = true;
} else {
	$openstock_installed = false;
}

$this->data['category_list'] = $this->model_catalog_category->getCategories(array());
$this->data['manufacturer_list'] = $this->model_catalog_manufacturer->getManufacturers(array());

if (isset($this->request->get['filter_name'])) {
	$filter_name = $this->request->get['filter_name'];
} else {
	$filter_name = null;
}

if (isset($this->request->get['filter_model'])) {
	$filter_model = $this->request->get['filter_model'];
} else {
	$filter_model = null;
}

if (isset($this->request->get['filter_price'])) {
	$filter_price = $this->request->get['filter_price'];
} else {
	$filter_price = null;
}

if (isset($this->request->get['filter_price_to'])) {
	$filter_price_to = $this->request->get['filter_price_to'];
} else {
	$filter_price_to = null;
}

if (isset($this->request->get['filter_quantity'])) {
	$filter_quantity = $this->request->get['filter_quantity'];
} else {
	$filter_quantity = null;
}

if (isset($this->request->get['filter_quantity_to'])) {
	$filter_quantity_to = $this->request->get['filter_quantity_to'];
} else {
	$filter_quantity_to = null;
}

if (isset($this->request->get['filter_status'])) {
	$filter_status = $this->request->get['filter_status'];
} else {
	$filter_status = null;
}

if (isset($this->request->get['filter_sku'])) {
	$filter_sku = $this->request->get['filter_sku'];
} else {
	$filter_sku = null;
}

if (isset($this->request->get['filter_desc'])) {
	$filter_desc = $this->request->get['filter_desc'];
} else {
	$filter_desc = null;
}

if (isset($this->request->get['filter_category'])) {
	$filter_category = $this->request->get['filter_category'];
} else {
	$filter_category = null;
}

if (isset($this->request->get['filter_manufacturer'])) {
	$filter_manufacturer = $this->request->get['filter_manufacturer'];
} else {
	$filter_manufacturer = null;
}

if (isset($this->request->get['filter_marketplace'])) {
	$filter_marketplace = $this->request->get['filter_marketplace'];
} else {
	$filter_marketplace = null;
}

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 = $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_to'])) {
	$url .= '&filter_price_to=' . $this->request->get['filter_price_to'];
}

if (isset($this->request->get['filter_quantity'])) {
	$url .= '&filter_quantity=' . $this->request->get['filter_quantity'];
}

if (isset($this->request->get['filter_quantity_to'])) {
	$url .= '&filter_quantity_to=' . $this->request->get['filter_quantity_to'];
}

if (isset($this->request->get['filter_status'])) {
	$url .= '&filter_status=' . $this->request->get['filter_status'];
}

if (isset($this->request->get['filter_sku'])) {
	$url .= '&filter_sku=' . $this->request->get['filter_sku'];
}

if (isset($this->request->get['filter_desc'])) {
	$url .= '&filter_desc=' . $this->request->get['filter_desc'];
}

if (isset($this->request->get['filter_category'])) {
	$url .= '&filter_category=' . $this->request->get['filter_category'];
}

if (isset($this->request->get['filter_manufacturer'])) {
	$url .= '&filter_manufacturer=' . $this->request->get['filter_manufacturer'];
}

if (isset($this->request->get['filter_marketplace'])) {
	$url .= '&filter_marketplace=' . $this->request->get['filter_marketplace'];
}

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->data['breadcrumbs'] = array();

$this->data['breadcrumbs'][] = array(
	'text'      => $this->language->get('text_home'),
	'href'      => $this->url->link('common/home', 'token=' . $this->session->data['token'], 'SSL'),
	'separator' => false
);

$this->data['breadcrumbs'][] = array(
	'text'      => $this->language->get('heading_title'),
	'href'      => $this->url->link('extension/openbay/itemList', 'token=' . $this->session->data['token'] . $url, 'SSL'),
	'separator' => ' :: '
);

if ($this->config->get('amazon_status')) {
	$this->data['href_amazon_bulk_list'] = $this->url->link('openbay/amazon/bulkListProducts', 'token=' . $this->session->data['token'] . $url, 'SSL');
} else {
	$this->data['href_amazon_bulk_list'] = '';
}

$this->data['products'] = array();

$filter_market_id = '';
$filter_market_name = '';

$ebay_status = array(
	0 => 'ebay_inactive',
	1 => 'ebay_active',
);

if(in_array($filter_marketplace, $ebay_status)){
	$filter_market_name = 'ebay';
	$filter_market_id = array_search($filter_marketplace, $ebay_status);
}

$amazon_status = array(
	0 => 'amazon_unlisted',
	1 => 'amazon_saved',
	2 => 'amazon_uploaded',
	3 => 'amazon_ok',
	4 => 'amazon_error',
	5 => 'amazon_linked',
	6 => 'amazon_not_linked',
);

if(in_array($filter_marketplace, $amazon_status)){
	$filter_market_name = 'amazon';
	$filter_market_id = array_search($filter_marketplace, $amazon_status);
}

$amazonus_status = array(
	0 => 'amazonus_unlisted',
	1 => 'amazonus_saved',
	2 => 'amazonus_uploaded',
	3 => 'amazonus_ok',
	4 => 'amazonus_error',
	5 => 'amazonus_linked',
	6 => 'amazonus_not_linked',
);

if(in_array($filter_marketplace, $amazonus_status)){
	$filter_market_name = 'amazonus';
	$filter_market_id = array_search($filter_marketplace, $amazonus_status);
}

$data = array(
	'filter_name'	        => $filter_name,
	'filter_model'	        => $filter_model,
	'filter_price'	        => $filter_price,
	'filter_price_to'	    => $filter_price_to,
	'filter_quantity'       => $filter_quantity,
	'filter_quantity_to'    => $filter_quantity_to,
	'filter_status'         => $filter_status,
	'filter_sku'            => $filter_sku,
	'filter_desc'           => $filter_desc,
	'filter_category'       => $filter_category,
	'filter_manufacturer'   => $filter_manufacturer,
	'filter_market_name'    => $filter_market_name,
	'filter_market_id'      => $filter_market_id,
	'sort'                  => $sort,
	'order'                 => $order,
	'start'                 => ($page - 1) * $this->config->get('config_admin_limit'),
	'limit'                 => $this->config->get('config_admin_limit')
);

if($this->config->get('openbay_status') != '1' && $data['filter_market_name'] == 'ebay') {
	$this->redirect($this->url->link('extension/openbay/itemList', 'token=' . $this->session->data['token'], 'SSL'));
	return;
}

if($this->config->get('amazon_status') != '1' && $data['filter_market_name'] == 'amazon') {
	$this->redirect($this->url->link('extension/openbay/itemList', 'token=' . $this->session->data['token'], 'SSL'));
	return;
}

if($this->config->get('amazonus_status') != '1' && $data['filter_market_name'] == 'amazonus') {
	$this->redirect($this->url->link('extension/openbay/itemList', 'token=' . $this->session->data['token'], 'SSL'));
	return;
}

$this->data['marketplace_statuses'] = array(
	'ebay' => $this->config->get('openbay_status'),
	'amazon' => $this->config->get('amazon_status'),
	'amazonus' => $this->config->get('amazonus_status'),
);

$product_total = $this->model_openbay_openbay->getTotalProducts($data);

$results = $this->model_openbay_openbay->getProducts($data);

foreach ($results as $result) {
	$edit = $this->url->link('catalog/product/update', 'token=' . $this->session->data['token'] . '&product_id=' . $result['product_id'] . $url, 'SSL');

	if ($result['image'] && file_exists(DIR_IMAGE . $result['image'])) {
		$image = $this->model_tool_image->resize($result['image'], 40, 40);
	} else {
		$image = $this->model_tool_image->resize('no_image.jpg', 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' || $product_special['date_start'] < date('Y-m-d')) && ($product_special['date_end'] == '0000-00-00' || $product_special['date_end'] > date('Y-m-d'))) {
			$special = $product_special['price'];

			break;
		}
	}

	$markets = array();

	if ($this->config->get('openbay_status') == '1') {
		$this->load->model('openbay/ebay');

		$activeList = $this->model_openbay_ebay->getLiveListingArray();

		if(!array_key_exists($result['product_id'], $activeList)) {
			$markets[] = array(
				'name'      => 'eBay',
				'img'       => HTTPS_SERVER.'view/image/openbay/ebay_nolink.png',
				'text'      => $this->language->get('lang_openbay_new'),
				'href'      => $this->url->link('openbay/openbay/create', 'token=' . $this->session->data['token'] . '&product_id=' . $result['product_id'] . $url, 'SSL'),
			);
		} else {
			$markets[] = array(
				'name'      => 'eBay',
				'img'       => HTTPS_SERVER.'view/image/openbay/ebay_ok.png',
				'text'      => $this->language->get('lang_openbay_edit'),
				'href'      => $this->url->link('openbay/openbay/edit', 'token=' . $this->session->data['token'] . '&product_id=' . $result['product_id'] . $url, 'SSL'),
			);
		}
	}

	if ($this->config->get('amazon_status') == '1') {
		$this->load->model('openbay/amazon');
		$amazon_status = $this->model_openbay_amazon->getProductStatus($result['product_id']);

		if($amazon_status == 'processing') {
			$markets[] = array(
				'name'      => 'Amazon EU',
				'img'       => HTTPS_SERVER.'view/image/openbay/amazon_pending.png',
				'text'      => $this->language->get('lang_openbay_processing'),
				'href'      => '',
			);
		} else if ($amazon_status == 'linked' || $amazon_status == 'ok' || $amazon_status == 'saved') {
			$markets[] = array(
				'name'      => 'Amazon EU',
				'img'       => HTTPS_SERVER.'view/image/openbay/amazon_ok.png',
				'text'      => $this->language->get('lang_openbay_edit'),
				'href'      => $this->url->link('openbay/amazon_listing/edit', 'token=' . $this->session->data['token'] . '&product_id=' . $result['product_id'] . $url, 'SSL'),
			);
		} else if ($amazon_status == 'error_quick' || $amazon_status == 'error_advanced' || $amazon_status == 'error_few') {
			$markets[] = array(
				'name'      => 'Amazon EU',
				'img'       => HTTPS_SERVER.'view/image/openbay/amazon_error.png',
				'text'      => $this->language->get('lang_openbay_fix'),
				'href'      => $this->url->link('openbay/amazon_listing/create', 'token=' . $this->session->data['token'] . '&product_id=' . $result['product_id'] . $url, 'SSL'),
			);
		} else {
			$markets[] = array(
				'name'      => 'Amazon EU',
				'img'       => HTTPS_SERVER.'view/image/openbay/amazon_nolink.png',
				'text'      => $this->language->get('lang_openbay_new'),
				'href'      => $this->url->link('openbay/amazon_listing/create', 'token=' . $this->session->data['token'] . '&product_id=' . $result['product_id'] . $url, 'SSL'),
			);
		}
	}

	if ($this->config->get('amazonus_status') == '1') {
		$this->load->model('openbay/amazonus');
		$amazonus_status = $this->model_openbay_amazonus->getProductStatus($result['product_id']);

		if($amazonus_status == 'processing') {
			$markets[] = array(
				'name'      => 'Amazon US',
				'img'       => HTTPS_SERVER.'view/image/openbay/amazon_pending.png',
				'text'      => $this->language->get('lang_openbay_processing'),
				'href'      => '',
			);
		} else if ($amazonus_status == 'linked' || $amazonus_status == 'ok' || $amazonus_status == 'saved') {
			$markets[] = array(
				'name'      => 'Amazon US',
				'img'       => HTTPS_SERVER.'view/image/openbay/amazon_ok.png',
				'text'      => $this->language->get('lang_openbay_edit'),
				'href'      => $this->url->link('openbay/amazonus_listing/edit', 'token=' . $this->session->data['token'] . '&product_id=' . $result['product_id'] . $url, 'SSL'),
			);
		} else if ($amazonus_status == 'error_quick' || $amazonus_status == 'error_advanced' || $amazonus_status == 'error_few') {
			$markets[] = array(
				'name'      => 'Amazon US',
				'img'       => HTTPS_SERVER.'view/image/openbay/amazon_error.png',
				'text'      => $this->language->get('lang_openbay_fix'),
				'href'      => $this->url->link('openbay/amazonus_listing/create', 'token=' . $this->session->data['token'] . '&product_id=' . $result['product_id'] . $url, 'SSL'),
			);
		} else {
			$markets[] = array(
				'name'      => 'Amazon US',
				'img'       => HTTPS_SERVER.'view/image/openbay/amazon_nolink.png',
				'text'      => $this->language->get('lang_openbay_new'),
				'href'      => $this->url->link('openbay/amazonus_listing/create', 'token=' . $this->session->data['token'] . '&product_id=' . $result['product_id'] . $url, 'SSL'),
			);
		}
	}

	if(!isset($result['has_option'])) {
		$result['has_option'] = 0;
	}

	$this->data['products'][] = array(
		'markets'   => $markets,
		'product_id' => $result['product_id'],
		'name'       => $result['name'],
		'model'      => $result['model'],
		'price'      => $result['price'],
		'special'    => $special,
		'image'      => $image,
		'quantity'   => $result['quantity'],
		'status'     => ($result['status'] ? $this->language->get('text_enabled') : $this->language->get('text_disabled')),
		'selected'   => isset($this->request->post['selected']) && in_array($result['product_id'], $this->request->post['selected']),
		'edit'       => $edit,
		'has_option' => $openstock_installed ? $result['has_option'] : 0,
		'vCount'     => $openstock_installed ? $this->model_openstock_openstock->countVariation($result['product_id']) : '',
		'vsCount'    => $openstock_installed ? $this->model_openstock_openstock->countVariationStock($result['product_id']) : '',
	);
}

$this->data['token'] = $this->session->data['token'];

if (isset($this->error['warning'])) {
	$this->data['error_warning'] = $this->error['warning'];
} else {
	$this->data['error_warning'] = '';
}

if (isset($this->session->data['success'])) {
	$this->data['success'] = $this->session->data['success'];

	unset($this->session->data['success']);
} else {
	$this->data['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_to'])) {
	$url .= '&filter_price_to=' . $this->request->get['filter_price_to'];
}

if (isset($this->request->get['filter_quantity'])) {
	$url .= '&filter_quantity=' . $this->request->get['filter_quantity'];
}

if (isset($this->request->get['filter_quantity_to'])) {
	$url .= '&filter_quantity_to=' . $this->request->get['filter_quantity_to'];
}

if (isset($this->request->get['filter_status'])) {
	$url .= '&filter_status=' . $this->request->get['filter_status'];
}

if (isset($this->request->get['filter_sku'])) {
	$url .= '&filter_sku=' . $this->request->get['filter_sku'];
}

if (isset($this->request->get['filter_desc'])) {
	$url .= '&filter_desc=' . $this->request->get['filter_desc'];
}

if (isset($this->request->get['filter_category'])) {
	$url .= '&filter_category=' . $this->request->get['filter_category'];
}

if (isset($this->request->get['filter_manufacturer'])) {
	$url .= '&filter_manufacturer=' . $this->request->get['filter_manufacturer'];
}

if (isset($this->request->get['filter_marketplace'])) {
	$url .= '&filter_marketplace=' . $this->request->get['filter_marketplace'];
}

if ($order == 'ASC') {
	$url .= '&order=DESC';
} else {
	$url .= '&order=ASC';
}

if (isset($this->request->get['page'])) {
	$url .= '&page=' . $this->request->get['page'];
}

$this->data['sort_name'] = $this->url->link('extension/openbay/itemList', 'token=' . $this->session->data['token'] . '&sort=pd.name' . $url, 'SSL');
$this->data['sort_model'] = $this->url->link('extension/openbay/itemList', 'token=' . $this->session->data['token'] . '&sort=p.model' . $url, 'SSL');
$this->data['sort_price'] = $this->url->link('extension/openbay/itemList', 'token=' . $this->session->data['token'] . '&sort=p.price' . $url, 'SSL');
$this->data['sort_quantity'] = $this->url->link('extension/openbay/itemList', 'token=' . $this->session->data['token'] . '&sort=p.quantity' . $url, 'SSL');
$this->data['sort_status'] = $this->url->link('extension/openbay/itemList', 'token=' . $this->session->data['token'] . '&sort=p.status' . $url, 'SSL');
$this->data['sort_order'] = $this->url->link('extension/openbay/itemList', 'token=' . $this->session->data['token'] . '&sort=p.sort_order' . $url, 'SSL');

$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_to'])) {
	$url .= '&filter_price_to=' . $this->request->get['filter_price_to'];
}

if (isset($this->request->get['filter_quantity'])) {
	$url .= '&filter_quantity=' . $this->request->get['filter_quantity'];
}

if (isset($this->request->get['filter_quantity_to'])) {
	$url .= '&filter_quantity_to=' . $this->request->get['filter_quantity_to'];
}

if (isset($this->request->get['filter_status'])) {
	$url .= '&filter_status=' . $this->request->get['filter_status'];
}

if (isset($this->request->get['filter_sku'])) {
	$url .= '&filter_sku=' . $this->request->get['filter_sku'];
}

if (isset($this->request->get['filter_desc'])) {
	$url .= '&filter_desc=' . $this->request->get['filter_desc'];
}

if (isset($this->request->get['filter_category'])) {
	$url .= '&filter_category=' . $this->request->get['filter_category'];
}

if (isset($this->request->get['filter_manufacturer'])) {
	$url .= '&filter_manufacturer=' . $this->request->get['filter_manufacturer'];
}

if (isset($this->request->get['filter_marketplace'])) {
	$url .= '&filter_marketplace=' . $this->request->get['filter_marketplace'];
}

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_admin_limit');
$pagination->text = $this->language->get('text_pagination');
$pagination->url = $this->url->link('extension/openbay/itemList', 'token=' . $this->session->data['token'] . $url . '&page={page}', 'SSL');

$this->data['pagination'] = $pagination->render();

$this->data['filter_name'] = $filter_name;
$this->data['filter_model'] = $filter_model;
$this->data['filter_price'] = $filter_price;
$this->data['filter_price_to'] = $filter_price_to;
$this->data['filter_quantity'] = $filter_quantity;
$this->data['filter_quantity_to'] = $filter_quantity_to;
$this->data['filter_status'] = $filter_status;
$this->data['filter_sku'] = $filter_sku;
$this->data['filter_desc'] = $filter_desc;
$this->data['filter_category'] = $filter_category;
$this->data['filter_manufacturer'] = $filter_manufacturer;
$this->data['filter_marketplace'] = $filter_marketplace;

$this->data['sort'] = $sort;
$this->data['order'] = $order;

$this->template = 'openbay/openbay_itemlist.tpl';
$this->children = array(
	'common/header',
	'common/footer'
);

$this->response->setOutput($this->render());