mirror of
https://github.com/retailcrm/opencart-module.git
synced 2024-11-22 21:26:08 +03:00
246 lines
8.5 KiB
PHP
246 lines
8.5 KiB
PHP
<?php
|
|
|
|
class ModelExtensionRetailcrmOrder extends Model {
|
|
|
|
public function uploadToCrm($orders) {
|
|
|
|
$this->initApi();
|
|
|
|
$ordersToCrm = array();
|
|
|
|
foreach($orders as $order) {
|
|
$ordersToCrm[] = $this->process($order);
|
|
}
|
|
|
|
$chunkedOrders = array_chunk($ordersToCrm, 50);
|
|
|
|
foreach($chunkedOrders as $ordersPart) {
|
|
$this->retailcrm->ordersUpload($ordersPart);
|
|
}
|
|
}
|
|
|
|
public function uploadOrder($order_data)
|
|
{
|
|
if(isset($this->request->post['fromApi'])) return;
|
|
|
|
$moduleTitle = $this->getModuleTitle();
|
|
$this->initApi();
|
|
|
|
$customers = $this->retailcrm->customersList(
|
|
array(
|
|
'name' => $order_data['telephone'],
|
|
'email' => $order_data['email']
|
|
),
|
|
1,
|
|
100
|
|
);
|
|
|
|
$order = $this->process($order_data);
|
|
|
|
if($customers) {
|
|
foreach ($customers['customers'] as $customer) {
|
|
$order['customer']['id'] = $customer['id'];
|
|
}
|
|
}
|
|
|
|
unset($customers);
|
|
|
|
$result = $this->retailcrm->ordersCreate($order);
|
|
|
|
if ($this->settings[$this->moduleTitle . '_apiversion'] == 'v5' && $result->isSuccessful()) {
|
|
$this->createPayment($order_data, $order_data['order_id']);
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
private function process($order_data) {
|
|
$order = array();
|
|
|
|
$this->moduleTitle = $this->getModuleTitle();
|
|
$payment_code = $order_data['payment_code'];
|
|
$delivery_code = $order_data['shipping_code'];
|
|
|
|
$order['externalId'] = $order_data['order_id'];
|
|
$order['firstName'] = $order_data['firstname'];
|
|
$order['lastName'] = $order_data['lastname'];
|
|
$order['phone'] = $order_data['telephone'];
|
|
$order['customerComment'] = $order_data['comment'];
|
|
|
|
if(!empty($order_data['email'])) {
|
|
$order['email'] = $order_data['email'];
|
|
}
|
|
|
|
$order['customer']['externalId'] = $order_data['customer_id'];
|
|
|
|
$deliveryCost = 0;
|
|
$orderTotals = isset($order_data['totals']) ? $order_data['totals'] : $order_data['order_total'] ;
|
|
|
|
foreach ($orderTotals as $totals) {
|
|
if ($totals['code'] == 'shipping') {
|
|
$deliveryCost = $totals['value'];
|
|
}
|
|
}
|
|
|
|
$order['createdAt'] = $order_data['date_added'];
|
|
|
|
if ($this->settings[$this->moduleTitle . '_apiversion'] != 'v5') {
|
|
$order['paymentType'] = $this->settings[$this->moduleTitle . '_payment'][$payment_code];
|
|
}
|
|
|
|
$country = (isset($order_data['shipping_country'])) ? $order_data['shipping_country'] : '' ;
|
|
|
|
$order['delivery'] = array(
|
|
'code' => !empty($delivery_code) ? $this->settings[$this->moduleTitle . '_delivery'][$delivery_code] : '',
|
|
'cost' => $deliveryCost,
|
|
'address' => array(
|
|
'index' => $order_data['shipping_postcode'],
|
|
'city' => $order_data['shipping_city'],
|
|
'country' => $order_data['shipping_country_id'],
|
|
'region' => $order_data['shipping_zone_id'],
|
|
'text' => implode(', ', array(
|
|
$order_data['shipping_postcode'],
|
|
$country,
|
|
$order_data['shipping_city'],
|
|
$order_data['shipping_address_1'],
|
|
$order_data['shipping_address_2']
|
|
))
|
|
)
|
|
);
|
|
|
|
$orderProducts = isset($order_data['products']) ? $order_data['products'] : $order_data['order_product'];
|
|
$offerOptions = array('select', 'radio');
|
|
|
|
foreach ($orderProducts as $product) {
|
|
$offerId = '';
|
|
|
|
if(!empty($product['option'])) {
|
|
$options = array();
|
|
|
|
$productOptions = $this->model_catalog_product->getProductOptions($product['product_id']);
|
|
|
|
foreach($product['option'] as $option) {
|
|
if ($option['type'] == 'checkbox') {
|
|
$properties[] = array(
|
|
'code' => $option['product_option_value_id'],
|
|
'name' => $option['name'],
|
|
'value' => $option['value']
|
|
);
|
|
}
|
|
|
|
if(!in_array($option['type'], $offerOptions)) continue;
|
|
foreach($productOptions as $productOption) {
|
|
if($productOption['product_option_id'] = $option['product_option_id']) {
|
|
foreach($productOption['product_option_value'] as $productOptionValue) {
|
|
if($productOptionValue['product_option_value_id'] == $option['product_option_value_id']) {
|
|
$options[$option['product_option_id']] = $productOptionValue['option_value_id'];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
ksort($options);
|
|
|
|
$offerId = array();
|
|
foreach($options as $optionKey => $optionValue) {
|
|
$offerId[] = $optionKey.'-'.$optionValue;
|
|
}
|
|
$offerId = implode('_', $offerId);
|
|
}
|
|
|
|
if ($this->settings[$this->moduleTitle . '_apiversion'] != 'v3') {
|
|
$item = array(
|
|
'offer' => array(
|
|
'externalId' => !empty($offerId) ? $product['product_id'].'#'.$offerId : $product['product_id']
|
|
),
|
|
'productName' => $product['name'],
|
|
'initialPrice' => $product['price'],
|
|
'quantity' => $product['quantity'],
|
|
);
|
|
} else {
|
|
$item = array(
|
|
'productName' => $product['name'],
|
|
'initialPrice' => $product['price'],
|
|
'quantity' => $product['quantity'],
|
|
'productId' => !empty($offerId) ? $product['product_id'].'#'.$offerId : $product['product_id']
|
|
);
|
|
}
|
|
|
|
if (isset($properties)) $item['properties'] = $properties;
|
|
$order['items'][] = $item;
|
|
}
|
|
|
|
return $order;
|
|
}
|
|
|
|
protected function createPayment($order, $order_id)
|
|
{
|
|
$this->moduleTitle = $this->getModuleTitle();
|
|
|
|
if (version_compare(VERSION, '3.0', '<')) {
|
|
$settingPaid = $this->model_setting_setting->getSetting($order['payment_code']);
|
|
} else {
|
|
$settingPaid = $this->model_setting_setting->getSetting('payment_' . $order['payment_code']);
|
|
}
|
|
|
|
$payment_code = $order['payment_code'];
|
|
|
|
foreach ($order['totals'] as $total) {
|
|
if ($total['code'] == 'total') $amount = $total['value'];
|
|
}
|
|
|
|
$payment = array(
|
|
'externalId' => $order_id,
|
|
'type' => $this->settings[$this->moduleTitle . '_payment'][$payment_code],
|
|
'amount' => $amount
|
|
);
|
|
|
|
if (version_compare(VERSION, '3.0', '<')) {
|
|
if ($order['order_status_id'] == $settingPaid[$order['payment_code'] . '_order_status_id']) {
|
|
$payment['status'] = 'paid';
|
|
}
|
|
} else {
|
|
if ($order['order_status_id'] == $settingPaid['payment_' . $order['payment_code'] . '_order_status_id']) {
|
|
$payment['status'] = 'paid';
|
|
}
|
|
}
|
|
|
|
$payment['order'] = array(
|
|
'externalId' => $order_id
|
|
);
|
|
|
|
$this->retailcrm->ordersPaymentCreate($payment);
|
|
}
|
|
|
|
private function initApi()
|
|
{
|
|
$moduleTitle = $this->getModuleTitle();
|
|
$this->load->model('setting/setting');
|
|
$this->settings = $this->model_setting_setting->getSetting($moduleTitle);
|
|
|
|
if(!empty($this->settings[$moduleTitle . '_url']) && !empty($this->settings[$moduleTitle . '_apikey'])) {
|
|
|
|
require_once DIR_SYSTEM . 'library/retailcrm/bootstrap.php';
|
|
|
|
$this->retailcrm = new RetailcrmProxy(
|
|
$this->settings[$moduleTitle . '_url'],
|
|
$this->settings[$moduleTitle . '_apikey'],
|
|
DIR_SYSTEM . 'storage/logs/retailcrm.log',
|
|
$this->settings[$moduleTitle . '_apiversion']
|
|
);
|
|
}
|
|
}
|
|
|
|
private function getModuleTitle()
|
|
{
|
|
if (version_compare(VERSION, '3.0', '<')) {
|
|
$title = 'retailcrm';
|
|
} else {
|
|
$title = 'module_retailcrm';
|
|
}
|
|
|
|
return $title;
|
|
}
|
|
}
|