diff --git a/admin/controller/module/retailcrm.php b/admin/controller/module/retailcrm.php
deleted file mode 100644
index 3daf847..0000000
--- a/admin/controller/module/retailcrm.php
+++ /dev/null
@@ -1,341 +0,0 @@
-
- * @license https://opensource.org/licenses/MIT MIT License
- * @link http://www.retailcrm.ru/docs/Developers/ApiVersion3
- */
-class ControllerModuleRetailcrm extends Controller
-{
- private $_error = array();
- protected $log, $statuses, $payments, $deliveryTypes, $retailcrm;
- public $children, $template;
-
- /**
- * Install method
- *
- * @return void
- */
- public function install()
- {
- $this->load->model('setting/setting');
- $this->model_setting_setting
- ->editSetting('retailcrm', array('retailcrm_status' => 1));
-
- $this->load->model('extension/event');
-
- $this->model_extension_event
- ->addEvent(
- 'retailcrm',
- version_compare(VERSION, '2.2', '>=') ? 'catalog/model/checkout/order/addOrder/after' : 'post.order.add',
- 'module/retailcrm/order_create'
- );
-
- $this->model_extension_event
- ->addEvent(
- 'retailcrm',
- version_compare(VERSION, '2.2', '>=') ? 'catalog/model/checkout/order/addOrderHistory/after' : 'post.order.history.add',
- 'module/retailcrm/order_edit'
- );
-
- $this->model_extension_event
- ->addEvent(
- 'retailcrm',
- version_compare(VERSION, '2.2', '>=') ? 'catalog/model/account/customer/addCustomer/after' : 'post.customer.add',
- 'module/retailcrm/customer_create'
- );
- }
-
- /**
- * Uninstall method
- *
- * @return void
- */
- public function uninstall()
- {
- $this->load->model('setting/setting');
- $this->model_setting_setting
- ->editSetting('retailcrm', array('retailcrm_status' => 0));
-
- $this->load->model('extension/event');
- $this->model_extension_event->deleteEvent('retailcrm');
- }
-
- /**
- * Setup page
- *
- * @return void
- */
- public function index()
- {
-
- $this->load->model('setting/setting');
- $this->load->model('extension/module');
- $this->load->model('retailcrm/references');
- $this->load->language('module/retailcrm');
- $this->document->setTitle($this->language->get('heading_title'));
- $this->document->addStyle('/admin/view/stylesheet/retailcrm.css');
-
- if ($this->request->server['REQUEST_METHOD'] == 'POST' && $this->validate()) {
- $this->model_setting_setting->editSetting(
- 'retailcrm',
- $this->request->post
- );
-
- $this->session->data['success'] = $this->language->get('text_success');
- $redirect = $this->url->link(
- 'module/retailcrm', 'token=' . $this->session->data['token'],
- 'SSL'
- );
-
- $this->response->redirect($redirect);
- }
-
- $text_strings = array(
- 'heading_title',
- 'text_enabled',
- 'text_disabled',
- 'button_save',
- 'button_cancel',
- 'text_notice',
- 'retailcrm_title',
- 'retailcrm_url',
- 'retailcrm_apikey',
- 'retailcrm_base_settings',
- 'retailcrm_dict_settings',
- 'retailcrm_dict_delivery',
- 'retailcrm_dict_status',
- 'retailcrm_dict_payment',
- );
-
- $this->load->model('extension/extension');
- $_data = &$data;
-
- foreach ($text_strings as $text) {
- $_data[$text] = $this->language->get($text);
- }
-
- $_data['retailcrm_errors'] = array();
- $_data['saved_settings'] = $this->model_setting_setting
- ->getSetting('retailcrm');
-
- $url = isset($_data['saved_settings']['retailcrm_url'])
- ? $_data['saved_settings']['retailcrm_url']
- : null;
- $key = isset($_data['saved_settings']['retailcrm_apikey'])
- ? $_data['saved_settings']['retailcrm_apikey']
- : null;
-
- if (!empty($url) && !empty($key)) {
-
- $this->retailcrm = new RetailcrmProxy(
- $url,
- $key,
- DIR_SYSTEM . 'logs/retailcrm.log'
- );
-
- $_data['delivery'] = $this->model_retailcrm_references
- ->getDeliveryTypes();
- $_data['statuses'] = $this->model_retailcrm_references
- ->getOrderStatuses();
- $_data['payments'] = $this->model_retailcrm_references
- ->getPaymentTypes();
-
- }
-
- $config_data = array(
- 'retailcrm_status'
- );
-
- foreach ($config_data as $conf) {
- if (isset($this->request->post[$conf])) {
- $_data[$conf] = $this->request->post[$conf];
- } else {
- $_data[$conf] = $this->config->get($conf);
- }
- }
-
- if (isset($this->error['warning'])) {
- $_data['error_warning'] = $this->error['warning'];
- } else {
- $_data['error_warning'] = '';
- }
-
- $_data['breadcrumbs'] = array();
-
- $_data['breadcrumbs'][] = array(
- 'text' => $this->language->get('text_home'),
- 'href' => $this->url->link(
- 'common/home',
- 'token=' . $this->session->data['token'], 'SSL'
- ),
- 'separator' => false
- );
-
- $_data['breadcrumbs'][] = array(
- 'text' => $this->language->get('text_module'),
- 'href' => $this->url->link(
- 'extension/module',
- 'token=' . $this->session->data['token'], 'SSL'
- ),
- 'separator' => ' :: '
- );
-
- $_data['breadcrumbs'][] = array(
- 'text' => $this->language->get('retailcrm_title'),
- 'href' => $this->url->link(
- 'module/retailcrm',
- 'token=' . $this->session->data['token'], 'SSL'
- ),
- 'separator' => ' :: '
- );
-
- $_data['action'] = $this->url->link(
- 'module/retailcrm',
- 'token=' . $this->session->data['token'], 'SSL'
- );
-
- $_data['cancel'] = $this->url->link(
- 'extension/module',
- 'token=' . $this->session->data['token'], 'SSL'
- );
-
- $_data['modules'] = array();
-
- if (isset($this->request->post['retailcrm_module'])) {
- $_data['modules'] = $this->request->post['retailcrm_module'];
- } elseif ($this->config->get('retailcrm_module')) {
- $_data['modules'] = $this->config->get('retailcrm_module');
- }
-
- $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('module/retailcrm.tpl', $_data)
- );
- }
-
- /**
- * History method
- *
- * @return void
- */
- public function history()
- {
- if (file_exists(DIR_APPLICATION . 'model/retailcrm/custom/history.php')) {
- $this->load->model('retailcrm/custom/history');
- $this->model_retailcrm_custom_history->request();
- } else {
- $this->load->model('retailcrm/history');
- $this->model_retailcrm_history->request();
- }
- }
-
- /**
- * ICML generation
- *
- * @return void
- */
- public function icml()
- {
- if (file_exists(DIR_APPLICATION . 'model/retailcrm/custom/icml.php')) {
- $this->load->model('retailcrm/custom/icml');
- $this->model_retailcrm_custom_icml->generateICML();
- } else {
- $this->load->model('retailcrm/icml');
- $this->model_retailcrm_icml->generateICML();
- }
- }
-
- /**
- * Create order on event
- *
- * @param int $order_id order identificator
- *
- * @return void
- */
- public function order_create($order_id)
- {
- $this->load->model('checkout/order');
- $this->load->model('account/order');
-
- $data = $this->model_checkout_order->getOrder($order_id);
- $data['products'] = $this->model_account_order->getOrderProducts($order_id);
-
- if (!isset($data['fromApi'])) {
- $this->load->model('setting/setting');
- $status = $this->model_setting_setting->getSetting('retailcrm');
- $data['order_status'] = $status['retailcrm_status'][$data['order_status_id']];
-
- $this->load->model('retailcrm/order');
- $this->model_retailcrm_order->sendToCrm($data, $data['order_id']);
- }
- }
-
- /**
- * Export orders
- *
- *
- */
- public function export() {
- if(version_compare(VERSION, '2.1', '<')) {
- $this->load->model('sale/customer');
- $customers = $this->model_sale_customer->getCustomers();
- } else {
- $this->load->model('customer/customer');
- $customers = $this->model_customer_customer->getCustomers();
- }
-
- $this->load->model('retailcrm/customer');
- $this->model_retailcrm_customer->uploadToCrm($customers);
-
- $this->load->model('sale/order');
- $orders = $this->model_sale_order->getOrders();
-
- $fullOrders = array();
- foreach($orders as $order) {
- $fullOrder = $this->model_sale_order->getOrder($order['order_id']);
-
- $fullOrder['order_total'] = $this->model_sale_order->getOrderTotals($order['order_id']);
-
- $fullOrder['products'] = $this->model_sale_order->getOrderProducts($order['order_id']);
- foreach($fullOrder['products'] as $key=>$product) {
- $fullOrder['products'][$key]['option'] = $this->model_sale_order->getOrderOptions($product['order_id'], $product['order_product_id']);
- }
-
- $fullOrders[] = $fullOrder;
- }
-
- $this->load->model('retailcrm/order');
- $this->model_retailcrm_order->uploadToCrm($fullOrders);
- }
-
- /**
- * Validate
- *
- * @return bool
- */
- private function validate()
- {
- if (!$this->user->hasPermission('modify', 'module/retailcrm')) {
- $this->_error['warning'] = $this->language->get('error_permission');
- }
-
- if (!$this->_error) {
- return true;
- } else {
- return false;
- }
- }
-}
diff --git a/admin/language/english/module/retailcrm.php b/admin/language/english/module/retailcrm.php
deleted file mode 100644
index f1baabb..0000000
--- a/admin/language/english/module/retailcrm.php
+++ /dev/null
@@ -1,31 +0,0 @@
-load->model('setting/setting');
- $settings = $this->model_setting_setting->getSetting('retailcrm');
-
- if(empty($customers))
- return false;
- if(empty($settings['retailcrm_url']) || empty($settings['retailcrm_apikey']))
- return false;
-
- require_once DIR_SYSTEM . 'library/retailcrm/bootstrap.php';
-
- $this->retailcrmApi = new RetailcrmProxy(
- $settings['retailcrm_url'],
- $settings['retailcrm_apikey'],
- DIR_SYSTEM . 'logs/retailcrm.log'
- );
-
- $customersToCrm = array();
-
- foreach($customers as $customer) {
- $customersToCrm[] = $this->process($customer);
- }
-
- $chunkedCustomers = array_chunk($customersToCrm, 50);
-
- foreach($chunkedCustomers as $customersPart) {
- $this->retailcrmApi->customersUpload($customersPart);
- }
- }
-
- private function process($customer) {
- $customerToCrm = array(
- 'externalId' => $customer['customer_id'],
- 'firstName' => $customer['firstname'],
- 'lastName' => $customer['lastname'],
- 'email' => $customer['email'],
- 'phones' => array(
- array(
- 'number' => $customer['telephone']
- )
- ),
- 'createdAt' => $customer['date_added']
- );
-
- return $customerToCrm;
- }
-}
diff --git a/admin/model/retailcrm/history.php b/admin/model/retailcrm/history.php
deleted file mode 100644
index b984635..0000000
--- a/admin/model/retailcrm/history.php
+++ /dev/null
@@ -1,470 +0,0 @@
-load->model('setting/setting');
- $this->load->model('setting/store');
- $this->load->model('user/api');
- $this->load->model('sale/order');
- if (version_compare(VERSION, '2.1.0.0', '>=')) {
- $this->load->model('customer/customer');
- } else {
- $this->load->model('sale/customer');
- }
- $this->load->model('retailcrm/references');
- $this->load->model('catalog/product');
- $this->load->model('catalog/option');
- $this->load->model('localisation/zone');
-
- $this->load->language('module/retailcrm');
-
- $settings = $this->model_setting_setting->getSetting('retailcrm');
- $history = $this->model_setting_setting->getSetting('retailcrm_history');
- $settings['domain'] = parse_url(HTTP_SERVER, PHP_URL_HOST);
-
- $url = isset($settings['retailcrm_url']) ? $settings['retailcrm_url'] : null;
- $key = isset($settings['retailcrm_apikey']) ? $settings['retailcrm_apikey'] : null;
-
- if (empty($url) || empty($key)) {
- $this->log->addNotice('You need to configure retailcrm module first.');
- return false;
- }
-
- $this->opencartApiClient = new OpencartApiClient($this->registry);
-
- $crm = new RetailcrmProxy(
- $settings['retailcrm_url'],
- $settings['retailcrm_apikey'],
- DIR_SYSTEM . 'logs/retailcrm.log'
- );
-
- $lastRun = !empty($history['retailcrm_history'])
- ? new DateTime($history['retailcrm_history'])
- : new DateTime(date('Y-m-d H:i:s', strtotime('-1 days', strtotime(date('Y-m-d H:i:s')))));
-
- $packs = $crm->ordersHistory(array(
- 'startDate' => $lastRun->format('Y-m-d H:i:s'),
- ), 1, 100);
- if(!$packs->isSuccessful() && count($packs->history) <= 0)
- return false;
- $orders = RetailcrmHistoryHelper::assemblyOrder($packs->history);
-
- $generatedAt = $packs['generatedAt'];
-
- $this->subtotalSettings = $this->model_setting_setting->getSetting('sub_total');
- $this->totalSettings = $this->model_setting_setting->getSetting('total');
- $this->shippingSettings = $this->model_setting_setting->getSetting('shipping');
-
- $this->delivery = array_flip($settings['retailcrm_delivery']);
- $this->payment = array_flip($settings['retailcrm_payment']);
- $this->status = array_flip($settings['retailcrm_status']);
-
- $this->ocPayment = $this->model_retailcrm_references
- ->getOpercartPaymentTypes();
-
- $this->ocDelivery = $this->model_retailcrm_references
- ->getOpercartDeliveryTypes();
-
- $this->zones = $this->model_localisation_zone->getZones();
-
- $updatedOrders = array();
- $newOrders = array();
-
- foreach ($orders as $order) {
-
- if (isset($order['deleted'])) continue;
-
- if (isset($order['externalId'])) {
- $updatedOrders[] = $order['id'];
- } else {
- $newOrders[] = $order['id'];
- }
- }
-
- unset($orders);
-
- if (!empty($newOrders)) {
- $orders = $crm->ordersList($filter = array('ids' => $newOrders));
- if ($orders) {
- $this->createResult = $this->createOrders($orders['orders']);
- }
- }
-
- if (!empty($updatedOrders)) {
- $orders = $crm->ordersList($filter = array('ids' => $updatedOrders));
- if ($orders) {
- $this->updateOrders($orders['orders']);
- }
- }
-
- $this->model_setting_setting->editSetting('retailcrm_history', array('retailcrm_history' => $generatedAt));
-
- if (!empty($this->createResult['customers'])) {
- $crm->customersFixExternalIds($this->createResult['customers']);
- }
-
- if (!empty($this->createResult['orders'])) {
- $crm->ordersFixExternalIds($this->createResult['orders']);
- }
- }
-
- protected function updateOrders($orders)
- {
- foreach ($orders as $order) {
- $store = $this->config->get('config_store_id');
-
- $data = array();
-
- $data['store_id'] = $store == null ? 0 : $store;
- $data['customer'] = $order['firstName'];
- $data['customer_id'] = (!empty($order['customer']['externalId'])) ? $order['customer']['externalId'] : 0;
- $data['customer_group_id'] = 1;
- $data['firstname'] = $order['firstName'];
- $data['lastname'] = (!empty($order['lastName'])) ? $order['lastName'] : ' ';
- $data['email'] = $order['email'];
- $data['telephone'] = (!empty($order['phone'])) ? $order['phone'] : '';
- $data['comment'] = !empty($order['customerComment']) ? $order['customerComment'] : '';
- $data['fax'] = '';
-
- $data['payment_address'] = '0';
- $data['payment_firstname'] = $order['firstName'];
- $data['payment_lastname'] = (!empty($order['lastName'])) ? $order['lastName'] : ' ';
- $data['payment_address_1'] = isset($order['customer']['address']) ? $order['customer']['address']['text'] : '';
- $data['payment_address_2'] = '';
- $data['payment_company'] = '';
- $data['payment_company_id'] = '';
- $data['payment_city'] = !empty($order['customer']['address']['city']) ? $order['customer']['address']['city'] : $order['delivery']['address']['city'];
- $data['payment_postcode'] = !empty( $order['customer']['address']['index'] ) ? $order['customer']['address']['index'] : $order['delivery']['address']['index'];
-
- $region = '';
-
- if (is_int($order['delivery']['address']['region'])) {
- $region = $order['delivery']['address']['region'];
- } else {
- foreach ($this->zones as $zone) {
- if ($order['delivery']['address']['region'] == $zone['name']) {
- $region = $zone['zone_id'];
- }
- }
- }
-
- $data['payment_country_id'] = !empty($order['delivery']['address']['country']) ? $order['delivery']['address']['country'] : 0;
- $data['payment_zone_id'] = !empty($order['delivery']['address']['region']) ? $order['delivery']['address']['region'] : $region;
-
- $data['shipping_country_id'] = !empty($order['delivery']['address']['country']) ? $order['delivery']['address']['country'] : 0;
- $data['shipping_zone_id'] = $region;
-
- $data['shipping_address'] = '0';
- $data['shipping_firstname'] = $order['firstName'];
- $data['shipping_lastname'] = (!empty($order['lastName'])) ? $order['lastName'] : ' ';
- $data['shipping_address_1'] = $order['delivery']['address']['text'];
- $data['shipping_address_2'] = '';
- $data['shipping_company'] = '';
- $data['shipping_company_id'] = '';
- $data['shipping_city'] = $order['delivery']['address']['city'];
- $data['shipping_postcode'] = $order['delivery']['address']['index'];
-
- $data['shipping'] = $this->delivery[$order['delivery']['code']];
- $data['shipping_method'] = $this->ocDelivery[$data['shipping']];
- $data['shipping_code'] = $this->delivery[$order['delivery']['code']];
-
- $data['payment'] = $this->payment[$order['paymentType']];
- $data['payment_method'] = $this->ocPayment[$data['payment']];
- $data['payment_code'] = $this->payment[$order['paymentType']];
-
- // this data will not retrive from crm for now
- $data['tax'] = '';
- $data['tax_id'] = '';
- $data['product'] = '';
- $data['product_id'] = '';
- $data['reward'] = '';
- $data['affiliate'] = '';
- $data['affiliate_id'] = '';
- $data['payment_tax_id'] = '';
- $data['order_product_id'] = '';
- $data['payment_company'] = '';
- $data['payment_company_id'] = '';
- $data['company'] = '';
- $data['company_id'] = '';
-
- $data['order_product'] = array();
-
- foreach ($order['items'] as $item) {
- //$product = $this->model_catalog_product->getProduct($item['offer']['externalId']);
- $productId = $item['offer']['externalId'];
- $options = array();
- if(mb_strpos($item['offer']['externalId'], '#') > 1) {
- $offer = explode('#', $item['offer']['externalId']);
- $productId = $offer[0];
- $optionsFromCRM = explode('_', $offer[1]);
-
- foreach($optionsFromCRM as $optionFromCRM) {
- $optionData = explode('-', $optionFromCRM);
- $productOptionId = $optionData[0];
- $optionValueId = $optionData[1];
-
- $productOptions = $this->model_catalog_product->getProductOptions($productId);
-
- foreach($productOptions as $productOption) {
- if($productOptionId == $productOption['product_option_id']) {
- foreach($productOption['product_option_value'] as $productOptionValue) {
- if($productOptionValue['option_value_id'] == $optionValueId) {
- $options[$productOptionId] = $productOptionValue['product_option_value_id'];
- }
- }
- }
- }
- }
- }
- $data['order_product'][] = array(
- 'product_id' => $productId,
- 'quantity' => $item['quantity'],
- 'option' => $options
- );
- }
-
- $deliveryCost = !empty($order['delivery']['cost']) ? $order['delivery']['cost'] : 0;
-
- $data['order_total'] = array(
- array(
- 'order_total_id' => '',
- 'code' => 'sub_total',
- 'title' => $this->language->get('product_summ'),
- 'value' => $order['summ'],
- 'text' => $order['summ'],
- 'sort_order' => $this->subtotalSettings['sub_total_sort_order']
- ),
- array(
- 'order_total_id' => '',
- 'code' => 'shipping',
- 'title' => $this->ocDelivery[$data['shipping_code']],
- 'value' => $deliveryCost,
- 'text' => $deliveryCost,
- 'sort_order' => $this->shippingSettings['shipping_sort_order']
- ),
- array(
- 'order_total_id' => '',
- 'code' => 'total',
- 'title' => $this->language->get('column_total'),
- 'value' => isset($order['totalSumm']) ? $order['totalSumm'] : $order['summ'] + $deliveryCost,
- 'text' => isset($order['totalSumm']) ? $order['totalSumm'] : $order['summ'] + $deliveryCost,
- 'sort_order' => $this->totalSettings['total_sort_order']
- )
- );
-
- $data['fromApi'] = true;
-
- if (array_key_exists($order['status'], $this->status)) {
- $data['order_status_id'] = $this->status[$order['status']];
- } else {
- $tmpOrder = $this->model_sale_order->getOrder($order['externalId']);
- $data['order_status_id'] = $tmpOrder['order_status_id'];
- }
-
- $this->opencartApiClient->editOrder($order['externalId'], $data);
- }
- }
-
- protected function createOrders($orders)
- {
- $customersIdsFix = array();
- $ordersIdsFix = array();
-
- foreach ($orders as $order) {
- $store = $this->config->get('config_store_id');
-
- $customer_id = (!empty($order['customer']['externalId']))
- ? $order['customer']['externalId']
- : 0;
-
- $data = array();
-
- if ($customer_id == 0) {
- $cData = array(
- 'store_id' => 0,
- 'customer_group_id' => '1',
- 'firstname' => $order['firstName'],
- 'lastname' => (!empty($order['lastName'])) ? $order['lastName'] : ' ',
- 'email' => $order['email'],
- 'telephone' => (!empty($order['customer']['phones'][0]['number']) ) ? $order['customer']['phones'][0]['number'] : ' ',
- 'fax' => '',
- 'newsletter' => 0,
- 'password' => 'tmppass',
- 'status' => 1,
- 'address' => array(
- array(
- 'firstname' => $order['firstName'],
- 'lastname' => (!empty($order['lastName'])) ? $order['lastName'] : ' ',
- 'address_1' => $order['customer']['address']['text'],
- 'address_2' => ' ',
- 'city' => !empty($order['customer']['address']['city']) ? $order['customer']['address']['city'] : $order['delivery']['address']['city'],
- 'postcode' => isset($order['customer']['address']['index']) ? $order['customer']['address']['index'] : $order['delivery']['address']['index'],
- 'tax_id' => '1',
- 'company' => '',
- 'company_id' => '',
- 'zone_id' => '0',
- 'country_id' => 0
- )
- ),
- );
-
- if (version_compare(VERSION, '2.1.0.0', '>=')) {
- $this->model_customer_customer->addCustomer($cData);
- } else {
- $this->model_sale_customer->addCustomer($cData);
- }
-
- if (!empty($order['email'])) {
- if (version_compare(VERSION, '2.1.0.0', '>=')) {
- $tryToFind = $this->model_customer_customer->getCustomerByEmail($order['email']);
- } else {
- $tryToFind = $this->model_sale_customer->getCustomerByEmail($order['email']);
- }
- $customer_id = $tryToFind['customer_id'];
- } else {
- if (version_compare(VERSION, '2.1.0.0', '>=')) {
- $last = $this->model_customer_customer->getCustomers($data = array('order' => 'DESC', 'limit' => 1));
- } else {
- $last = $this->model_sale_customer->getCustomers($data = array('order' => 'DESC', 'limit' => 1));
- }
- $customer_id = $last[0]['customer_id'];
- }
-
- $customersIdsFix[] = array('id' => $order['customer']['id'], 'externalId' => (int)$customer_id);
- }
-
- $data['store_id'] = $store == null ? 0 : $store;
- $data['customer'] = $order['firstName'];
- $data['customer_id'] = $customer_id;
- $data['customer_group_id'] = 1;
- $data['firstname'] = $order['firstName'];
- $data['lastname'] = (!empty($order['lastName'])) ? $order['lastName'] : ' ';
- $data['email'] = $order['email'];
- $data['telephone'] = (!empty($order['customer']['phones'][0]['number'])) ? $order['customer']['phones'][0]['number'] : ' ';
- $data['comment'] = !empty($order['customerComment']) ? $order['customerComment'] : '';
- $data['fax'] = '';
- $data['payment_address'] = '0';
- $data['payment_firstname'] = $order['firstName'];
- $data['payment_lastname'] = (!empty($order['lastName'])) ? $order['lastName'] : ' ';
- $data['payment_address_1'] = $order['customer']['address']['text'];
- $data['payment_address_2'] = '';
- $data['payment_company'] = '';
- $data['payment_company_id'] = '';
- $data['payment_city'] = !empty($order['customer']['address']['city']) ? $order['customer']['address']['city'] : $order['delivery']['address']['city'];
- $data['payment_postcode'] = !empty($order['customer']['address']['index']) ? $order['customer']['address']['index'] : $order['delivery']['address']['index'];
-
- $region = '';
-
- if (!empty($order['delivery']['address']['region']) && is_int($order['delivery']['address']['region'])) {
- $region = $order['delivery']['address']['region'];
- } else {
- foreach ($this->zones as $zone) {
- if ($order['delivery']['address']['region'] == $zone['name']) {
- $region = $zone['zone_id'];
- }
- }
- }
-
- $data['payment_country_id'] = !empty($order['delivery']['address']['country']) ? $order['delivery']['address']['country'] : 0;
- $data['payment_zone_id'] = !empty($order['delivery']['address']['region']) ? $order['delivery']['address']['region'] : $region;
- $data['shipping_country_id'] = !empty($order['delivery']['address']['country']) ? $order['delivery']['address']['country'] : 0;
- $data['shipping_zone_id'] = $region;
- $data['shipping_address'] = '0';
- $data['shipping_firstname'] = $order['firstName'];
- $data['shipping_lastname'] = (!empty($order['lastName'])) ? $order['lastName'] : ' ';
- $data['shipping_address_1'] = $order['delivery']['address']['text'];
- $data['shipping_address_2'] = '';
- $data['shipping_company'] = '';
- $data['shipping_company_id'] = '';
- $data['shipping_city'] = $order['delivery']['address']['city'];
- $data['shipping_postcode'] = $order['delivery']['address']['index'];
-
- $data['shipping'] = $this->delivery[$order['delivery']['code']];
- $data['shipping_method'] = $this->ocDelivery[$data['shipping']];
- $data['shipping_code'] = $this->delivery[$order['delivery']['code']];
- $data['payment'] = $this->payment[$order['paymentType']];
- $data['payment_method'] = $this->ocPayment[$data['payment']];
- $data['payment_code'] = $this->payment[$order['paymentType']];
-
- // this data will not retrive from crm for now
- $data['tax'] = '';
- $data['tax_id'] = '';
- $data['product'] = '';
- $data['product_id'] = '';
- $data['reward'] = '';
- $data['affiliate'] = '';
- $data['affiliate_id'] = '';
- $data['payment_tax_id'] = '';
- $data['order_product_id'] = '';
- $data['payment_company'] = '';
- $data['payment_company_id'] = '';
- $data['company'] = '';
- $data['company_id'] = '';
-
- $data['order_product'] = array();
-
- foreach ($order['items'] as $item) {
- $product = $this->model_catalog_product->getProduct($item['offer']['externalId']);
- $data['order_product'][] = array(
- 'product_id' => $item['offer']['externalId'],
- 'name' => $item['offer']['name'],
- 'quantity' => $item['quantity'],
- 'price' => $item['initialPrice'],
- 'total' => $item['initialPrice'] * $item['quantity'],
- 'model' => $product['model'],
-
- // this data will not retrive from crm
- 'order_product_id' => '',
- 'tax' => 0,
- 'reward' => 0
- );
- }
-
- $deliveryCost = !empty($order['delivery']['cost']) ? $order['delivery']['cost'] : 0;
-
- $data['order_total'] = array(
- array(
- 'order_total_id' => '',
- 'code' => 'sub_total',
- 'title' => $this->language->get('product_summ'),
- 'value' => $order['summ'],
- 'text' => $order['summ'],
- 'sort_order' => $this->subtotalSettings['sub_total_sort_order']
- ),
- array(
- 'order_total_id' => '',
- 'code' => 'shipping',
- 'title' => $this->ocDelivery[$data['shipping_code']],
- 'value' => $deliveryCost,
- 'text' => $deliveryCost,
- 'sort_order' => $this->shippingSettings['shipping_sort_order']
- ),
- array(
- 'order_total_id' => '',
- 'code' => 'total',
- 'title' => $this->language->get('column_total'),
- 'value' => !empty($order['totalSumm']) ? $order['totalSumm'] : $order['summ'] + $deliveryCost,
- 'text' => isset($order['totalSumm']) ? $order['totalSumm'] : $order['summ'] + $deliveryCost,
- 'sort_order' => $this->totalSettings['total_sort_order']
- )
- );
-
- $data['fromApi'] = true;
- $data['order_status_id'] = 1;
-
- $this->opencartApiClient->addOrder($data);
-
- $last = $this->model_sale_order->getOrders($data = array('order' => 'DESC', 'limit' => 1, 'start' => 0));
-
- $ordersIdsFix[] = array('id' => $order['id'], 'externalId' => (int) $last[0]['order_id']);
- }
-
- return array('customers' => $customersIdsFix, 'orders' => $ordersIdsFix);
- }
-}
diff --git a/admin/model/retailcrm/icml.php b/admin/model/retailcrm/icml.php
deleted file mode 100644
index 2d6b5c5..0000000
--- a/admin/model/retailcrm/icml.php
+++ /dev/null
@@ -1,337 +0,0 @@
-load->language('module/retailcrm');
- $this->load->model('catalog/category');
- $this->load->model('catalog/product');
- $this->load->model('catalog/option');
- $this->load->model('catalog/manufacturer');
-
- $string = '
-