This commit is contained in:
Alex Lushpai 2016-02-09 04:22:06 +03:00
parent 41d75b8196
commit 43b173ace5
3 changed files with 321 additions and 253 deletions

View File

@ -2,24 +2,42 @@
require_once DIR_SYSTEM . 'library/retailcrm/bootstrap.php'; require_once DIR_SYSTEM . 'library/retailcrm/bootstrap.php';
/**
* Class ControllerModule
*/
class ControllerModuleRetailcrm extends Controller class ControllerModuleRetailcrm extends Controller
{ {
private $error = array(); private $_error = array();
protected $log, $statuses, $payments, $deliveryTypes, $retailcrm; protected $log, $statuses, $payments, $deliveryTypes, $retailcrm;
public $children, $template; public $children, $template;
/**
* Install method
*
* @return void
*/
public function install() public function install()
{ {
$this->load->model('setting/setting'); $this->load->model('setting/setting');
$this->model_setting_setting->editSetting('retailcrm', array('retailcrm_status' => 1)); $this->model_setting_setting
->editSetting('retailcrm', array('retailcrm_status' => 1));
} }
/**
* Uninstall method
*
* @return void
*/
public function uninstall() public function uninstall()
{ {
$this->load->model('setting/setting'); $this->load->model('setting/setting');
$this->model_setting_setting->editSetting('retailcrm', array('retailcrm_status' => 0)); $this->model_setting_setting
->editSetting('retailcrm', array('retailcrm_status' => 0));
} }
/**
* Setup page
*/
public function index() public function index()
{ {
@ -59,8 +77,12 @@ class ControllerModuleRetailcrm extends Controller
$this->data['retailcrm_errors'] = array(); $this->data['retailcrm_errors'] = array();
$this->data['saved_settings'] = $this->model_setting_setting->getSetting('retailcrm'); $this->data['saved_settings'] = $this->model_setting_setting->getSetting('retailcrm');
$url = $this->data['saved_settings']['retailcrm_url']; $url = isset($this->data['saved_settings']['retailcrm_url'])
$key = $this->data['saved_settings']['retailcrm_apikey']; ? $this->data['saved_settings']['retailcrm_url']
: null;
$key = isset($this->data['saved_settings']['retailcrm_apikey'])
? $this->data['saved_settings']['retailcrm_apikey']
: null;
if (!empty($url) && !empty($key)) { if (!empty($url) && !empty($key)) {
@ -151,6 +173,9 @@ class ControllerModuleRetailcrm extends Controller
$this->response->setOutput($this->render()); $this->response->setOutput($this->render());
} }
/**
* History method
*/
public function history() public function history()
{ {
if (file_exists(DIR_APPLICATION . 'model/retailcrm/custom/history.php')) { if (file_exists(DIR_APPLICATION . 'model/retailcrm/custom/history.php')) {
@ -162,6 +187,9 @@ class ControllerModuleRetailcrm extends Controller
} }
} }
/**
* ICML generation
*/
public function icml() public function icml()
{ {
if (file_exists(DIR_APPLICATION . 'model/retailcrm/custom/icml.php')) { if (file_exists(DIR_APPLICATION . 'model/retailcrm/custom/icml.php')) {
@ -173,13 +201,18 @@ class ControllerModuleRetailcrm extends Controller
} }
} }
/**
* Validate
*
* @return bool
*/
private function validate() private function validate()
{ {
if (!$this->user->hasPermission('modify', 'module/retailcrm')) { if (!$this->user->hasPermission('modify', 'module/retailcrm')) {
$this->error['warning'] = $this->language->get('error_permission'); $this->_error['warning'] = $this->language->get('error_permission');
} }
if (!$this->error) { if (!$this->_error) {
return TRUE; return TRUE;
} else { } else {
return FALSE; return FALSE;

View File

@ -8,7 +8,7 @@ class ModelRetailcrmHistory extends Model
$this->load->model('setting/store'); $this->load->model('setting/store');
$this->load->model('sale/order'); $this->load->model('sale/order');
$this->load->model('sale/customer'); $this->load->model('sale/customer');
$this->load->model('retailcrm/tools'); $this->load->model('retailcrm/references');
$this->load->model('catalog/product'); $this->load->model('catalog/product');
$this->load->model('localisation/zone'); $this->load->model('localisation/zone');
@ -17,7 +17,9 @@ class ModelRetailcrmHistory extends Model
$settings = $this->model_setting_setting->getSetting('retailcrm'); $settings = $this->model_setting_setting->getSetting('retailcrm');
$settings['domain'] = parse_url(HTTP_SERVER, PHP_URL_HOST); $settings['domain'] = parse_url(HTTP_SERVER, PHP_URL_HOST);
if (!empty($settings['retailcrm_url']) && !empty($settings['retailcrm_apikey'])) { if (!empty($settings['retailcrm_url'])
&& !empty($settings['retailcrm_apikey'])
) {
$crm = new RetailcrmProxy( $crm = new RetailcrmProxy(
$settings['retailcrm_url'], $settings['retailcrm_url'],
$settings['retailcrm_apikey'], $settings['retailcrm_apikey'],
@ -25,6 +27,7 @@ class ModelRetailcrmHistory extends Model
); );
$orders = $crm->ordersHistory(); $orders = $crm->ordersHistory();
$ordersIdsFix = array(); $ordersIdsFix = array();
$customersIdsFix = array(); $customersIdsFix = array();
$subtotalSettings = $this->model_setting_setting->getSetting('sub_total'); $subtotalSettings = $this->model_setting_setting->getSetting('sub_total');
@ -35,64 +38,63 @@ class ModelRetailcrmHistory extends Model
$payment = array_flip($settings['retailcrm_payment']); $payment = array_flip($settings['retailcrm_payment']);
$status = array_flip($settings['retailcrm_status']); $status = array_flip($settings['retailcrm_status']);
$ocPayment = $this->model_retailcrm_tools->getOpercartPaymentTypes(); $ocPayment = $this->model_retailcrm_references
$ocDelivery = $this->model_retailcrm_tools->getOpercartDeliveryMethods(); ->getOpercartPaymentTypes();
$ocDelivery = $this->model_retailcrm_references
->getOpercartDeliveryTypes();
$zones = $this->model_localisation_zone->getZones(); $zones = $this->model_localisation_zone->getZones();
foreach ($orders as $order) { foreach ($orders['orders'] as $order) {
if (empty($order['deleted'])) { if (isset($order['deleted'])) continue;
if (isset($order['externalId'])) {
$order = $crm->ordersGet($order['externalId']);
}
$data = array(); $data = array();
$customer_id = (!empty($order['customer']['externalId'])) $customer_id = (!empty($order['customer']['externalId']))
? $order['customer']['externalId'] ? $order['customer']['externalId']
: '' : '';
;
if (isset($order['externalId'])) {
/*
* opercart developers believe that to remove all
* products from the order during the editing is a good
* idea...
*
* so we have to get order data from crm
*
*/
$order = $crm->getOrder($order['externalId']);
} else {
if ($customer_id == '') { if ($customer_id == '') {
$cData = array( $cData = array(
'customer_group_id' => '1', 'customer_group_id' => '1',
'firstname' => $order['customer']['firstName'], 'firstname' => $order['customer']['firstName'],
'lastname' => (isset($order['customer']['lastName'])) 'lastname' => (isset($order['customer']['lastName']))
? $order['customer']['lastName'] ? $order['customer']['lastName']
: ' ' : ' ',
,
'email' => $order['customer']['email'], 'email' => $order['customer']['email'],
'telephone' => (isset($order['customer']['phones'][0]['number'])) 'telephone' => (
isset($order['customer']['phones'][0]['number'])
)
? $order['customer']['phones'][0]['number'] ? $order['customer']['phones'][0]['number']
: ' ' : ' ',
,
'newsletter' => 0, 'newsletter' => 0,
'password' => 'tmppass', 'password' => 'tmppass',
'status' => 1, 'status' => 1,
'address' => array( 'address' => array(
'firstname' => $order['customer']['firstName'], 'firstname' => $order['customer']['firstName'],
'lastname' => (isset($order['customer']['lastName'])) 'lastname' => (
isset($order['customer']['lastName'])
)
? $order['customer']['lastName'] ? $order['customer']['lastName']
: ' ' : ' ',
,
'address_1' => $order['customer']['address']['text'], 'address_1' => $order['customer']['address']['text'],
'city' => isset($order['customer']['address']['city']) 'city' => isset(
$order['customer']['address']['city']
)
? $order['customer']['address']['city'] ? $order['customer']['address']['city']
: $order['delivery']['address']['city'] : $order['delivery']['address']['city'],
, 'postcode' => isset(
'postcode' => isset($order['customer']['address']['index']) $order['customer']['address']['index']
)
? $order['customer']['address']['index'] ? $order['customer']['address']['index']
: $order['delivery']['address']['index'] : $order['delivery']['address']['index'],
,
), ),
'tax_id' => '', 'tax_id' => '',
'zone_id' => '', 'zone_id' => '',
@ -100,8 +102,13 @@ class ModelRetailcrmHistory extends Model
$this->model_sale_customer->addCustomer($cData); $this->model_sale_customer->addCustomer($cData);
if (isset($order['customer']['email']) && $order['customer']['email'] != '') { if (isset($order['customer']['email'])
$tryToFind = $this->model_sale_customer->getCustomerByEmail($order['customer']['email']); && $order['customer']['email'] != ''
) {
$tryToFind = $this->model_sale_customer
->getCustomerByEmail(
$order['customer']['email']
);
$customer_id = $tryToFind['customer_id']; $customer_id = $tryToFind['customer_id'];
} else { } else {
$last = $this->model_sale_customer->getCustomers( $last = $this->model_sale_customer->getCustomers(
@ -110,47 +117,61 @@ class ModelRetailcrmHistory extends Model
$customer_id = $last[0]['customer_id']; $customer_id = $last[0]['customer_id'];
} }
$customersIdsFix[] = array('id' => $order['customer']['id'], 'externalId' => (int)$customer_id); $customersIdsFix[] = array(
} 'id' => $order['customer']['id'],
'externalId' => (int)$customer_id
);
} }
/* /*
* Build order data * Build order data
*/ */
$data['store_id'] = ($this->config->get('config_store_id') == null) $data['store_id'] = (
$this->config->get('config_store_id') == null
)
? 0 ? 0
: $this->config->get('config_store_id') : $this->config->get('config_store_id');
;
$data['customer'] = $order['customer']['firstName']; $data['customer'] = $order['customer']['firstName'];
$data['customer_id'] = $customer_id; $data['customer_id'] = $customer_id;
$data['customer_group_id'] = 1; $data['customer_group_id'] = 1;
$data['firstname'] = $order['firstName']; $data['firstname'] = $order['firstName'];
$data['lastname'] = (isset($order['lastName'])) ? $order['lastName'] : ' '; $data['lastname'] = (isset($order['lastName']))
? $order['lastName']
: ' ';
$data['email'] = $order['customer']['email']; $data['email'] = $order['customer']['email'];
$data['telephone'] = (isset($order['customer']['phones'][0]['number'])) $data['telephone'] = (
isset($order['customer']['phones'][0]['number'])
)
? $order['customer']['phones'][0]['number'] ? $order['customer']['phones'][0]['number']
: ' ' : ' ';
;
$data['comment'] = isset($order['customerComment']) ? $order['customerComment'] : ''; $data['comment'] = isset(
$order['customerComment']
)
? $order['customerComment']
: '';
$data['fax'] = ''; $data['fax'] = '';
$data['payment_address'] = '0'; $data['payment_address'] = '0';
$data['payment_firstname'] = $order['firstName']; $data['payment_firstname'] = $order['firstName'];
$data['payment_lastname'] = (isset($order['lastName'])) ? $order['lastName'] : ' '; $data['payment_lastname'] = (
isset($order['lastName'])
) ? $order['lastName'] : ' ';
$data['payment_address_1'] = $order['customer']['address']['text']; $data['payment_address_1'] = $order['customer']['address']['text'];
$data['payment_address_2'] = ''; $data['payment_address_2'] = '';
$data['payment_company'] = ''; $data['payment_company'] = '';
$data['payment_company_id'] = ''; $data['payment_company_id'] = '';
$data['payment_city'] = isset($order['customer']['address']['city']) $data['payment_city'] = isset(
$order['customer']['address']['city']
)
? $order['customer']['address']['city'] ? $order['customer']['address']['city']
: $order['delivery']['address']['city'] : $order['delivery']['address']['city'];
; $data['payment_postcode'] = isset(
$data['payment_postcode'] = isset($order['customer']['address']['index']) $order['customer']['address']['index']
)
? $order['customer']['address']['index'] ? $order['customer']['address']['index']
: $order['delivery']['address']['index'] : $order['delivery']['address']['index'];
;
/* /*
* Country & zone id detection * Country & zone id detection
@ -167,27 +188,29 @@ class ModelRetailcrmHistory extends Model
$region = $zone['zone_id']; $region = $zone['zone_id'];
} }
} }
} }
$data['payment_country_id'] = isset($order['customer']['address']['country']) $data['payment_country_id'] = isset(
$order['customer']['address']['country']
)
? $order['customer']['address']['country'] ? $order['customer']['address']['country']
: $order['delivery']['address']['country'] : $order['delivery']['address']['country'];
; $data['payment_zone_id'] = isset(
$data['payment_zone_id'] = isset($order['customer']['address']['region']) $order['customer']['address']['region']
)
? $order['customer']['address']['region'] ? $order['customer']['address']['region']
: $region : $region;
;
$data['shipping_country_id'] = $order['delivery']['address']['country']; $data['shipping_country_id'] = $order['delivery']['address']['country'];
$data['shipping_zone_id'] = $region; $data['shipping_zone_id'] = $region;
$data['shipping_address'] = '0'; $data['shipping_address'] = '0';
$data['shipping_firstname'] = $order['customer']['firstName']; $data['shipping_firstname'] = $order['customer']['firstName'];
$data['shipping_lastname'] = (isset($order['customer']['lastName'])) $data['shipping_lastname'] = (
isset($order['customer']['lastName'])
)
? $order['customer']['lastName'] ? $order['customer']['lastName']
: ' ' : ' ';
;
$data['shipping_address_1'] = $order['delivery']['address']['text']; $data['shipping_address_1'] = $order['delivery']['address']['text'];
$data['shipping_address_2'] = ''; $data['shipping_address_2'] = '';
$data['shipping_company'] = ''; $data['shipping_company'] = '';
@ -220,7 +243,8 @@ class ModelRetailcrmHistory extends Model
$data['order_product'] = array(); $data['order_product'] = array();
foreach ($order['items'] as $item) { foreach ($order['items'] as $item) {
$p = $this->model_catalog_product->getProduct($item['offer']['externalId']); $p = $this->model_catalog_product
->getProduct($item['offer']['externalId']);
$data['order_product'][] = array( $data['order_product'][] = array(
'product_id' => $item['offer']['externalId'], 'product_id' => $item['offer']['externalId'],
'name' => $item['offer']['name'], 'name' => $item['offer']['name'],
@ -236,7 +260,11 @@ class ModelRetailcrmHistory extends Model
); );
} }
$deliveryCost = isset($order['delivery']['cost']) ? $order['delivery']['cost'] : 0; $deliveryCost = isset(
$order['delivery']['cost']
)
? $order['delivery']['cost']
: 0;
$data['order_total'] = array( $data['order_total'] = array(
array( array(
@ -261,34 +289,41 @@ class ModelRetailcrmHistory extends Model
'title' => $this->language->get('column_total'), 'title' => $this->language->get('column_total'),
'value' => isset($order['totalSumm']) 'value' => isset($order['totalSumm'])
? $order['totalSumm'] ? $order['totalSumm']
: $order['summ'] + $deliveryCost : $order['summ'] + $deliveryCost,
,
'text' => isset($order['totalSumm']) 'text' => isset($order['totalSumm'])
? $order['totalSumm'] ? $order['totalSumm']
: $order['summ'] + $deliveryCost : $order['summ'] + $deliveryCost,
,
'sort_order' => $totalSettings['total_sort_order'] 'sort_order' => $totalSettings['total_sort_order']
) )
); );
$data['fromApi'] = true; $data['fromApi'] = true;
if (isset($order['externalId'])) { if (isset($order['externalId'])) {
if (array_key_exists($order['status'], $status)) { if (array_key_exists($order['status'], $status)) {
$data['order_status_id'] = $status[$order['status']]; $data['order_status_id'] = $status[$order['status']];
} else { } else {
$tmpOrder = $this->model_sale_order->getOrder($order['externalId']); $tmpOrder = $this->model_sale_order
->getOrder($order['externalId']);
$data['order_status_id'] = $tmpOrder['order_status_id']; $data['order_status_id'] = $tmpOrder['order_status_id'];
} }
$this->model_sale_order->editOrder($order['externalId'], $data); $this->model_sale_order
->editOrder($order['externalId'], $data);
} else { } else {
$data['order_status_id'] = 1; $data['order_status_id'] = 1;
$this->model_sale_order->addOrder($data); $this->model_sale_order->addOrder($data);
$last = $this->model_sale_order->getOrders($data = array('order' => 'DESC', 'limit' => 1));
$ordersIdsFix[] = array('id' => $order['id'], 'externalId' => (int) $last[0]['order_id']);
}
$last = $this->model_sale_order
->getOrders(
$data = array('order' => 'DESC', 'limit' => 1)
);
$ordersIdsFix[] = array(
'id' => $order['id'],
'externalId' => (int) $last[0]['order_id']
);
} }
} }

View File

@ -30,7 +30,7 @@ class ModelRetailcrmReferences extends Model
); );
} }
protected function getOpercartDeliveryTypes() public function getOpercartDeliveryTypes()
{ {
$deliveryMethods = array(); $deliveryMethods = array();
$files = glob(DIR_APPLICATION . 'controller/shipping/*.php'); $files = glob(DIR_APPLICATION . 'controller/shipping/*.php');
@ -52,7 +52,7 @@ class ModelRetailcrmReferences extends Model
return $deliveryMethods; return $deliveryMethods;
} }
protected function getOpercartOrderStatuses() public function getOpercartOrderStatuses()
{ {
$this->load->model('localisation/order_status'); $this->load->model('localisation/order_status');
@ -60,7 +60,7 @@ class ModelRetailcrmReferences extends Model
->getOrderStatuses(array()); ->getOrderStatuses(array());
} }
protected function getOpercartPaymentTypes() public function getOpercartPaymentTypes()
{ {
$paymentTypes = array(); $paymentTypes = array();
$files = glob(DIR_APPLICATION . 'controller/payment/*.php'); $files = glob(DIR_APPLICATION . 'controller/payment/*.php');
@ -82,7 +82,7 @@ class ModelRetailcrmReferences extends Model
return $paymentTypes; return $paymentTypes;
} }
protected function getApiDeliveryTypes() public function getApiDeliveryTypes()
{ {
$this->load->model('setting/setting'); $this->load->model('setting/setting');
$settings = $this->model_setting_setting->getSetting('retailcrm'); $settings = $this->model_setting_setting->getSetting('retailcrm');
@ -100,7 +100,7 @@ class ModelRetailcrmReferences extends Model
} }
} }
protected function getApiOrderStatuses() public function getApiOrderStatuses()
{ {
$this->load->model('setting/setting'); $this->load->model('setting/setting');
$settings = $this->model_setting_setting->getSetting('retailcrm'); $settings = $this->model_setting_setting->getSetting('retailcrm');
@ -118,7 +118,7 @@ class ModelRetailcrmReferences extends Model
} }
} }
protected function getApiPaymentTypes() public function getApiPaymentTypes()
{ {
$this->load->model('setting/setting'); $this->load->model('setting/setting');
$settings = $this->model_setting_setting->getSetting('retailcrm'); $settings = $this->model_setting_setting->getSetting('retailcrm');