mirror of
https://github.com/retailcrm/opencart-module.git
synced 2024-11-22 13:16:07 +03:00
history, fixes
This commit is contained in:
parent
da2e185204
commit
f55240d759
@ -19,6 +19,7 @@ class ModelRetailcrmHistory extends Model
|
|||||||
}
|
}
|
||||||
$this->load->model('retailcrm/references');
|
$this->load->model('retailcrm/references');
|
||||||
$this->load->model('catalog/product');
|
$this->load->model('catalog/product');
|
||||||
|
$this->load->model('catalog/option');
|
||||||
$this->load->model('localisation/zone');
|
$this->load->model('localisation/zone');
|
||||||
|
|
||||||
$this->load->language('module/retailcrm');
|
$this->load->language('module/retailcrm');
|
||||||
@ -189,19 +190,36 @@ class ModelRetailcrmHistory extends Model
|
|||||||
$data['order_product'] = array();
|
$data['order_product'] = array();
|
||||||
|
|
||||||
foreach ($order['items'] as $item) {
|
foreach ($order['items'] as $item) {
|
||||||
$product = $this->model_catalog_product->getProduct($item['offer']['externalId']);
|
//$product = $this->model_catalog_product->getProduct($item['offer']['externalId']);
|
||||||
$data['order_product'][] = array(
|
$productId = $item['offer']['externalId'];
|
||||||
'product_id' => $item['offer']['externalId'],
|
$options = array();
|
||||||
'name' => $item['offer']['name'],
|
if(mb_strpos($item['offer']['externalId'], '#') > 1) {
|
||||||
'quantity' => $item['quantity'],
|
$offer = explode('#', $item['offer']['externalId']);
|
||||||
'price' => $item['initialPrice'],
|
$productId = $offer[0];
|
||||||
'total' => $item['initialPrice'] * $item['quantity'],
|
$optionsFromCRM = explode('_', $offer[1]);
|
||||||
'model' => $product['model'],
|
|
||||||
|
|
||||||
// this data will not retrive from crm
|
foreach($optionsFromCRM as $optionFromCRM) {
|
||||||
'order_product_id' => '',
|
$optionData = explode('-', $optionFromCRM);
|
||||||
'tax' => 0,
|
$productOptionId = $optionData[0];
|
||||||
'reward' => 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
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -10,11 +10,15 @@ class ModelRetailcrmIcml extends Model
|
|||||||
protected $eCategories;
|
protected $eCategories;
|
||||||
protected $eOffers;
|
protected $eOffers;
|
||||||
|
|
||||||
|
private $options;
|
||||||
|
private $optionValues;
|
||||||
|
|
||||||
public function generateICML()
|
public function generateICML()
|
||||||
{
|
{
|
||||||
$this->load->language('module/retailcrm');
|
$this->load->language('module/retailcrm');
|
||||||
$this->load->model('catalog/category');
|
$this->load->model('catalog/category');
|
||||||
$this->load->model('catalog/product');
|
$this->load->model('catalog/product');
|
||||||
|
$this->load->model('catalog/option');
|
||||||
$this->load->model('catalog/manufacturer');
|
$this->load->model('catalog/manufacturer');
|
||||||
|
|
||||||
$string = '<?xml version="1.0" encoding="UTF-8"?>
|
$string = '<?xml version="1.0" encoding="UTF-8"?>
|
||||||
@ -95,107 +99,192 @@ class ModelRetailcrmIcml extends Model
|
|||||||
|
|
||||||
$products = $this->model_catalog_product->getProducts(array());
|
$products = $this->model_catalog_product->getProducts(array());
|
||||||
|
|
||||||
foreach ($products as $offer) {
|
foreach ($products as $product) {
|
||||||
|
// Формируем офферы отнсительно доступных опций
|
||||||
$e = $this->eOffers->appendChild($this->dd->createElement('offer'));
|
$options = $this->model_catalog_product->getProductOptions($product['product_id']);
|
||||||
$e->setAttribute('id', $offer['product_id']);
|
$offerOptions = array('select', 'radio');
|
||||||
$e->setAttribute('productId', $offer['product_id']);
|
$requiredOptions = array();
|
||||||
$e->setAttribute('quantity', $offer['quantity']);
|
$notRequiredOptions = array();
|
||||||
|
// Оставляем опции связанные с вариациями товаров, сортируем по параметру обязательный или нет
|
||||||
/**
|
foreach($options as $option) {
|
||||||
* Offer activity
|
if(in_array($option['type'], $offerOptions)) {
|
||||||
*/
|
if($option['required']) {
|
||||||
$activity = $offer['status'] == 1 ? 'Y' : 'N';
|
$requiredOptions[] = $option;
|
||||||
$e->appendChild(
|
} else {
|
||||||
$this->dd->createElement('productActivity')
|
$notRequiredOptions[] = $option;
|
||||||
)->appendChild(
|
}
|
||||||
$this->dd->createTextNode($activity)
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Offer categories
|
|
||||||
*/
|
|
||||||
$categories = $this->model_catalog_product
|
|
||||||
->getProductCategories($offer['product_id']);
|
|
||||||
|
|
||||||
if (!empty($categories)) {
|
|
||||||
foreach ($categories as $category) {
|
|
||||||
$e->appendChild($this->dd->createElement('categoryId'))
|
|
||||||
->appendChild(
|
|
||||||
$this->dd->createTextNode($category)
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
$offers = array();
|
||||||
|
// Сначала совмещаем все обязательные опции
|
||||||
|
foreach($requiredOptions as $requiredOption) {
|
||||||
|
// Если первая итерация
|
||||||
|
if(empty($offers)) {
|
||||||
|
foreach($requiredOption['product_option_value'] as $optionValue) {
|
||||||
|
$offers[$requiredOption['product_option_id'].':'.$requiredOption['option_id'].'-'.$optionValue['option_value_id']] = (float)$optionValue['price'];
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
foreach($offers as $optionKey => $optionCost) {
|
||||||
|
unset($offers[$optionKey]); // Работая в контексте обязательных опций не забываем удалять прошлые обязательные опции, т.к. они должны быть скомбинированы с другими обязательными опциями
|
||||||
|
foreach($requiredOption['product_option_value'] as $optionValue) {
|
||||||
|
$offers[$optionKey.'_'.$requiredOption['product_option_id'].':'.$requiredOption['option_id'].'-'.$optionValue['option_value_id']] = $optionCost + (float)$optionValue['price'];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Совмещаем или добавляем необязательные опции, учитывая тот факт что обязательных опций может и не быть.
|
||||||
|
foreach($notRequiredOptions as $notRequiredOption) {
|
||||||
|
// Если обязательных опцией не оказалось и первая итерация
|
||||||
|
if(empty($offers)) {
|
||||||
|
$offers['0:0-0'] = 0; // В случае работы с необязательными опциями мы должны учитывать товарное предложение без опций, поэтому создадим "пустую" опцию
|
||||||
|
foreach($notRequiredOption['product_option_value'] as $optionValue) {
|
||||||
|
$offers[$notRequiredOption['product_option_id'].':'.$notRequiredOption['option_id'].'-'.$optionValue['option_value_id']] = (float)$optionValue['price'];
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
foreach($offers as $optionKey => $optionCost) {
|
||||||
|
foreach($notRequiredOption['product_option_value'] as $optionValue) {
|
||||||
|
$offers[$optionKey.'_'.$notRequiredOption['product_option_id'].':'.$notRequiredOption['option_id'].'-'.$optionValue['option_value_id']] = $optionCost + (float)$optionValue['price'];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(empty($offers)) {
|
||||||
|
$offers = array('0:0-0' => '0');
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
foreach($offers as $optionsString => $optionsTotalCost) {
|
||||||
* Name & price
|
$optionsString = explode('_', $optionsString);
|
||||||
*/
|
$options = array();
|
||||||
$e->appendChild($this->dd->createElement('name'))
|
foreach($optionsString as $optionString) {
|
||||||
->appendChild($this->dd->createTextNode($offer['name']));
|
$option = explode('-', $optionString);
|
||||||
$e->appendChild($this->dd->createElement('productName'))
|
$optionIds = explode(':', $option[0]);
|
||||||
->appendChild($this->dd->createTextNode($offer['name']));
|
if($optionString != '0:0-0') {
|
||||||
$e->appendChild($this->dd->createElement('price'))
|
$optionData = $this->getOptionData($optionIds[1], $option[1]);
|
||||||
->appendChild($this->dd->createTextNode($offer['price']));
|
$options[$optionIds[0]] = array(
|
||||||
|
'name' => $optionData['optionName'],
|
||||||
/**
|
'value' => $optionData['optionValue'],
|
||||||
* Vendor
|
'value_id' => $option[1]
|
||||||
*/
|
);
|
||||||
if ($offer['manufacturer_id'] != 0) {
|
}
|
||||||
$e->appendChild($this->dd->createElement('vendor'))
|
}
|
||||||
|
ksort($options);
|
||||||
|
$offerId = array();
|
||||||
|
foreach($options as $optionKey => $optionData) {
|
||||||
|
$offerId[] = $optionKey.'-'.$optionData['value_id'];
|
||||||
|
}
|
||||||
|
$offerId = implode('_', $offerId);
|
||||||
|
$e = $this->eOffers->appendChild($this->dd->createElement('offer'));
|
||||||
|
if(!empty($offerId))
|
||||||
|
$e->setAttribute('id', $product['product_id'].'#'.$offerId);
|
||||||
|
else
|
||||||
|
$e->setAttribute('id', $product['product_id']);
|
||||||
|
$e->setAttribute('productId', $product['product_id']);
|
||||||
|
$e->setAttribute('quantity', $product['quantity']);
|
||||||
|
/**
|
||||||
|
* Offer activity
|
||||||
|
*/
|
||||||
|
$activity = $product['status'] == 1 ? 'Y' : 'N';
|
||||||
|
$e->appendChild(
|
||||||
|
$this->dd->createElement('productActivity')
|
||||||
|
)->appendChild(
|
||||||
|
$this->dd->createTextNode($activity)
|
||||||
|
);
|
||||||
|
/**
|
||||||
|
* Offer categories
|
||||||
|
*/
|
||||||
|
$categories = $this->model_catalog_product
|
||||||
|
->getProductCategories($product['product_id']);
|
||||||
|
if (!empty($categories)) {
|
||||||
|
foreach ($categories as $category) {
|
||||||
|
$e->appendChild($this->dd->createElement('categoryId'))
|
||||||
|
->appendChild(
|
||||||
|
$this->dd->createTextNode($category)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Name & price
|
||||||
|
*/
|
||||||
|
$e->appendChild($this->dd->createElement('productName'))
|
||||||
|
->appendChild($this->dd->createTextNode($product['name']));
|
||||||
|
if(!empty($options)) {
|
||||||
|
$optionsString = array();
|
||||||
|
foreach($options as $option) {
|
||||||
|
$optionsString[] = $option['name'].': '.$option['value'];
|
||||||
|
}
|
||||||
|
$optionsString = ' ('.implode(', ', $optionsString).')';
|
||||||
|
$e->appendChild($this->dd->createElement('name'))
|
||||||
|
->appendChild($this->dd->createTextNode($product['name'].$optionsString));
|
||||||
|
} else {
|
||||||
|
$e->appendChild($this->dd->createElement('name'))
|
||||||
|
->appendChild($this->dd->createTextNode($product['name']));
|
||||||
|
}
|
||||||
|
$e->appendChild($this->dd->createElement('price'))
|
||||||
|
->appendChild($this->dd->createTextNode($product['price'] + $optionsTotalCost));
|
||||||
|
/**
|
||||||
|
* Vendor
|
||||||
|
*/
|
||||||
|
if ($product['manufacturer_id'] != 0) {
|
||||||
|
$e->appendChild($this->dd->createElement('vendor'))
|
||||||
|
->appendChild(
|
||||||
|
$this->dd->createTextNode(
|
||||||
|
$offerManufacturers[$product['manufacturer_id']]
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Image
|
||||||
|
*/
|
||||||
|
if ($product['image']) {
|
||||||
|
$image = $this->generateImage($product['image']);
|
||||||
|
$e->appendChild($this->dd->createElement('picture'))
|
||||||
|
->appendChild($this->dd->createTextNode($image));
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Url
|
||||||
|
*/
|
||||||
|
$this->url = new Url(
|
||||||
|
HTTP_CATALOG,
|
||||||
|
$this->config->get('config_secure')
|
||||||
|
? HTTP_CATALOG
|
||||||
|
: HTTPS_CATALOG
|
||||||
|
);
|
||||||
|
$e->appendChild($this->dd->createElement('url'))
|
||||||
->appendChild(
|
->appendChild(
|
||||||
$this->dd->createTextNode(
|
$this->dd->createTextNode(
|
||||||
$offerManufacturers[$offer['manufacturer_id']]
|
$this->url->link(
|
||||||
|
'product/product&product_id=' . $product['product_id']
|
||||||
|
)
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
// Options
|
||||||
|
if(!empty($options)) {
|
||||||
/**
|
foreach($options as $optionKey => $optionData) {
|
||||||
* Image
|
$param = $this->dd->createElement('param');
|
||||||
*/
|
$param->setAttribute('code', $optionKey);
|
||||||
if ($offer['image']) {
|
$param->setAttribute('name', $optionData['name']);
|
||||||
$image = $this->generateImage($offer['image']);
|
$param->appendChild($this->dd->createTextNode($optionData['value']));
|
||||||
$e->appendChild($this->dd->createElement('picture'))
|
$e->appendChild($param);
|
||||||
->appendChild($this->dd->createTextNode($image));
|
}
|
||||||
}
|
}
|
||||||
|
if ($product['sku']) {
|
||||||
/**
|
$sku = $this->dd->createElement('param');
|
||||||
* Url
|
$sku->setAttribute('code', 'article');
|
||||||
*/
|
$sku->setAttribute('name', $this->language->get('article'));
|
||||||
$this->url = new Url(
|
$sku->appendChild($this->dd->createTextNode($product['sku']));
|
||||||
HTTP_CATALOG,
|
$e->appendChild($sku);
|
||||||
$this->config->get('config_secure')
|
}
|
||||||
? HTTP_CATALOG
|
if ($product['weight'] != '') {
|
||||||
: HTTPS_CATALOG
|
$weight = $this->dd->createElement('param');
|
||||||
);
|
$weight->setAttribute('code', 'weight');
|
||||||
|
$weight->setAttribute('name', $this->language->get('weight'));
|
||||||
$e->appendChild($this->dd->createElement('url'))
|
$weightValue = (isset($offer['weight_class']))
|
||||||
->appendChild(
|
? round($product['weight'], 3) . ' ' . $product['weight_class']
|
||||||
$this->dd->createTextNode(
|
: round($product['weight'], 3)
|
||||||
$this->url->link(
|
;
|
||||||
'product/product&product_id=' . $offer['product_id']
|
$weight->appendChild($this->dd->createTextNode($weightValue));
|
||||||
)
|
$e->appendChild($weight);
|
||||||
)
|
}
|
||||||
);
|
|
||||||
|
|
||||||
|
|
||||||
if ($offer['sku']) {
|
|
||||||
$sku = $this->dd->createElement('param');
|
|
||||||
$sku->setAttribute('code', 'article');
|
|
||||||
$sku->setAttribute('name', $this->language->get('article'));
|
|
||||||
$sku->appendChild($this->dd->createTextNode($offer['sku']));
|
|
||||||
$e->appendChild($sku);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($offer['weight'] != '') {
|
|
||||||
$weight = $this->dd->createElement('param');
|
|
||||||
$weight->setAttribute('code', 'weight');
|
|
||||||
$weight->setAttribute('name', $this->language->get('weight'));
|
|
||||||
$weightValue = (isset($offer['weight_class']))
|
|
||||||
? round($offer['weight'], 3) . ' ' . $offer['weight_class']
|
|
||||||
: round($offer['weight'], 3)
|
|
||||||
;
|
|
||||||
$weight->appendChild($this->dd->createTextNode($weightValue));
|
|
||||||
$e->appendChild($weight);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -226,4 +315,23 @@ class ModelRetailcrmIcml extends Model
|
|||||||
$this->config->get('config_image_product_height')
|
$this->config->get('config_image_product_height')
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private function getOptionData($optionId, $optionValueId) {
|
||||||
|
if(!empty($this->options[$optionId])) {
|
||||||
|
$option = $this->options[$optionId];
|
||||||
|
} else {
|
||||||
|
$option = $this->model_catalog_option->getOption($optionId);
|
||||||
|
$this->options[$optionId] = $option;
|
||||||
|
}
|
||||||
|
if(!empty($this->optionValues[$optionValueId])) {
|
||||||
|
$optionValue = $this->optionValues[$optionValueId];
|
||||||
|
} else {
|
||||||
|
$optionValue = $this->model_catalog_option->getOptionValue($optionValueId);
|
||||||
|
$this->optionValues[$optionValueId] = $optionValue;
|
||||||
|
}
|
||||||
|
return array(
|
||||||
|
'optionName' => $option['name'],
|
||||||
|
'optionValue' => $optionValue['name']
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -25,6 +25,12 @@ class ControllerModuleRetailcrm extends Controller
|
|||||||
|
|
||||||
$data = $this->model_checkout_order->getOrder($order_id);
|
$data = $this->model_checkout_order->getOrder($order_id);
|
||||||
$data['products'] = $this->model_account_order->getOrderProducts($order_id);
|
$data['products'] = $this->model_account_order->getOrderProducts($order_id);
|
||||||
|
foreach($data['products'] as $key => $product) {
|
||||||
|
$productOptions = $this->model_account_order->getOrderOptions($order_id, $product['order_product_id']);
|
||||||
|
|
||||||
|
if(!empty($productOptions))
|
||||||
|
$data['products'][$key]['option'] = $productOptions;
|
||||||
|
}
|
||||||
|
|
||||||
if (!isset($data['fromApi'])) {
|
if (!isset($data['fromApi'])) {
|
||||||
$this->load->model('setting/setting');
|
$this->load->model('setting/setting');
|
||||||
@ -53,6 +59,13 @@ class ControllerModuleRetailcrm extends Controller
|
|||||||
|
|
||||||
$data['products'] = $this->model_account_order->getOrderProducts($order_id);
|
$data['products'] = $this->model_account_order->getOrderProducts($order_id);
|
||||||
|
|
||||||
|
foreach($data['products'] as $key => $product) {
|
||||||
|
$productOptions = $this->model_account_order->getOrderOptions($order_id, $product['order_product_id']);
|
||||||
|
|
||||||
|
if(!empty($productOptions))
|
||||||
|
$data['products'][$key]['option'] = $productOptions;
|
||||||
|
}
|
||||||
|
|
||||||
if (!isset($data['fromApi'])) {
|
if (!isset($data['fromApi'])) {
|
||||||
$this->load->model('setting/setting');
|
$this->load->model('setting/setting');
|
||||||
$status = $this->model_setting_setting->getSetting('retailcrm');
|
$status = $this->model_setting_setting->getSetting('retailcrm');
|
||||||
|
@ -10,6 +10,8 @@ class ModelRetailcrmOrder extends Model {
|
|||||||
$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->load->model('catalog/product');
|
||||||
|
|
||||||
require_once DIR_SYSTEM . 'library/retailcrm/bootstrap.php';
|
require_once DIR_SYSTEM . 'library/retailcrm/bootstrap.php';
|
||||||
|
|
||||||
$this->retailcrm = new RetailcrmProxy(
|
$this->retailcrm = new RetailcrmProxy(
|
||||||
@ -29,8 +31,10 @@ class ModelRetailcrmOrder extends Model {
|
|||||||
100
|
100
|
||||||
);
|
);
|
||||||
|
|
||||||
foreach($customers['customers'] as $customer) {
|
if($customers) {
|
||||||
$order['customer']['id'] = $customer['id'];
|
foreach ($customers['customers'] as $customer) {
|
||||||
|
$order['customer']['id'] = $customer['id'];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
unset($customers);
|
unset($customers);
|
||||||
@ -59,14 +63,12 @@ class ModelRetailcrmOrder extends Model {
|
|||||||
$payment_code = $order_data['payment_code'];
|
$payment_code = $order_data['payment_code'];
|
||||||
$order['paymentType'] = $settings['retailcrm_payment'][$payment_code];
|
$order['paymentType'] = $settings['retailcrm_payment'][$payment_code];
|
||||||
|
|
||||||
// Совместимость с 1.5.5, когда этот метод вызывается из model/checkout/order->createOrder(), а не из controller/module/retailcrm->order_create()
|
|
||||||
if(!isset($order_data['shipping_iso_code_2']) && isset($order_data['shipping_country_id'])) {
|
if(!isset($order_data['shipping_iso_code_2']) && isset($order_data['shipping_country_id'])) {
|
||||||
$this->load->model('localisation/country');
|
$this->load->model('localisation/country');
|
||||||
$shipping_country = $this->model_localisation_country->getCountry($order_data['shipping_country_id']);
|
$shipping_country = $this->model_localisation_country->getCountry($order_data['shipping_country_id']);
|
||||||
$order_data['shipping_iso_code_2'] = $shipping_country['iso_code_2'];
|
$order_data['shipping_iso_code_2'] = $shipping_country['iso_code_2'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$delivery_code = $order_data['shipping_code'];
|
$delivery_code = $order_data['shipping_code'];
|
||||||
$order['delivery'] = array(
|
$order['delivery'] = array(
|
||||||
'code' => !empty($delivery_code) ? $settings['retailcrm_delivery'][$delivery_code] : '',
|
'code' => !empty($delivery_code) ? $settings['retailcrm_delivery'][$delivery_code] : '',
|
||||||
@ -87,10 +89,40 @@ class ModelRetailcrmOrder extends Model {
|
|||||||
);
|
);
|
||||||
|
|
||||||
$orderProducts = isset($order_data['products']) ? $order_data['products'] : $order_data['order_product'];
|
$orderProducts = isset($order_data['products']) ? $order_data['products'] : $order_data['order_product'];
|
||||||
|
$offerOptions = array('select', 'radio');
|
||||||
|
|
||||||
foreach ($orderProducts as $product) {
|
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(!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);
|
||||||
|
}
|
||||||
|
|
||||||
$order['items'][] = array(
|
$order['items'][] = array(
|
||||||
'productId' => $product['product_id'],
|
'productId' => !empty($offerId) ? $product['product_id'].'#'.$offerId : $product['product_id'],
|
||||||
'productName' => $product['name'],
|
'productName' => $product['name'],
|
||||||
'initialPrice' => $product['price'],
|
'initialPrice' => $product['price'],
|
||||||
'quantity' => $product['quantity'],
|
'quantity' => $product['quantity'],
|
||||||
@ -113,6 +145,8 @@ class ModelRetailcrmOrder extends Model {
|
|||||||
$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->load->model('catalog/product');
|
||||||
|
|
||||||
require_once DIR_SYSTEM . 'library/retailcrm/bootstrap.php';
|
require_once DIR_SYSTEM . 'library/retailcrm/bootstrap.php';
|
||||||
|
|
||||||
$this->retailcrm = new RetailcrmProxy(
|
$this->retailcrm = new RetailcrmProxy(
|
||||||
@ -166,10 +200,40 @@ class ModelRetailcrmOrder extends Model {
|
|||||||
);
|
);
|
||||||
|
|
||||||
$orderProducts = isset($order_data['products']) ? $order_data['products'] : $order_data['order_product'];
|
$orderProducts = isset($order_data['products']) ? $order_data['products'] : $order_data['order_product'];
|
||||||
|
$offerOptions = array('select', 'radio');
|
||||||
|
|
||||||
foreach ($orderProducts as $product) {
|
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(!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);
|
||||||
|
}
|
||||||
|
|
||||||
$order['items'][] = array(
|
$order['items'][] = array(
|
||||||
'productId' => $product['product_id'],
|
'productId' => !empty($offerId) ? $product['product_id'].'#'.$offerId : $product['product_id'],
|
||||||
'productName' => $product['name'],
|
'productName' => $product['name'],
|
||||||
'initialPrice' => $product['price'],
|
'initialPrice' => $product['price'],
|
||||||
'quantity' => $product['quantity'],
|
'quantity' => $product['quantity'],
|
||||||
|
@ -68,7 +68,7 @@ foreach ($query->rows as $setting) {
|
|||||||
if (!$setting['serialized']) {
|
if (!$setting['serialized']) {
|
||||||
$config->set($setting['key'], $setting['value']);
|
$config->set($setting['key'], $setting['value']);
|
||||||
} else {
|
} else {
|
||||||
if (version_compare(VERSION, '2.2', '>='))
|
if (version_compare(VERSION, '2.1', '>='))
|
||||||
$config->set($setting['key'], json_decode($setting['value']), true);
|
$config->set($setting['key'], json_decode($setting['value']), true);
|
||||||
else
|
else
|
||||||
$config->set($setting['key'], unserialize($setting['value']));
|
$config->set($setting['key'], unserialize($setting['value']));
|
||||||
|
@ -152,7 +152,8 @@ class OpencartApiClient {
|
|||||||
foreach ($data['order_product'] as $order_product) {
|
foreach ($data['order_product'] as $order_product) {
|
||||||
$products[] = array(
|
$products[] = array(
|
||||||
'product_id' => $order_product['product_id'],
|
'product_id' => $order_product['product_id'],
|
||||||
'quantity' => $order_product['quantity']
|
'quantity' => $order_product['quantity'],
|
||||||
|
'option' => $order_product['option']
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
$this->request('cart/add', array(), array('product' => $products));
|
$this->request('cart/add', array(), array('product' => $products));
|
||||||
|
Loading…
Reference in New Issue
Block a user