This commit is contained in:
Alex Lushpai 2016-01-29 18:02:44 +03:00
parent f3ac741980
commit 41d75b8196
2 changed files with 235 additions and 235 deletions

View File

@ -1,138 +1,138 @@
<?php <?php
require_once DIR_SYSTEM . 'library/retailcrm/bootstrap.php'; require_once DIR_SYSTEM . 'library/retailcrm/bootstrap.php';
class ModelRetailcrmReferences extends Model class ModelRetailcrmReferences extends Model
{ {
protected $retailcrm; protected $retailcrm;
public function getDeliveryTypes() public function getDeliveryTypes()
{ {
return array( return array(
'opencart' => $this->getOpercartDeliveryTypes(), 'opencart' => $this->getOpercartDeliveryTypes(),
'retailcrm' => $this->getApiDeliveryTypes() 'retailcrm' => $this->getApiDeliveryTypes()
); );
} }
public function getOrderStatuses() public function getOrderStatuses()
{ {
return array( return array(
'opencart' => $this->getOpercartOrderStatuses(), 'opencart' => $this->getOpercartOrderStatuses(),
'retailcrm' => $this->getApiOrderStatuses() 'retailcrm' => $this->getApiOrderStatuses()
); );
} }
public function getPaymentTypes() public function getPaymentTypes()
{ {
return array( return array(
'opencart' => $this->getOpercartPaymentTypes(), 'opencart' => $this->getOpercartPaymentTypes(),
'retailcrm' => $this->getApiPaymentTypes() 'retailcrm' => $this->getApiPaymentTypes()
); );
} }
protected function getOpercartDeliveryTypes() protected function getOpercartDeliveryTypes()
{ {
$deliveryMethods = array(); $deliveryMethods = array();
$files = glob(DIR_APPLICATION . 'controller/shipping/*.php'); $files = glob(DIR_APPLICATION . 'controller/shipping/*.php');
if ($files) { if ($files) {
foreach ($files as $file) { foreach ($files as $file) {
$extension = basename($file, '.php'); $extension = basename($file, '.php');
$this->load->language('shipping/' . $extension); $this->load->language('shipping/' . $extension);
if ($this->config->get($extension . '_status')) { if ($this->config->get($extension . '_status')) {
$deliveryMethods[$extension.'.'.$extension] = strip_tags( $deliveryMethods[$extension.'.'.$extension] = strip_tags(
$this->language->get('heading_title') $this->language->get('heading_title')
); );
} }
} }
} }
return $deliveryMethods; return $deliveryMethods;
} }
protected function getOpercartOrderStatuses() protected function getOpercartOrderStatuses()
{ {
$this->load->model('localisation/order_status'); $this->load->model('localisation/order_status');
return $this->model_localisation_order_status return $this->model_localisation_order_status
->getOrderStatuses(array()); ->getOrderStatuses(array());
} }
protected function getOpercartPaymentTypes() protected function getOpercartPaymentTypes()
{ {
$paymentTypes = array(); $paymentTypes = array();
$files = glob(DIR_APPLICATION . 'controller/payment/*.php'); $files = glob(DIR_APPLICATION . 'controller/payment/*.php');
if ($files) { if ($files) {
foreach ($files as $file) { foreach ($files as $file) {
$extension = basename($file, '.php'); $extension = basename($file, '.php');
$this->load->language('payment/' . $extension); $this->load->language('payment/' . $extension);
if ($this->config->get($extension . '_status')) { if ($this->config->get($extension . '_status')) {
$paymentTypes[$extension] = strip_tags( $paymentTypes[$extension] = strip_tags(
$this->language->get('heading_title') $this->language->get('heading_title')
); );
} }
} }
} }
return $paymentTypes; return $paymentTypes;
} }
protected function getApiDeliveryTypes() protected 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');
if(!empty($settings['retailcrm_url']) && !empty($settings['retailcrm_apikey'])) { if(!empty($settings['retailcrm_url']) && !empty($settings['retailcrm_apikey'])) {
$this->retailcrm = new RetailcrmProxy( $this->retailcrm = new RetailcrmProxy(
$settings['retailcrm_url'], $settings['retailcrm_url'],
$settings['retailcrm_apikey'], $settings['retailcrm_apikey'],
DIR_SYSTEM . 'logs/retailcrm.log' DIR_SYSTEM . 'logs/retailcrm.log'
); );
$response = $this->retailcrm->deliveryTypesList(); $response = $this->retailcrm->deliveryTypesList();
return ($response === false) ? array() : $response->deliveryTypes; return ($response === false) ? array() : $response->deliveryTypes;
} }
} }
protected function getApiOrderStatuses() protected 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');
if(!empty($settings['retailcrm_url']) && !empty($settings['retailcrm_apikey'])) { if(!empty($settings['retailcrm_url']) && !empty($settings['retailcrm_apikey'])) {
$this->retailcrm = new RetailcrmProxy( $this->retailcrm = new RetailcrmProxy(
$settings['retailcrm_url'], $settings['retailcrm_url'],
$settings['retailcrm_apikey'], $settings['retailcrm_apikey'],
DIR_SYSTEM . 'logs/retailcrm.log' DIR_SYSTEM . 'logs/retailcrm.log'
); );
$response = $this->retailcrm->statusesList(); $response = $this->retailcrm->statusesList();
return ($response === false) ? array() : $response->statuses; return ($response === false) ? array() : $response->statuses;
} }
} }
protected function getApiPaymentTypes() protected 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');
if(!empty($settings['retailcrm_url']) && !empty($settings['retailcrm_apikey'])) { if(!empty($settings['retailcrm_url']) && !empty($settings['retailcrm_apikey'])) {
$this->retailcrm = new RetailcrmProxy( $this->retailcrm = new RetailcrmProxy(
$settings['retailcrm_url'], $settings['retailcrm_url'],
$settings['retailcrm_apikey'], $settings['retailcrm_apikey'],
DIR_SYSTEM . 'logs/retailcrm.log' DIR_SYSTEM . 'logs/retailcrm.log'
); );
$response = $this->retailcrm->paymentTypesList(); $response = $this->retailcrm->paymentTypesList();
return ($response === false) ? array() : $response->paymentTypes; return ($response === false) ? array() : $response->paymentTypes;
} }
} }
} }

