2014-08-15 13:35:22 +04:00
|
|
|
<?php
|
|
|
|
|
2016-01-29 17:59:53 +03:00
|
|
|
require_once DIR_SYSTEM . 'library/retailcrm/bootstrap.php';
|
2014-08-15 13:35:22 +04:00
|
|
|
|
2016-02-09 04:22:06 +03:00
|
|
|
/**
|
|
|
|
* Class ControllerModule
|
|
|
|
*/
|
2015-07-23 13:14:23 +03:00
|
|
|
class ControllerModuleRetailcrm extends Controller
|
|
|
|
{
|
2016-02-09 04:22:06 +03:00
|
|
|
private $_error = array();
|
2015-07-23 00:27:20 +03:00
|
|
|
protected $log, $statuses, $payments, $deliveryTypes, $retailcrm;
|
|
|
|
public $children, $template;
|
2014-08-15 13:35:22 +04:00
|
|
|
|
2016-02-09 04:22:06 +03:00
|
|
|
/**
|
|
|
|
* Install method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2015-07-23 13:14:23 +03:00
|
|
|
public function install()
|
|
|
|
{
|
2014-08-15 13:35:22 +04:00
|
|
|
$this->load->model('setting/setting');
|
2016-02-09 04:22:06 +03:00
|
|
|
$this->model_setting_setting
|
|
|
|
->editSetting('retailcrm', array('retailcrm_status' => 1));
|
2014-08-15 13:35:22 +04:00
|
|
|
}
|
|
|
|
|
2016-02-09 04:22:06 +03:00
|
|
|
/**
|
|
|
|
* Uninstall method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2015-07-23 13:14:23 +03:00
|
|
|
public function uninstall()
|
|
|
|
{
|
2014-08-15 13:35:22 +04:00
|
|
|
$this->load->model('setting/setting');
|
2016-02-09 04:22:06 +03:00
|
|
|
$this->model_setting_setting
|
|
|
|
->editSetting('retailcrm', array('retailcrm_status' => 0));
|
2014-08-15 13:35:22 +04:00
|
|
|
}
|
|
|
|
|
2016-02-09 04:22:06 +03:00
|
|
|
/**
|
|
|
|
* Setup page
|
|
|
|
*/
|
2015-07-23 13:14:23 +03:00
|
|
|
public function index()
|
|
|
|
{
|
2014-08-15 13:35:22 +04:00
|
|
|
|
|
|
|
$this->load->model('setting/setting');
|
|
|
|
$this->load->model('setting/extension');
|
2015-06-26 18:07:36 +03:00
|
|
|
$this->load->model('retailcrm/references');
|
|
|
|
$this->load->language('module/retailcrm');
|
2014-08-15 13:35:22 +04:00
|
|
|
$this->document->setTitle($this->language->get('heading_title'));
|
2015-06-26 18:07:36 +03:00
|
|
|
$this->document->addStyle('/admin/view/stylesheet/retailcrm.css');
|
2014-08-15 13:35:22 +04:00
|
|
|
|
2016-01-29 17:59:53 +03:00
|
|
|
if ($this->request->server['REQUEST_METHOD'] == 'POST' && $this->validate()) {
|
|
|
|
$this->model_setting_setting->editSetting('retailcrm', $this->request->post);
|
2014-08-15 13:35:22 +04:00
|
|
|
$this->session->data['success'] = $this->language->get('text_success');
|
2016-01-29 17:59:53 +03:00
|
|
|
$this->redirect($this->url->link('module/retailcrm', 'token=' . $this->session->data['token'], 'SSL'));
|
2014-08-15 13:35:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
$text_strings = array(
|
|
|
|
'heading_title',
|
|
|
|
'text_enabled',
|
|
|
|
'text_disabled',
|
|
|
|
'button_save',
|
|
|
|
'button_cancel',
|
|
|
|
'text_notice',
|
2015-06-26 18:07:36 +03:00
|
|
|
'retailcrm_url',
|
|
|
|
'retailcrm_apikey',
|
|
|
|
'retailcrm_base_settings',
|
|
|
|
'retailcrm_dict_settings',
|
|
|
|
'retailcrm_dict_delivery',
|
|
|
|
'retailcrm_dict_status',
|
|
|
|
'retailcrm_dict_payment',
|
2014-08-15 13:35:22 +04:00
|
|
|
);
|
|
|
|
|
|
|
|
foreach ($text_strings as $text) {
|
|
|
|
$this->data[$text] = $this->language->get($text);
|
|
|
|
}
|
|
|
|
|
2015-06-26 18:07:36 +03:00
|
|
|
$this->data['retailcrm_errors'] = array();
|
2016-01-29 17:59:53 +03:00
|
|
|
$this->data['saved_settings'] = $this->model_setting_setting->getSetting('retailcrm');
|
|
|
|
|
2016-02-09 04:22:06 +03:00
|
|
|
$url = isset($this->data['saved_settings']['retailcrm_url'])
|
|
|
|
? $this->data['saved_settings']['retailcrm_url']
|
|
|
|
: null;
|
|
|
|
$key = isset($this->data['saved_settings']['retailcrm_apikey'])
|
|
|
|
? $this->data['saved_settings']['retailcrm_apikey']
|
|
|
|
: null;
|
2014-08-15 13:35:22 +04:00
|
|
|
|
2016-01-29 17:59:53 +03:00
|
|
|
if (!empty($url) && !empty($key)) {
|
2014-08-15 13:35:22 +04:00
|
|
|
|
2016-01-29 17:59:53 +03:00
|
|
|
$this->retailcrm = new RetailcrmProxy($url, $key, DIR_SYSTEM . 'logs/retailcrm.log');
|
2014-08-15 13:35:22 +04:00
|
|
|
|
2016-01-29 17:59:53 +03:00
|
|
|
$this->data['delivery'] = $this->model_retailcrm_references->getDeliveryTypes();
|
|
|
|
$this->data['statuses'] = $this->model_retailcrm_references->getOrderStatuses();
|
|
|
|
$this->data['payments'] = $this->model_retailcrm_references->getPaymentTypes();
|
2014-08-15 13:35:22 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$config_data = array(
|
2015-06-26 18:07:36 +03:00
|
|
|
'retailcrm_status'
|
2014-08-15 13:35:22 +04:00
|
|
|
);
|
|
|
|
|
|
|
|
foreach ($config_data as $conf) {
|
|
|
|
if (isset($this->request->post[$conf])) {
|
|
|
|
$this->data[$conf] = $this->request->post[$conf];
|
|
|
|
} else {
|
|
|
|
$this->data[$conf] = $this->config->get($conf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($this->error['warning'])) {
|
|
|
|
$this->data['error_warning'] = $this->error['warning'];
|
|
|
|
} else {
|
|
|
|
$this->data['error_warning'] = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->data['breadcrumbs'] = array();
|
|
|
|
|
|
|
|
$this->data['breadcrumbs'][] = array(
|
|
|
|
'text' => $this->language->get('text_home'),
|
2015-07-23 13:14:23 +03:00
|
|
|
'href' => $this->url->link(
|
|
|
|
'common/home',
|
|
|
|
'token=' . $this->session->data['token'], 'SSL'
|
|
|
|
),
|
2014-08-15 13:35:22 +04:00
|
|
|
'separator' => false
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->data['breadcrumbs'][] = array(
|
|
|
|
'text' => $this->language->get('text_module'),
|
2015-07-23 13:14:23 +03:00
|
|
|
'href' => $this->url->link(
|
|
|
|
'extension/module',
|
|
|
|
'token=' . $this->session->data['token'], 'SSL'
|
|
|
|
),
|
2014-08-15 13:35:22 +04:00
|
|
|
'separator' => ' :: '
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->data['breadcrumbs'][] = array(
|
|
|
|
'text' => $this->language->get('heading_title'),
|
2015-07-23 13:14:23 +03:00
|
|
|
'href' => $this->url->link(
|
|
|
|
'module/retailcrm',
|
|
|
|
'token=' . $this->session->data['token'], 'SSL'
|
|
|
|
),
|
2014-08-15 13:35:22 +04:00
|
|
|
'separator' => ' :: '
|
|
|
|
);
|
|
|
|
|
2015-07-23 13:14:23 +03:00
|
|
|
$this->data['action'] = $this->url->link(
|
|
|
|
'module/retailcrm',
|
|
|
|
'token=' . $this->session->data['token'], 'SSL'
|
|
|
|
);
|
2014-08-15 13:35:22 +04:00
|
|
|
|
2015-07-23 13:14:23 +03:00
|
|
|
$this->data['cancel'] = $this->url->link(
|
|
|
|
'extension/module',
|
|
|
|
'token=' . $this->session->data['token'], 'SSL'
|
|
|
|
);
|
2014-08-15 13:35:22 +04:00
|
|
|
|
|
|
|
|
|
|
|
$this->data['modules'] = array();
|
|
|
|
|
2015-06-26 18:07:36 +03:00
|
|
|
if (isset($this->request->post['retailcrm_module'])) {
|
|
|
|
$this->data['modules'] = $this->request->post['retailcrm_module'];
|
|
|
|
} elseif ($this->config->get('retailcrm_module')) {
|
|
|
|
$this->data['modules'] = $this->config->get('retailcrm_module');
|
2014-08-15 13:35:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->load->model('design/layout');
|
|
|
|
|
|
|
|
$this->data['layouts'] = $this->model_design_layout->getLayouts();
|
|
|
|
|
2015-06-26 18:07:36 +03:00
|
|
|
$this->template = 'module/retailcrm.tpl';
|
2014-08-15 13:35:22 +04:00
|
|
|
$this->children = array(
|
|
|
|
'common/header',
|
|
|
|
'common/footer',
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->response->setOutput($this->render());
|
|
|
|
}
|
|
|
|
|
2016-02-09 04:22:06 +03:00
|
|
|
/**
|
|
|
|
* History method
|
|
|
|
*/
|
2015-06-26 18:07:36 +03:00
|
|
|
public function history()
|
2014-08-18 18:14:04 +04:00
|
|
|
{
|
2016-01-29 17:59:53 +03:00
|
|
|
if (file_exists(DIR_APPLICATION . 'model/retailcrm/custom/history.php')) {
|
2015-07-23 13:14:23 +03:00
|
|
|
$this->load->model('retailcrm/custom/history');
|
|
|
|
$this->model_retailcrm_custom_history->request();
|
|
|
|
} else {
|
|
|
|
$this->load->model('retailcrm/history');
|
|
|
|
$this->model_retailcrm_history->request();
|
|
|
|
}
|
2014-08-18 18:14:04 +04:00
|
|
|
}
|
|
|
|
|
2016-02-09 04:22:06 +03:00
|
|
|
/**
|
|
|
|
* ICML generation
|
|
|
|
*/
|
2015-06-26 18:07:36 +03:00
|
|
|
public function icml()
|
2014-08-27 18:06:19 +04:00
|
|
|
{
|
2016-01-29 17:59:53 +03:00
|
|
|
if (file_exists(DIR_APPLICATION . 'model/retailcrm/custom/icml.php')) {
|
2015-07-23 13:14:23 +03:00
|
|
|
$this->load->model('retailcrm/custom/icml');
|
|
|
|
$this->model_retailcrm_custom_icml->generateICML();
|
|
|
|
} else {
|
|
|
|
$this->load->model('retailcrm/icml');
|
|
|
|
$this->model_retailcrm_icml->generateICML();
|
|
|
|
}
|
2014-08-19 07:56:17 +04:00
|
|
|
}
|
|
|
|
|
2016-02-09 04:22:06 +03:00
|
|
|
/**
|
|
|
|
* Validate
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2015-07-23 13:14:23 +03:00
|
|
|
private function validate()
|
|
|
|
{
|
2015-06-26 18:07:36 +03:00
|
|
|
if (!$this->user->hasPermission('modify', 'module/retailcrm')) {
|
2016-02-09 04:22:06 +03:00
|
|
|
$this->_error['warning'] = $this->language->get('error_permission');
|
2014-08-15 13:35:22 +04:00
|
|
|
}
|
|
|
|
|
2016-02-09 04:22:06 +03:00
|
|
|
if (!$this->_error) {
|
2014-08-15 13:35:22 +04:00
|
|
|
return TRUE;
|
|
|
|
} else {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
2014-09-03 13:03:25 +04:00
|
|
|
}
|