2014-04-30 03:51:52 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require 'classes/autoload.php';
|
|
|
|
|
|
|
|
if (!defined('_PS_VERSION_')) {
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
class IntaroCRM extends Module
|
|
|
|
{
|
|
|
|
function __construct()
|
|
|
|
{
|
|
|
|
$this->name = 'intarocrm';
|
|
|
|
$this->tab = 'market_place';
|
|
|
|
$this->version = '0.1';
|
|
|
|
$this->author = 'Intaro Ltd.';
|
|
|
|
|
|
|
|
$this->displayName = $this->l('IntaroCRM');
|
|
|
|
$this->description = $this->l('Integration module for IntaroCRM');
|
|
|
|
$this->confirmUninstall = $this->l('Are you sure you want to uninstall?');
|
|
|
|
|
2014-05-08 20:11:28 +04:00
|
|
|
$this->intaroCRM = new \IntaroCrm\RestApi(
|
|
|
|
Configuration::get('INTAROCRM_ADDRESS'),
|
|
|
|
Configuration::get('INTAROCRM_API_TOKEN')
|
|
|
|
);
|
|
|
|
|
2014-05-13 04:49:47 +04:00
|
|
|
$this->default_lang = (int)Configuration::get('PS_LANG_DEFAULT');
|
|
|
|
|
2014-04-30 03:51:52 +04:00
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
function install()
|
|
|
|
{
|
2014-05-08 20:11:28 +04:00
|
|
|
return (
|
|
|
|
parent::install() &&
|
|
|
|
$this->registerHook('newOrder') &&
|
2014-05-13 04:49:47 +04:00
|
|
|
$this->registerHook('actionOrderStatusPostUpdate') &&
|
|
|
|
$this->registerHook('actionPaymentConfirmation')
|
2014-05-14 16:50:31 +04:00
|
|
|
|
2014-05-08 20:11:28 +04:00
|
|
|
);
|
2014-04-30 03:51:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function uninstall()
|
|
|
|
{
|
|
|
|
return parent::uninstall() &&
|
|
|
|
Configuration::deleteByName('INTAROCRM_ADDRESS') &&
|
2014-05-08 20:11:28 +04:00
|
|
|
Configuration::deleteByName('INTAROCRM_API_TOKEN') &&
|
|
|
|
Configuration::deleteByName('INTAROCRM_API_STATUS') &&
|
|
|
|
Configuration::deleteByName('INTAROCRM_API_DELIVERY') &&
|
|
|
|
Configuration::deleteByName('INTAROCRM_API_ADDR')
|
2014-04-30 03:51:52 +04:00
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getContent()
|
|
|
|
{
|
|
|
|
$output = null;
|
|
|
|
|
|
|
|
$address = Configuration::get('INTAROCRM_ADDRESS');
|
|
|
|
$token = Configuration::get('INTAROCRM_API_TOKEN');
|
|
|
|
|
|
|
|
if (!$address || $address == '') {
|
|
|
|
$output .= $this->displayError( $this->l('Invalid crm address') );
|
|
|
|
} elseif (!$token || $token == '') {
|
|
|
|
$output .= $this->displayError( $this->l('Invalid crm api token') );
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Tools::isSubmit('submit'.$this->name))
|
|
|
|
{
|
|
|
|
$address = strval(Tools::getValue('INTAROCRM_ADDRESS'));
|
|
|
|
$token = strval(Tools::getValue('INTAROCRM_API_TOKEN'));
|
2014-05-08 20:11:28 +04:00
|
|
|
$delivery = json_encode(Tools::getValue('INTAROCRM_API_DELIVERY'));
|
|
|
|
$status = json_encode(Tools::getValue('INTAROCRM_API_STATUS'));
|
|
|
|
$payment = json_encode(Tools::getValue('INTAROCRM_API_PAYMENT'));
|
|
|
|
$order_address = json_encode(Tools::getValue('INTAROCRM_API_ADDR'));
|
2014-04-30 03:51:52 +04:00
|
|
|
|
|
|
|
if (!$address || empty($address) || !Validate::isGenericName($address)) {
|
|
|
|
$output .= $this->displayError( $this->l('Invalid crm address') );
|
|
|
|
} elseif (!$token || empty($token) || !Validate::isGenericName($token)) {
|
|
|
|
$output .= $this->displayError( $this->l('Invalid crm api token') );
|
|
|
|
} else {
|
|
|
|
Configuration::updateValue('INTAROCRM_ADDRESS', $address);
|
|
|
|
Configuration::updateValue('INTAROCRM_API_TOKEN', $token);
|
2014-05-08 20:11:28 +04:00
|
|
|
Configuration::updateValue('INTAROCRM_API_DELIVERY', $delivery);
|
|
|
|
Configuration::updateValue('INTAROCRM_API_STATUS', $status);
|
|
|
|
Configuration::updateValue('INTAROCRM_API_PAYMENT', $payment);
|
|
|
|
Configuration::updateValue('INTAROCRM_API_ADDR', $order_address);
|
2014-04-30 03:51:52 +04:00
|
|
|
$output .= $this->displayConfirmation($this->l('Settings updated'));
|
|
|
|
}
|
|
|
|
}
|
2014-05-08 20:11:28 +04:00
|
|
|
$this->display(__FILE__, 'intarocrm.tpl');
|
2014-04-30 03:51:52 +04:00
|
|
|
|
|
|
|
return $output.$this->displayForm();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function displayForm()
|
|
|
|
{
|
2014-05-13 04:49:47 +04:00
|
|
|
|
2014-04-30 03:51:52 +04:00
|
|
|
$this->displayConfirmation($this->l('Settings updated'));
|
|
|
|
|
2014-05-13 04:49:47 +04:00
|
|
|
$default_lang = $this->default_lang;
|
2014-05-14 16:50:31 +04:00
|
|
|
$intaroCrm = $this->intaroCRM;
|
2014-04-30 03:51:52 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Network connection form
|
|
|
|
*/
|
|
|
|
$fields_form[0]['form'] = array(
|
|
|
|
'legend' => array(
|
|
|
|
'title' => $this->l('Network connection'),
|
|
|
|
),
|
|
|
|
'input' => array(
|
|
|
|
array(
|
|
|
|
'type' => 'text',
|
|
|
|
'label' => $this->l('CRM address'),
|
|
|
|
'name' => 'INTAROCRM_ADDRESS',
|
|
|
|
'size' => 20,
|
|
|
|
'required' => true
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'type' => 'text',
|
|
|
|
'label' => $this->l('CRM token'),
|
|
|
|
'name' => 'INTAROCRM_API_TOKEN',
|
|
|
|
'size' => 20,
|
|
|
|
'required' => true
|
|
|
|
)
|
|
|
|
),
|
|
|
|
'submit' => array(
|
|
|
|
'title' => $this->l('Save'),
|
|
|
|
'class' => 'button'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
/*
|
2014-05-08 20:11:28 +04:00
|
|
|
* Delivery
|
2014-04-30 03:51:52 +04:00
|
|
|
*/
|
2014-05-08 20:11:28 +04:00
|
|
|
$fields_form[1]['form'] = array(
|
|
|
|
'legend' => array(
|
|
|
|
'title' => $this->l('Delivery'),
|
|
|
|
),
|
|
|
|
'input' => $this->getDeliveryTypes($default_lang, $intaroCrm),
|
|
|
|
);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Order status
|
|
|
|
*/
|
|
|
|
$fields_form[2]['form'] = array(
|
|
|
|
'legend' => array(
|
|
|
|
'title' => $this->l('Order statuses'),
|
|
|
|
),
|
|
|
|
'input' => $this->getStatusTypes($default_lang, $intaroCrm),
|
|
|
|
);
|
2014-04-30 03:51:52 +04:00
|
|
|
|
|
|
|
/*
|
2014-05-08 20:11:28 +04:00
|
|
|
* Payment
|
2014-04-30 03:51:52 +04:00
|
|
|
*/
|
2014-05-08 20:11:28 +04:00
|
|
|
$fields_form[3]['form'] = array(
|
|
|
|
'legend' => array(
|
|
|
|
'title' => $this->l('Payment types'),
|
|
|
|
),
|
|
|
|
'input' => $this->getPaymentTypes($intaroCrm),
|
|
|
|
);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Address fields
|
|
|
|
*/
|
|
|
|
$fields_form[4]['form'] = array(
|
|
|
|
'legend' => array(
|
|
|
|
'title' => $this->l('Address'),
|
|
|
|
),
|
|
|
|
'input' => $this->getAddressFields()
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Diplay forms
|
|
|
|
*/
|
|
|
|
|
|
|
|
$helper = new HelperForm();
|
|
|
|
|
|
|
|
$helper->module = $this;
|
|
|
|
$helper->name_controller = $this->name;
|
|
|
|
$helper->token = Tools::getAdminTokenLite('AdminModules');
|
|
|
|
$helper->currentIndex = AdminController::$currentIndex.'&configure='.$this->name;
|
|
|
|
|
|
|
|
$helper->default_form_language = $default_lang;
|
|
|
|
$helper->allow_employee_form_lang = $default_lang;
|
|
|
|
|
|
|
|
$helper->title = $this->displayName;
|
|
|
|
$helper->show_toolbar = true;
|
|
|
|
$helper->toolbar_scroll = true;
|
|
|
|
$helper->submit_action = 'submit'.$this->name;
|
|
|
|
$helper->toolbar_btn = array(
|
|
|
|
'save' =>
|
|
|
|
array(
|
|
|
|
'desc' => $this->l('Save'),
|
|
|
|
'href' => AdminController::$currentIndex.'&configure='.$this->name.'&save'.$this->name.
|
|
|
|
'&token='.Tools::getAdminTokenLite('AdminModules'),
|
|
|
|
),
|
|
|
|
'back' => array(
|
|
|
|
'href' => AdminController::$currentIndex.'&token='.Tools::getAdminTokenLite('AdminModules'),
|
|
|
|
'desc' => $this->l('Back to list')
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$helper->fields_value['INTAROCRM_ADDRESS'] = Configuration::get('INTAROCRM_ADDRESS');
|
|
|
|
$helper->fields_value['INTAROCRM_API_TOKEN'] = Configuration::get('INTAROCRM_API_TOKEN');
|
|
|
|
|
|
|
|
$deliverySettings = Configuration::get('INTAROCRM_API_DELIVERY');
|
|
|
|
if (isset($deliverySettings) && $deliverySettings != '')
|
|
|
|
{
|
|
|
|
$deliveryTypes = json_decode($deliverySettings);
|
|
|
|
foreach ($deliveryTypes as $idx => $delivery) {
|
|
|
|
$name = 'INTAROCRM_API_DELIVERY[' . $idx . ']';
|
|
|
|
$helper->fields_value[$name] = $delivery;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$statusSettings = Configuration::get('INTAROCRM_API_STATUS');
|
|
|
|
if (isset($statusSettings) && $statusSettings != '')
|
|
|
|
{
|
|
|
|
$statusTypes = json_decode($statusSettings);
|
|
|
|
foreach ($statusTypes as $idx => $status) {
|
|
|
|
$name = 'INTAROCRM_API_STATUS[' . $idx . ']';
|
|
|
|
$helper->fields_value[$name] = $status;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$paymentSettings = Configuration::get('INTAROCRM_API_PAYMENT');
|
|
|
|
if (isset($paymentSettings) && $paymentSettings != '')
|
|
|
|
{
|
|
|
|
$paymentTypes = json_decode($paymentSettings);
|
|
|
|
foreach ($paymentTypes as $idx => $payment) {
|
|
|
|
$name = 'INTAROCRM_API_PAYMENT[' . $idx . ']';
|
|
|
|
$helper->fields_value[$name] = $payment;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$addressSettings = Configuration::get('INTAROCRM_API_ADDR');
|
|
|
|
if (isset($addressSettings) && $addressSettings != '')
|
|
|
|
{
|
|
|
|
$addressTypes = json_decode($addressSettings);
|
|
|
|
foreach ($addressTypes as $idx => $address) {
|
|
|
|
$name = 'INTAROCRM_API_ADDR[' . $idx . ']';
|
|
|
|
$helper->fields_value[$name] = $address;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $helper->generateForm($fields_form);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function hookNewOrder($params)
|
|
|
|
{
|
|
|
|
return $this->hookActionOrderStatusPostUpdate($params);
|
|
|
|
}
|
|
|
|
|
2014-05-13 04:49:47 +04:00
|
|
|
public function hookActionPaymentConfirmation($params)
|
|
|
|
{
|
|
|
|
$this->intaroCRM->orderEdit(
|
|
|
|
array(
|
|
|
|
'externalId' => $params['id_order'],
|
|
|
|
'paymentStatus' => 'paid',
|
|
|
|
'createdAt' => $params['cart']->date_upd
|
|
|
|
)
|
|
|
|
);
|
|
|
|
return $this->hookActionOrderStatusPostUpdate($params);
|
|
|
|
}
|
|
|
|
|
2014-05-08 20:11:28 +04:00
|
|
|
public function hookActionOrderStatusPostUpdate($params)
|
|
|
|
{
|
|
|
|
$address_id = Address::getFirstCustomerAddressId($params['cart']->id_customer);
|
|
|
|
$sql = 'SELECT * FROM '._DB_PREFIX_.'address WHERE id_address='.(int)$address_id;
|
|
|
|
$address = Db::getInstance()->ExecuteS($sql);
|
|
|
|
$address = $address[0];
|
|
|
|
$delivery = json_decode(Configuration::get('INTAROCRM_API_DELIVERY'));
|
2014-05-14 16:50:31 +04:00
|
|
|
$payment = json_decode(Configuration::get('INTAROCRM_API_PAYMENT'));
|
2014-05-08 20:11:28 +04:00
|
|
|
$inCart = $params['cart']->getProducts();
|
|
|
|
|
|
|
|
if (isset($params['orderStatus'])) {
|
|
|
|
try {
|
|
|
|
$crmCustomerId = $this->intaroCRM->customerCreate(
|
|
|
|
array(
|
|
|
|
'externalId' => $params['cart']->id_customer,
|
|
|
|
'lastName' => $params['customer']->lastname,
|
|
|
|
'firstName' => $params['customer']->firstname,
|
|
|
|
'email' => $params['customer']->email,
|
|
|
|
'phones' => array(
|
|
|
|
array(
|
|
|
|
'number' => $address['phone'],
|
|
|
|
'type' => 'mobile'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'number' => $address['phone_mobile'],
|
|
|
|
'type' => 'mobile'
|
|
|
|
)
|
|
|
|
),
|
|
|
|
'createdAt' => $params['customer']->date_add
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
catch (\IntaroCrm\Exception\CurlException $e) {
|
|
|
|
error_log('customerCreate: connection error');
|
|
|
|
}
|
|
|
|
catch (\IntaroCrm\Exception\ApiException $e) {
|
|
|
|
error_log('customerCreate: ' . $e->getMessage());
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
$items = array();
|
|
|
|
foreach ($inCart as $item) {
|
|
|
|
$items[] = array(
|
|
|
|
'initialPrice' => $item['price'],
|
|
|
|
'quantity' => $item['quantity'],
|
|
|
|
'productId' => $item['id_product'],
|
|
|
|
'productName' => $item['name'],
|
|
|
|
'createdAt' => $item['date_add']
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$dTypeKey = $params['cart']->id_carrier;
|
2014-05-14 16:50:31 +04:00
|
|
|
if (Module::getInstanceByName('advancedcheckout') === false) {
|
|
|
|
$pTypeKey = $params['order']->module;
|
|
|
|
} else {
|
|
|
|
$pTypeKey = $params['order']->payment;
|
|
|
|
}
|
2014-05-08 20:11:28 +04:00
|
|
|
$this->intaroCRM->orderCreate(
|
|
|
|
array(
|
|
|
|
'externalId' => $params['order']->id,
|
|
|
|
'orderType' => 'eshop-individual',
|
|
|
|
'orderMethod' => 'shopping-cart',
|
|
|
|
'customerId' => $params['cart']->id_customer,
|
|
|
|
'firstName' => $params['customer']->firstname,
|
|
|
|
'lastName' => $params['customer']->lastname,
|
|
|
|
'phone' => $address['phone'],
|
|
|
|
'email' => $params['customer']->email,
|
2014-05-13 04:49:47 +04:00
|
|
|
'paymentStatus' => 'not-paid',
|
2014-05-14 16:50:31 +04:00
|
|
|
'paymentType' => $payment->$pTypeKey,
|
2014-05-08 20:11:28 +04:00
|
|
|
'deliveryType' => $delivery->$dTypeKey,
|
|
|
|
'deliveryCost' => $params['order']->total_shipping,
|
|
|
|
'status' => 'new',
|
|
|
|
'deliveryAddress' => array(
|
|
|
|
'city' => $address['city'],
|
|
|
|
'index' => $address['postcode'],
|
|
|
|
'text' => $address['address1'],
|
|
|
|
),
|
|
|
|
'discount' => $params['order']->total_discounts,
|
|
|
|
'items' => $items,
|
|
|
|
'createdAt' => $params['order']->date_add
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
catch (\IntaroCrm\Exception\CurlException $e) {
|
|
|
|
error_log('orderCreate: connection error');
|
|
|
|
}
|
|
|
|
catch (\IntaroCrm\Exception\ApiException $e) {
|
|
|
|
error_log('orderCreate: ' . $e->getMessage());
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($params['newOrderStatus']) && !empty($params['newOrderStatus'])) {
|
2014-05-13 04:49:47 +04:00
|
|
|
$statuses = OrderState::getOrderStates($this->default_lang);
|
|
|
|
$aStatuses = json_decode(Configuration::get('INTAROCRM_API_STATUS'));
|
|
|
|
foreach ($statuses as $status) {
|
|
|
|
if ($status['name'] == $params['newOrderStatus']->name) {
|
|
|
|
$currStatus = $status['id_order_state'];
|
|
|
|
try {
|
|
|
|
$this->intaroCRM->orderEdit(
|
|
|
|
array(
|
|
|
|
'externalId' => $params['id_order'],
|
|
|
|
'status' => $aStatuses->$currStatus,
|
|
|
|
'createdAt' => $params['cart']->date_upd
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
catch (\IntaroCrm\Exception\CurlException $e) {
|
|
|
|
error_log('orderStatusUpdate: connection error');
|
|
|
|
}
|
|
|
|
catch (\IntaroCrm\Exception\ApiException $e) {
|
|
|
|
error_log('orderStatusUpdate: ' . $e->getMessage());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-05-08 20:11:28 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getApiDeliveryTypes($intaroCrm)
|
|
|
|
{
|
|
|
|
$crmDeliveryTypes = array();
|
|
|
|
|
2014-04-30 03:51:52 +04:00
|
|
|
try {
|
|
|
|
$deliveryTypes = $intaroCrm->deliveryTypesList();
|
|
|
|
}
|
|
|
|
catch (\IntaroCrm\Exception\CurlException $e) {
|
|
|
|
error_log('deliveryTypesList: connection error');
|
|
|
|
}
|
|
|
|
catch (\IntaroCrm\Exception\ApiException $e) {
|
|
|
|
error_log('deliveryTypesList: ' . $e->getMessage());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($deliveryTypes)) {
|
|
|
|
$crmDeliveryTypes[] = array();
|
|
|
|
foreach ($deliveryTypes as $dType) {
|
|
|
|
$crmDeliveryTypes[] = array(
|
|
|
|
'id_option' => $dType['code'],
|
2014-05-08 20:11:28 +04:00
|
|
|
'name' => $dType['name'],
|
2014-04-30 03:51:52 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-08 20:11:28 +04:00
|
|
|
return $crmDeliveryTypes;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getDeliveryTypes($default_lang, $intaroCrm)
|
|
|
|
{
|
|
|
|
$deliveryTypes = array();
|
|
|
|
|
2014-04-30 03:51:52 +04:00
|
|
|
$carriers = Carrier::getCarriers(
|
|
|
|
$default_lang, true, false, false,
|
|
|
|
null, PS_CARRIERS_AND_CARRIER_MODULES_NEED_RANGE
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!empty($carriers)) {
|
|
|
|
foreach ($carriers as $carrier) {
|
2014-05-08 20:11:28 +04:00
|
|
|
$deliveryTypes[] = array(
|
2014-04-30 03:51:52 +04:00
|
|
|
'type' => 'select',
|
|
|
|
'label' => $carrier['name'],
|
2014-05-08 20:11:28 +04:00
|
|
|
'name' => 'INTAROCRM_API_DELIVERY[' . $carrier['id_carrier'] . ']',
|
2014-04-30 03:51:52 +04:00
|
|
|
'required' => false,
|
|
|
|
'options' => array(
|
2014-05-08 20:11:28 +04:00
|
|
|
'query' => $this->getApiDeliveryTypes($intaroCrm),
|
2014-04-30 03:51:52 +04:00
|
|
|
'id' => 'id_option',
|
|
|
|
'name' => 'name'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-08 20:11:28 +04:00
|
|
|
return $deliveryTypes;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getApiStatuses($intaroCrm)
|
|
|
|
{
|
|
|
|
$crmStatusTypes = array();
|
2014-04-30 03:51:52 +04:00
|
|
|
|
|
|
|
try {
|
|
|
|
$statusTypes = $intaroCrm->orderStatusesList();
|
|
|
|
}
|
|
|
|
catch (\IntaroCrm\Exception\CurlException $e) {
|
|
|
|
error_log('statusTypesList: connection error');
|
|
|
|
}
|
|
|
|
catch (\IntaroCrm\Exception\ApiException $e) {
|
|
|
|
error_log('statusTypesList: ' . $e->getMessage());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($statusTypes)) {
|
|
|
|
$crmStatusTypes[] = array();
|
|
|
|
foreach ($statusTypes as $sType) {
|
|
|
|
$crmStatusTypes[] = array(
|
|
|
|
'id_option' => $sType['code'],
|
|
|
|
'name' => $sType['name']
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-08 20:11:28 +04:00
|
|
|
return $crmStatusTypes;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getStatusTypes($default_lang, $intaroCrm)
|
|
|
|
{
|
|
|
|
$statusTypes = array();
|
2014-04-30 03:51:52 +04:00
|
|
|
$states = OrderState::getOrderStates($default_lang, true);
|
|
|
|
|
|
|
|
if (!empty($states)) {
|
|
|
|
foreach ($states as $state) {
|
|
|
|
if ($state['name'] != ' ') {
|
2014-05-08 20:11:28 +04:00
|
|
|
$statusTypes[] = array(
|
2014-04-30 03:51:52 +04:00
|
|
|
'type' => 'select',
|
|
|
|
'label' => $state['name'],
|
2014-05-08 20:11:28 +04:00
|
|
|
'name' => 'INTAROCRM_API_STATUS[' . $state['id_order_state'] . ']',
|
2014-04-30 03:51:52 +04:00
|
|
|
'required' => false,
|
|
|
|
'options' => array(
|
2014-05-08 20:11:28 +04:00
|
|
|
'query' => $this->getApiStatuses($intaroCrm),
|
2014-04-30 03:51:52 +04:00
|
|
|
'id' => 'id_option',
|
|
|
|
'name' => 'name'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-08 20:11:28 +04:00
|
|
|
return $statusTypes;
|
|
|
|
}
|
2014-04-30 03:51:52 +04:00
|
|
|
|
2014-05-08 20:11:28 +04:00
|
|
|
protected function getApiPaymentTypes($intaroCrm)
|
|
|
|
{
|
|
|
|
$crmPaymentTypes = array();
|
2014-04-30 03:51:52 +04:00
|
|
|
|
2014-05-08 20:11:28 +04:00
|
|
|
try {
|
|
|
|
$paymentTypes = $intaroCrm->paymentTypesList();
|
|
|
|
}
|
|
|
|
catch (\IntaroCrm\Exception\CurlException $e) {
|
|
|
|
error_log('paymentTypesList: connection error');
|
|
|
|
}
|
|
|
|
catch (\IntaroCrm\Exception\ApiException $e) {
|
|
|
|
error_log('paymentTypesList: ' . $e->getMessage());
|
|
|
|
}
|
2014-04-30 03:51:52 +04:00
|
|
|
|
2014-05-08 20:11:28 +04:00
|
|
|
if (!empty($paymentTypes)) {
|
|
|
|
$crmPaymentTypes[] = array();
|
|
|
|
foreach ($paymentTypes as $pType) {
|
|
|
|
$crmPaymentTypes[] = array(
|
|
|
|
'id_option' => $pType['code'],
|
|
|
|
'name' => $pType['name']
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2014-04-30 03:51:52 +04:00
|
|
|
|
2014-05-08 20:11:28 +04:00
|
|
|
return $crmPaymentTypes;
|
|
|
|
}
|
2014-04-30 03:51:52 +04:00
|
|
|
|
2014-05-08 20:11:28 +04:00
|
|
|
protected function getPaymentTypes($intaroCrm)
|
|
|
|
{
|
|
|
|
$payments = $this->getSystemPaymentModules();
|
|
|
|
$paymentTypes = array();
|
2014-04-30 03:51:52 +04:00
|
|
|
|
2014-05-08 20:11:28 +04:00
|
|
|
if (!empty($payments)) {
|
|
|
|
foreach ($payments as $payment) {
|
|
|
|
$paymentTypes[] = array(
|
|
|
|
'type' => 'select',
|
|
|
|
'label' => $payment['name'],
|
2014-05-14 16:50:31 +04:00
|
|
|
'name' => 'INTAROCRM_API_PAYMENT[' . $payment['code'] . ']',
|
2014-05-08 20:11:28 +04:00
|
|
|
'required' => false,
|
|
|
|
'options' => array(
|
|
|
|
'query' => $this->getApiPaymentTypes($intaroCrm),
|
|
|
|
'id' => 'id_option',
|
|
|
|
'name' => 'name'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $paymentTypes;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getSystemPaymentModules()
|
|
|
|
{
|
|
|
|
$shop_id = Context::getContext()->shop->id;
|
|
|
|
|
|
|
|
/* Get all modules then select only payment ones */
|
|
|
|
$modules = Module::getModulesOnDisk(true);
|
|
|
|
|
2014-05-14 16:50:31 +04:00
|
|
|
/*
|
|
|
|
* Hack for knivesland
|
|
|
|
*/
|
|
|
|
if (Module::getInstanceByName('advancedcheckout') === false) {
|
|
|
|
foreach ($modules as $module) {
|
|
|
|
if ($module->tab == 'payments_gateways')
|
2014-05-08 20:11:28 +04:00
|
|
|
{
|
2014-05-14 16:50:31 +04:00
|
|
|
if ($module->id)
|
|
|
|
{
|
|
|
|
if (!get_class($module) == 'SimpleXMLElement')
|
|
|
|
$module->country = array();
|
|
|
|
$countries = DB::getInstance()->executeS('
|
2014-05-08 20:11:28 +04:00
|
|
|
SELECT id_country
|
|
|
|
FROM '._DB_PREFIX_.'module_country
|
|
|
|
WHERE id_module = '.(int)$module->id.' AND `id_shop`='.(int)$shop_id
|
2014-05-14 16:50:31 +04:00
|
|
|
);
|
|
|
|
foreach ($countries as $country)
|
|
|
|
$module->country[] = $country['id_country'];
|
2014-05-08 20:11:28 +04:00
|
|
|
|
2014-05-14 16:50:31 +04:00
|
|
|
if (!get_class($module) == 'SimpleXMLElement')
|
|
|
|
$module->currency = array();
|
|
|
|
$currencies = DB::getInstance()->executeS('
|
2014-05-08 20:11:28 +04:00
|
|
|
SELECT id_currency
|
|
|
|
FROM '._DB_PREFIX_.'module_currency
|
|
|
|
WHERE id_module = '.(int)$module->id.' AND `id_shop`='.(int)$shop_id
|
2014-05-14 16:50:31 +04:00
|
|
|
);
|
|
|
|
foreach ($currencies as $currency)
|
|
|
|
$module->currency[] = $currency['id_currency'];
|
2014-05-08 20:11:28 +04:00
|
|
|
|
2014-05-14 16:50:31 +04:00
|
|
|
if (!get_class($module) == 'SimpleXMLElement')
|
|
|
|
$module->group = array();
|
|
|
|
$groups = DB::getInstance()->executeS('
|
2014-05-08 20:11:28 +04:00
|
|
|
SELECT id_group
|
|
|
|
FROM '._DB_PREFIX_.'module_group
|
|
|
|
WHERE id_module = '.(int)$module->id.' AND `id_shop`='.(int)$shop_id
|
2014-05-14 16:50:31 +04:00
|
|
|
);
|
|
|
|
foreach ($groups as $group)
|
|
|
|
$module->group[] = $group['id_group'];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$module->country = null;
|
|
|
|
$module->currency = null;
|
|
|
|
$module->group = null;
|
|
|
|
}
|
2014-05-08 20:11:28 +04:00
|
|
|
|
2014-05-14 16:50:31 +04:00
|
|
|
if ($module->active != 0) {
|
|
|
|
$this->payment_modules[] = array(
|
|
|
|
'id' => $module->id,
|
|
|
|
'code' => $module->name,
|
|
|
|
'name' => $module->displayName
|
|
|
|
);
|
|
|
|
}
|
2014-05-08 20:11:28 +04:00
|
|
|
|
2014-05-14 16:50:31 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
require_once(dirname(__FILE__) . '/../advancedcheckout/classes/Payment.php');
|
|
|
|
$modules = Payment::getPaymentMethods();
|
|
|
|
foreach ($modules as $module) {
|
|
|
|
$this->payment_modules[] = array(
|
|
|
|
'id' => $module['id_payment'],
|
|
|
|
'code' => $module['name'],
|
|
|
|
'name' => $module['name']
|
|
|
|
);
|
2014-05-08 20:11:28 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->payment_modules;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getAddressFields()
|
|
|
|
{
|
|
|
|
$addressFields = array();
|
|
|
|
$address = explode(' ', str_replace("\n", ' ', AddressFormat::getAddressCountryFormat($this->context->country->id)));
|
|
|
|
|
|
|
|
if (!empty($address)) {
|
|
|
|
foreach ($address as $idx => $a) {
|
|
|
|
if (!strpos($a, ':')) {
|
|
|
|
$addressFields[] = array(
|
|
|
|
'type' => 'select',
|
|
|
|
'label' => $this->l((string)$a),
|
|
|
|
'name' => 'INTAROCRM_API_ADDR[' . $idx . ']',
|
|
|
|
'required' => false,
|
|
|
|
'options' => array(
|
|
|
|
'query' => array(
|
|
|
|
array(
|
|
|
|
'name' => '',
|
|
|
|
'id_option' => ''
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => $this->l('FIRST_NAME'),
|
|
|
|
'id_option' => 'first_name'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => $this->l('LAST_NAME'),
|
|
|
|
'id_option' => 'last_name'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => $this->l('PHONE'),
|
|
|
|
'id_option' => 'phone'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => $this->l('EMAIL'),
|
|
|
|
'id_option' => 'email'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => $this->l('ADDRESS'),
|
|
|
|
'id_option' => 'address'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => $this->l('COUNTRY'),
|
|
|
|
'id_option' => 'country'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => $this->l('REGION'),
|
|
|
|
'id_option' => 'region'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => $this->l('CITY'),
|
|
|
|
'id_option' => 'city'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => $this->l('ZIP'),
|
|
|
|
'id_option' => 'index'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => $this->l('STREET'),
|
|
|
|
'id_option' => 'street'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => $this->l('BUILDING'),
|
|
|
|
'id_option' => 'building'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => $this->l('FLAT'),
|
|
|
|
'id_option' => 'flat'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => $this->l('INTERCOMCODE'),
|
|
|
|
'id_option' => 'intercomcode'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => $this->l('FLOOR'),
|
|
|
|
'id_option' => 'floor'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => $this->l('BLOCK'),
|
|
|
|
'id_option' => 'block'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => $this->l('HOUSE'),
|
|
|
|
'ID' => 'house'
|
|
|
|
)
|
|
|
|
),
|
|
|
|
'id' => 'id_option',
|
|
|
|
'name' => 'name'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $addressFields;
|
2014-04-30 03:51:52 +04:00
|
|
|
}
|
2014-05-13 04:49:47 +04:00
|
|
|
|
|
|
|
public function exportCatalog()
|
|
|
|
{
|
|
|
|
global $smarty;
|
|
|
|
$shop_url = (Configuration::get('PS_SSL_ENABLED') ? _PS_BASE_URL_SSL_ : _PS_BASE_URL_);
|
|
|
|
$id_lang = (int)Configuration::get('PS_LANG_DEFAULT');
|
|
|
|
$currency = new Currency(Configuration::get('PS_CURRENCY_DEFAULT'));
|
|
|
|
if ($currency->iso_code == 'RUB')
|
|
|
|
$currency->iso_code = 'RUR';
|
|
|
|
|
|
|
|
// Get currencies
|
|
|
|
$currencies = Currency::getCurrencies();
|
|
|
|
|
|
|
|
// Get categories
|
|
|
|
$categories = Category::getCategories($id_lang, true, false);
|
|
|
|
|
|
|
|
// Get products
|
|
|
|
$products = Product::getProducts($id_lang, 0, 0, 'name', 'asc');
|
|
|
|
foreach ($products AS $product)
|
|
|
|
{
|
|
|
|
// Check for home category
|
|
|
|
$category = $product['id_category_default'];
|
|
|
|
if ($category == Configuration::get('PS_HOME_CATEGORY')) {
|
|
|
|
$temp_categories = Product::getProductCategories($product['id_product']);
|
|
|
|
|
|
|
|
foreach ($temp_categories AS $category) {
|
|
|
|
if ($category != Configuration::get('PS_HOME_CATEGORY'))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($category == Configuration::get('PS_HOME_CATEGORY')) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
$link = new Link();
|
|
|
|
$cover = Image::getCover($product['id_product']);
|
|
|
|
|
|
|
|
$picture = 'http://' . $link->getImageLink($product['link_rewrite'], $product['id_product'].'-'.$cover['id_image'], 'large_default');
|
|
|
|
if (!(substr($picture, 0, strlen($shop_url)) === $shop_url))
|
|
|
|
$picture = rtrim($shop_url,"/") . $picture;
|
|
|
|
$crewrite = Category::getLinkRewrite($product['id_category_default'], $id_lang);
|
|
|
|
$url = $link->getProductLink($product['id_product'], $product['link_rewrite'], $crewrite);
|
|
|
|
$version = substr(_PS_VERSION_, 0, 3);
|
|
|
|
if ($version == "1.3")
|
|
|
|
$available_for_order = $product['active'] && $product['quantity'];
|
|
|
|
else {
|
|
|
|
$prod = new Product($product['id_product']);
|
|
|
|
$available_for_order = $product['active'] && $product['available_for_order'] && $prod->checkQty(1);
|
|
|
|
}
|
|
|
|
$items[] = array('id_product' => $product['id_product'],
|
|
|
|
'available_for_order' => $available_for_order,
|
|
|
|
'price' => $product['price'],
|
|
|
|
'purchase_price' => $product['wholesale_price'],
|
|
|
|
'name' => htmlspecialchars(strip_tags($product['name'])),
|
|
|
|
'article' => htmlspecialchars($product['reference']),
|
|
|
|
'id_category_default' => $category,
|
|
|
|
'picture' => $picture,
|
|
|
|
'url' => $url
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($this->custom_attributes as $i => $value) {
|
|
|
|
$attr = Configuration::get($value);
|
|
|
|
$smarty->assign(strtolower($value), $attr);
|
|
|
|
}
|
|
|
|
|
|
|
|
$smarty->assign('currencies', $currencies);
|
|
|
|
$smarty->assign('currency', $currency->iso_code);
|
|
|
|
$smarty->assign('categories', $categories);
|
|
|
|
$smarty->assign('products', $items);
|
|
|
|
$smarty->assign('shop_name', Configuration::get('PS_SHOP_NAME'));
|
|
|
|
$smarty->assign('company', Configuration::get('PS_SHOP_NAME'));
|
|
|
|
$smarty->assign('shop_url', $shop_url . __PS_BASE_URI__);
|
|
|
|
return $this->display(__FILE__, 'export.tpl');
|
|
|
|
}
|
2014-04-30 03:51:52 +04:00
|
|
|
}
|