View File

@ -1,97 +1,97 @@
<?php <?php
class ModelRetailcrmOrder extends Model { class ModelRetailcrmOrder extends Model {
public function sendToCrm($order_data, $order_id) public function sendToCrm($order_data, $order_id)
{ {
$this->load->model('setting/setting'); $this->load->model('setting/setting');
$settings = $this->model_setting_setting->getSetting('retailcrm'); $settings = $this->model_setting_setting->getSetting('retailcrm');
if(!empty($settings['retailcrm_url']) && !empty($settings['retailcrm_apikey'])) { if(!empty($settings['retailcrm_url']) && !empty($settings['retailcrm_apikey'])) {
require_once DIR_SYSTEM . 'library/retailcrm/bootstrap.php'; require_once DIR_SYSTEM . 'library/retailcrm/bootstrap.php';
$this->retailcrm = new RetailcrmProxy( $this->retailcrm = new RetailcrmProxy(
$settings['retailcrm_url'], $settings['retailcrm_url'],
$settings['retailcrm_apikey'], $settings['retailcrm_apikey'],
DIR_SYSTEM . 'logs/retailcrm.log' DIR_SYSTEM . 'logs/retailcrm.log'
); );
$order = array(); $order = array();
$payment_code = $order_data['payment_code']; $payment_code = $order_data['payment_code'];
$delivery_code = $order_data['shipping_code']; $delivery_code = $order_data['shipping_code'];
$customers = $this->retailcrm->customersList( $customers = $this->retailcrm->customersList(
array( array(
'name' => $order_data['telephone'], 'name' => $order_data['telephone'],
'email' => $order_data['email'] 'email' => $order_data['email']
), ),
1, 1,
100 100
); );
foreach($customers['customers'] as $customer) { foreach($customers['customers'] as $customer) {
$order['customer']['id'] = $customer['id']; $order['customer']['id'] = $customer['id'];
} }
unset($customers); unset($customers);
$order['externalId'] = $order_id; $order['externalId'] = $order_id;
$order['firstName'] = $order_data['firstname']; $order['firstName'] = $order_data['firstname'];
$order['lastName'] = $order_data['lastname']; $order['lastName'] = $order_data['lastname'];
$order['email'] = $order_data['email']; $order['email'] = $order_data['email'];
$order['phone'] = $order_data['telephone']; $order['phone'] = $order_data['telephone'];
$order['customerComment'] = $order_data['comment']; $order['customerComment'] = $order_data['comment'];
$deliveryCost = 0; $deliveryCost = 0;
$orderTotals = isset($order_data['totals']) ? $order_data['totals'] : $order_data['order_total'] ; $orderTotals = isset($order_data['totals']) ? $order_data['totals'] : $order_data['order_total'] ;
foreach ($orderTotals as $totals) { foreach ($orderTotals as $totals) {
if ($totals['code'] == 'shipping') { if ($totals['code'] == 'shipping') {
$deliveryCost = $totals['value']; $deliveryCost = $totals['value'];
} }
} }
$order['createdAt'] = date('Y-m-d H:i:s'); $order['createdAt'] = date('Y-m-d H:i:s');
$order['paymentType'] = $settings['retailcrm_payment'][$payment_code]; $order['paymentType'] = $settings['retailcrm_payment'][$payment_code];
$country = (isset($order_data['shipping_country'])) ? $order_data['shipping_country'] : '' ; $country = (isset($order_data['shipping_country'])) ? $order_data['shipping_country'] : '' ;
$order['delivery'] = array( $order['delivery'] = array(
'code' => $settings['retailcrm_delivery'][$delivery_code], 'code' => $settings['retailcrm_delivery'][$delivery_code],
'cost' => $deliveryCost, 'cost' => $deliveryCost,
'address' => array( 'address' => array(
'index' => $order_data['shipping_postcode'], 'index' => $order_data['shipping_postcode'],
'city' => $order_data['shipping_city'], 'city' => $order_data['shipping_city'],
'country' => $order_data['shipping_country_id'], 'country' => $order_data['shipping_country_id'],
'region' => $order_data['shipping_zone_id'], 'region' => $order_data['shipping_zone_id'],
'text' => implode(', ', array( 'text' => implode(', ', array(
$order_data['shipping_postcode'], $order_data['shipping_postcode'],
$country, $country,
$order_data['shipping_city'], $order_data['shipping_city'],
$order_data['shipping_address_1'], $order_data['shipping_address_1'],
$order_data['shipping_address_2'] $order_data['shipping_address_2']
)) ))
) )
); );
$orderProducts = isset($order_data['products']) ? $order_data['products'] : $order_data['order_product']; $orderProducts = isset($order_data['products']) ? $order_data['products'] : $order_data['order_product'];
foreach ($orderProducts as $product) { foreach ($orderProducts as $product) {
$order['items'][] = array( $order['items'][] = array(
'productId' => $product['product_id'], 'productId' => $product['product_id'],
'productName' => $product['name'], 'productName' => $product['name'],
'initialPrice' => $product['price'], 'initialPrice' => $product['price'],
'quantity' => $product['quantity'], 'quantity' => $product['quantity'],
); );
} }
if (isset($order_data['order_status_id'])) { if (isset($order_data['order_status_id'])) {
$order['status'] = $settings['retailcrm_status'][$order_data['order_status_id']]; $order['status'] = $settings['retailcrm_status'][$order_data['order_status_id']];
} }
$this->retailcrm->ordersCreate($order); $this->retailcrm->ordersCreate($order);
} }
} }
} }