save config dinamic fields
This commit is contained in:
parent
ae03c8c881
commit
fb52912bd7
14 changed files with 710 additions and 23 deletions
|
@ -0,0 +1,95 @@
|
|||
<?php
|
||||
|
||||
namespace Retailcrm\Retailcrm\Block\Adminhtml\System\Config\Form\Fieldset;
|
||||
|
||||
class PaymentList extends \Magento\Config\Block\System\Config\Form\Field\FieldArray\AbstractFieldArray
|
||||
{
|
||||
/**
|
||||
* @var $_paymentCms \Retailcrm\Retailcrm\Model\Config\Backend\PaymentCms
|
||||
*/
|
||||
protected $_paymentCms;
|
||||
|
||||
/**
|
||||
* @var $_paymentCrm \Retailcrm\Retailcrm\Model\Config\Backend\PaymentCrm
|
||||
*/
|
||||
protected $_paymentCrm;
|
||||
|
||||
/**
|
||||
* @return \Magento\Framework\View\Element\BlockInterface
|
||||
* @throws \Magento\Framework\Exception\LocalizedException
|
||||
*/
|
||||
protected function _getPaymentCmsRenderer()
|
||||
{
|
||||
if (!$this->_paymentCms) {
|
||||
$this->_paymentCms = $this->getLayout()->createBlock(
|
||||
'\Retailcrm\Retailcrm\Model\Config\Backend\PaymentCms',
|
||||
'',
|
||||
['data' => ['is_render_to_js_template' => true]]
|
||||
);
|
||||
}
|
||||
|
||||
return $this->_paymentCms;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Magento\Framework\View\Element\BlockInterface
|
||||
* @throws \Magento\Framework\Exception\LocalizedException
|
||||
*/
|
||||
protected function _getPaymentCrmRenderer()
|
||||
{
|
||||
if (!$this->_paymentCrm) {
|
||||
$this->_paymentCrm = $this->getLayout()->createBlock(
|
||||
'\Retailcrm\Retailcrm\Model\Config\Backend\PaymentCrm',
|
||||
'',
|
||||
['data' => ['is_render_to_js_template' => true]]
|
||||
);
|
||||
}
|
||||
|
||||
return $this->_paymentCrm;
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws \Magento\Framework\Exception\LocalizedException
|
||||
*/
|
||||
protected function _prepareToRender()
|
||||
{
|
||||
$this->addColumn(
|
||||
'payment_cms',
|
||||
[
|
||||
'label' => __('CMS'),
|
||||
'renderer' => $this->_getPaymentCmsRenderer()
|
||||
]
|
||||
);
|
||||
|
||||
$this->addColumn(
|
||||
'payment_crm',
|
||||
[
|
||||
'label' => __('CRM'),
|
||||
'renderer' => $this->_getPaymentCrmRenderer()
|
||||
]
|
||||
);
|
||||
|
||||
$this->_addAfter = false;
|
||||
$this->_addButtonLabel = __('Add');
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param \Magento\Framework\DataObject $row
|
||||
* @throws \Magento\Framework\Exception\LocalizedException
|
||||
* @return void
|
||||
*/
|
||||
protected function _prepareArrayRow(\Magento\Framework\DataObject $row)
|
||||
{
|
||||
$options = [];
|
||||
$customAttribute = $row->getData('payment_cms');
|
||||
$key = 'option_' . $this->_getPaymentCmsRenderer()->calcOptionHash($customAttribute);
|
||||
$options[$key] = 'selected="selected"';
|
||||
|
||||
$customAttribute = $row->getData('payment_crm');
|
||||
$key = 'option_' . $this->_getPaymentCrmRenderer()->calcOptionHash($customAttribute);
|
||||
$options[$key] = 'selected="selected"';
|
||||
|
||||
$row->setData('option_extra_attrs', $options);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,95 @@
|
|||
<?php
|
||||
|
||||
namespace Retailcrm\Retailcrm\Block\Adminhtml\System\Config\Form\Fieldset;
|
||||
|
||||
class ShippingList extends \Magento\Config\Block\System\Config\Form\Field\FieldArray\AbstractFieldArray
|
||||
{
|
||||
/**
|
||||
* @var $_shippingCms \Retailcrm\Retailcrm\Model\Config\Backend\ShippingCms
|
||||
*/
|
||||
protected $_shippingCms;
|
||||
|
||||
/**
|
||||
* @var $_shippingCrm \Retailcrm\Retailcrm\Model\Config\Backend\ShippingCrm
|
||||
*/
|
||||
protected $_shippingCrm;
|
||||
|
||||
/**
|
||||
* @return \Magento\Framework\View\Element\BlockInterface
|
||||
* @throws \Magento\Framework\Exception\LocalizedException
|
||||
*/
|
||||
protected function _getShippingCmsRenderer()
|
||||
{
|
||||
if (!$this->_shippingCms) {
|
||||
$this->_shippingCms = $this->getLayout()->createBlock(
|
||||
'\Retailcrm\Retailcrm\Model\Config\Backend\ShippingCms',
|
||||
'',
|
||||
['data' => ['is_render_to_js_template' => true]]
|
||||
);
|
||||
}
|
||||
|
||||
return $this->_shippingCms;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Magento\Framework\View\Element\BlockInterface
|
||||
* @throws \Magento\Framework\Exception\LocalizedException
|
||||
*/
|
||||
protected function _getShippingCrmRenderer()
|
||||
{
|
||||
if (!$this->_shippingCrm) {
|
||||
$this->_shippingCrm = $this->getLayout()->createBlock(
|
||||
'\Retailcrm\Retailcrm\Model\Config\Backend\ShippingCrm',
|
||||
'',
|
||||
['data' => ['is_render_to_js_template' => true]]
|
||||
);
|
||||
}
|
||||
|
||||
return $this->_shippingCrm;
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws \Magento\Framework\Exception\LocalizedException
|
||||
*/
|
||||
protected function _prepareToRender()
|
||||
{
|
||||
$this->addColumn(
|
||||
'shipping_cms',
|
||||
[
|
||||
'label' => __('CMS'),
|
||||
'renderer' => $this->_getShippingCmsRenderer()
|
||||
]
|
||||
);
|
||||
|
||||
$this->addColumn(
|
||||
'shipping_crm',
|
||||
[
|
||||
'label' => __('CRM'),
|
||||
'renderer' => $this->_getShippingCrmRenderer()
|
||||
]
|
||||
);
|
||||
|
||||
$this->_addAfter = false;
|
||||
$this->_addButtonLabel = __('Add');
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param \Magento\Framework\DataObject $row
|
||||
* @throws \Magento\Framework\Exception\LocalizedException
|
||||
* @return void
|
||||
*/
|
||||
protected function _prepareArrayRow(\Magento\Framework\DataObject $row)
|
||||
{
|
||||
$options = [];
|
||||
$customAttribute = $row->getData('shipping_cms');
|
||||
$key = 'option_' . $this->_getShippingCmsRenderer()->calcOptionHash($customAttribute);
|
||||
$options[$key] = 'selected="selected"';
|
||||
|
||||
$customAttribute = $row->getData('shipping_crm');
|
||||
$key = 'option_' . $this->_getShippingCrmRenderer()->calcOptionHash($customAttribute);
|
||||
$options[$key] = 'selected="selected"';
|
||||
|
||||
$row->setData('option_extra_attrs', $options);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,95 @@
|
|||
<?php
|
||||
|
||||
namespace Retailcrm\Retailcrm\Block\Adminhtml\System\Config\Form\Fieldset;
|
||||
|
||||
class StatusList extends \Magento\Config\Block\System\Config\Form\Field\FieldArray\AbstractFieldArray
|
||||
{
|
||||
/**
|
||||
* @var $_statusCms \Retailcrm\Retailcrm\Model\Config\Backend\StatusCms
|
||||
*/
|
||||
protected $_statusCms;
|
||||
|
||||
/**
|
||||
* @var $_statusCrm \Retailcrm\Retailcrm\Model\Config\Backend\StatusCrm
|
||||
*/
|
||||
protected $_statusCrm;
|
||||
|
||||
/**
|
||||
* @return \Magento\Framework\View\Element\BlockInterface
|
||||
* @throws \Magento\Framework\Exception\LocalizedException
|
||||
*/
|
||||
protected function _getStatusCmsRenderer()
|
||||
{
|
||||
if (!$this->_statusCms) {
|
||||
$this->_statusCms = $this->getLayout()->createBlock(
|
||||
'\Retailcrm\Retailcrm\Model\Config\Backend\StatusCms',
|
||||
'',
|
||||
['data' => ['is_render_to_js_template' => true]]
|
||||
);
|
||||
}
|
||||
|
||||
return $this->_statusCms;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Magento\Framework\View\Element\BlockInterface
|
||||
* @throws \Magento\Framework\Exception\LocalizedException
|
||||
*/
|
||||
protected function _getStatusCrmRenderer()
|
||||
{
|
||||
if (!$this->_statusCrm) {
|
||||
$this->_statusCrm = $this->getLayout()->createBlock(
|
||||
'\Retailcrm\Retailcrm\Model\Config\Backend\StatusCrm',
|
||||
'',
|
||||
['data' => ['is_render_to_js_template' => true]]
|
||||
);
|
||||
}
|
||||
|
||||
return $this->_statusCrm;
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws \Magento\Framework\Exception\LocalizedException
|
||||
*/
|
||||
protected function _prepareToRender()
|
||||
{
|
||||
$this->addColumn(
|
||||
'status_cms',
|
||||
[
|
||||
'label' => __('CMS'),
|
||||
'renderer' => $this->_getStatusCmsRenderer()
|
||||
]
|
||||
);
|
||||
|
||||
$this->addColumn(
|
||||
'status_crm',
|
||||
[
|
||||
'label' => __('CRM'),
|
||||
'renderer' => $this->_getStatusCrmRenderer()
|
||||
]
|
||||
);
|
||||
|
||||
$this->_addAfter = false;
|
||||
$this->_addButtonLabel = __('Add');
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param \Magento\Framework\DataObject $row
|
||||
* @throws \Magento\Framework\Exception\LocalizedException
|
||||
* @return void
|
||||
*/
|
||||
protected function _prepareArrayRow(\Magento\Framework\DataObject $row)
|
||||
{
|
||||
$options = [];
|
||||
$customAttribute = $row->getData('status_cms');
|
||||
$key = 'option_' . $this->_getStatusCmsRenderer()->calcOptionHash($customAttribute);
|
||||
$options[$key] = 'selected="selected"';
|
||||
|
||||
$customAttribute = $row->getData('status_crm');
|
||||
$key = 'option_' . $this->_getStatusCrmRenderer()->calcOptionHash($customAttribute);
|
||||
$options[$key] = 'selected="selected"';
|
||||
|
||||
$row->setData('option_extra_attrs', $options);
|
||||
}
|
||||
}
|
|
@ -11,6 +11,7 @@ use Magento\Store\Model\ScopeInterface;
|
|||
class Data extends AbstractHelper
|
||||
{
|
||||
private $storeManager;
|
||||
private $json;
|
||||
|
||||
const XML_PATH_RETAILCRM = 'retailcrm/';
|
||||
const XML_PATH_DEFAULT_SITE = 'retailcrm_site/default';
|
||||
|
@ -19,9 +20,11 @@ class Data extends AbstractHelper
|
|||
const XML_PATH_INVENTORIES = 'inventories_upload/';
|
||||
|
||||
public function __construct(
|
||||
\Magento\Framework\Serialize\Serializer\Json $json,
|
||||
Context $context,
|
||||
StoreManagerInterface $storeManager
|
||||
) {
|
||||
$this->json = $json;
|
||||
$this->storeManager = $storeManager;
|
||||
parent::__construct($context);
|
||||
}
|
||||
|
@ -206,4 +209,46 @@ class Data extends AbstractHelper
|
|||
|
||||
return $haystack;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function getConfigPayments()
|
||||
{
|
||||
$json = $this->scopeConfig->getValue('retailcrm/paymentList/paymentList');
|
||||
$List = $this->json->unserialize($json);
|
||||
foreach ($List as $code => $el) {
|
||||
$payments[$el['payment_cms']] = $el['payment_crm'];
|
||||
}
|
||||
|
||||
return $payments;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function getCongigShipping()
|
||||
{
|
||||
$json = $this->scopeConfig->getValue('retailcrm/shippingList/shippingList');
|
||||
$shippingList = $this->json->unserialize($json);
|
||||
foreach ($shippingList as $code => $el) {
|
||||
$shippings[$el['shipping_cms']] = $el['shipping_crm'];
|
||||
}
|
||||
|
||||
return $shippings;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function getCongigStatus()
|
||||
{
|
||||
$json = $this->scopeConfig->getValue('retailcrm/statusList/statusList');
|
||||
$List = $this->json->unserialize($json);
|
||||
foreach ($List as $code => $el) {
|
||||
$statusList[$el['status_cms']] = $el['status_crm'];
|
||||
}
|
||||
|
||||
return $statusList;
|
||||
}
|
||||
}
|
||||
|
|
56
src/Model/Config/Backend/PaymentCms.php
Normal file
56
src/Model/Config/Backend/PaymentCms.php
Normal file
|
@ -0,0 +1,56 @@
|
|||
<?php
|
||||
|
||||
namespace Retailcrm\Retailcrm\Model\Config\Backend;
|
||||
|
||||
class PaymentCms extends \Magento\Framework\View\Element\Html\Select
|
||||
{
|
||||
/**
|
||||
* @var \Magento\Payment\Model\Config
|
||||
*/
|
||||
private $paymentConfig;
|
||||
|
||||
/**
|
||||
* PaymentCms constructor.
|
||||
*
|
||||
* @param \Magento\Framework\View\Element\Context $context
|
||||
* @param \Magento\Payment\Model\Config $paymentConfig
|
||||
* @param array $data
|
||||
*/
|
||||
public function __construct(
|
||||
\Magento\Framework\View\Element\Context $context,
|
||||
\Magento\Payment\Model\Config $paymentConfig,
|
||||
array $data = []
|
||||
) {
|
||||
parent::__construct($context, $data);
|
||||
|
||||
$this->paymentConfig = $paymentConfig;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $value
|
||||
* @return Magently\Tutorial\Block\Adminhtml\Form\Field\Activation
|
||||
*/
|
||||
public function setInputName($value)
|
||||
{
|
||||
return $this->setName($value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Parse to html.
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function _toHtml()
|
||||
{
|
||||
if (!$this->getOptions()) {
|
||||
|
||||
$paymentMethods = $this->paymentConfig->getActiveMethods();
|
||||
|
||||
foreach ($paymentMethods as $code => $payment) {
|
||||
$this->addOption($payment->getCode(), $payment->getTitle());
|
||||
}
|
||||
}
|
||||
|
||||
return parent::_toHtml();
|
||||
}
|
||||
}
|
59
src/Model/Config/Backend/PaymentCrm.php
Normal file
59
src/Model/Config/Backend/PaymentCrm.php
Normal file
|
@ -0,0 +1,59 @@
|
|||
<?php
|
||||
|
||||
namespace Retailcrm\Retailcrm\Model\Config\Backend;
|
||||
|
||||
class PaymentCrm extends \Magento\Framework\View\Element\Html\Select
|
||||
{
|
||||
/**
|
||||
* @var \Retailcrm\Retailcrm\Helper\Proxy
|
||||
*/
|
||||
private $client;
|
||||
/**
|
||||
* Activation constructor.
|
||||
*
|
||||
* @param \Magento\Framework\View\Element\Context $context
|
||||
* @param array $data
|
||||
*/
|
||||
public function __construct(
|
||||
\Magento\Framework\View\Element\Context $context,
|
||||
\Retailcrm\Retailcrm\Helper\Proxy $client,
|
||||
array $data = []
|
||||
) {
|
||||
parent::__construct($context, $data);
|
||||
|
||||
$this->client = $client;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $value
|
||||
* @return Magently\Tutorial\Block\Adminhtml\Form\Field\Activation
|
||||
*/
|
||||
public function setInputName($value)
|
||||
{
|
||||
return $this->setName($value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Parse to html.
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function _toHtml()
|
||||
{
|
||||
if (!$this->getOptions()) {
|
||||
|
||||
$response = $this->client->paymentTypesList();
|
||||
|
||||
if ($response->isSuccessful()) {
|
||||
$paymentsTypes = $response['paymentTypes'];
|
||||
}
|
||||
|
||||
$this->addOption( 'null', " ");
|
||||
foreach ($paymentsTypes as $paymentsType) {
|
||||
$this->addOption($paymentsType['code'], $paymentsType['name']);
|
||||
}
|
||||
}
|
||||
|
||||
return parent::_toHtml();
|
||||
}
|
||||
}
|
55
src/Model/Config/Backend/ShippingCms.php
Normal file
55
src/Model/Config/Backend/ShippingCms.php
Normal file
|
@ -0,0 +1,55 @@
|
|||
<?php
|
||||
|
||||
namespace Retailcrm\Retailcrm\Model\Config\Backend;
|
||||
|
||||
class ShippingCms extends \Magento\Framework\View\Element\Html\Select
|
||||
{
|
||||
/**
|
||||
* @var \Magento\Shipping\Model\Config
|
||||
*/
|
||||
private $shippingConfig;
|
||||
|
||||
/**
|
||||
* ShippingColumn constructor.
|
||||
*
|
||||
* @param \Magento\Framework\View\Element\Context $context
|
||||
* @param \Magento\Shipping\Model\Config $shippingConfig
|
||||
* @param array $data
|
||||
*/
|
||||
public function __construct(
|
||||
\Magento\Framework\View\Element\Context $context,
|
||||
\Magento\Shipping\Model\Config $shippingConfig,
|
||||
array $data = []
|
||||
) {
|
||||
parent::__construct($context, $data);
|
||||
|
||||
$this->shippingConfig = $shippingConfig;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $value
|
||||
* @return Magently\Tutorial\Block\Adminhtml\Form\Field\Activation
|
||||
*/
|
||||
public function setInputName($value)
|
||||
{
|
||||
return $this->setName($value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Parse to html.
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function _toHtml()
|
||||
{
|
||||
if (!$this->getOptions()) {
|
||||
$deliveryMethods = $this->shippingConfig->getActiveCarriers();
|
||||
|
||||
foreach ($deliveryMethods as $code => $delivery) {
|
||||
$this->addOption($delivery->getCarrierCode(), $delivery->getConfigData('title'));
|
||||
}
|
||||
}
|
||||
|
||||
return parent::_toHtml();
|
||||
}
|
||||
}
|
59
src/Model/Config/Backend/ShippingCrm.php
Normal file
59
src/Model/Config/Backend/ShippingCrm.php
Normal file
|
@ -0,0 +1,59 @@
|
|||
<?php
|
||||
|
||||
namespace Retailcrm\Retailcrm\Model\Config\Backend;
|
||||
|
||||
class ShippingCrm extends \Magento\Framework\View\Element\Html\Select
|
||||
{
|
||||
/**
|
||||
* @var \Retailcrm\Retailcrm\Helper\Proxy
|
||||
*/
|
||||
private $client;
|
||||
/**
|
||||
* Activation constructor.
|
||||
*
|
||||
* @param \Magento\Framework\View\Element\Context $context
|
||||
* @param array $data
|
||||
*/
|
||||
public function __construct(
|
||||
\Magento\Framework\View\Element\Context $context,
|
||||
\Retailcrm\Retailcrm\Helper\Proxy $client,
|
||||
array $data = []
|
||||
) {
|
||||
parent::__construct($context, $data);
|
||||
|
||||
$this->client = $client;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $value
|
||||
* @return Magently\Tutorial\Block\Adminhtml\Form\Field\Activation
|
||||
*/
|
||||
public function setInputName($value)
|
||||
{
|
||||
return $this->setName($value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Parse to html.
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function _toHtml()
|
||||
{
|
||||
if (!$this->getOptions()) {
|
||||
|
||||
$response = $this->client->deliveryTypesList();
|
||||
|
||||
if ($response->isSuccessful()) {
|
||||
$deliveryTypes = $response['deliveryTypes'];
|
||||
}
|
||||
|
||||
$this->addOption( 'null', " ");
|
||||
foreach ($deliveryTypes as $deliveryType) {
|
||||
$this->addOption($deliveryType['code'], $deliveryType['name']);
|
||||
}
|
||||
}
|
||||
|
||||
return parent::_toHtml();
|
||||
}
|
||||
}
|
55
src/Model/Config/Backend/StatusCms.php
Normal file
55
src/Model/Config/Backend/StatusCms.php
Normal file
|
@ -0,0 +1,55 @@
|
|||
<?php
|
||||
|
||||
namespace Retailcrm\Retailcrm\Model\Config\Backend;
|
||||
|
||||
class StatusCms extends \Magento\Framework\View\Element\Html\Select
|
||||
{
|
||||
/**
|
||||
* @var \Magento\Sales\Model\ResourceModel\Order\Status\Collection
|
||||
*/
|
||||
private $statusCollection;
|
||||
|
||||
/**
|
||||
* StatusCms constructor.
|
||||
*
|
||||
* @param \Magento\Framework\View\Element\Context $context
|
||||
* @param \Magento\Sales\Model\ResourceModel\Order\Status\Collection $statusCollection
|
||||
* @param array $data
|
||||
*/
|
||||
public function __construct(
|
||||
\Magento\Framework\View\Element\Context $context,
|
||||
\Magento\Sales\Model\ResourceModel\Order\Status\Collection $statusCollection,
|
||||
array $data = []
|
||||
) {
|
||||
parent::__construct($context, $data);
|
||||
|
||||
$this->statusCollection = $statusCollection;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $value
|
||||
* @return Magently\Tutorial\Block\Adminhtml\Form\Field\Activation
|
||||
*/
|
||||
public function setInputName($value)
|
||||
{
|
||||
return $this->setName($value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Parse to html.
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function _toHtml()
|
||||
{
|
||||
if (!$this->getOptions()) {
|
||||
$statuses = $this->statusCollection->toOptionArray();
|
||||
|
||||
foreach ($statuses as $code => $status) {
|
||||
$this->addOption( $status['value'], $status['label']);
|
||||
}
|
||||
}
|
||||
|
||||
return parent::_toHtml();
|
||||
}
|
||||
}
|
59
src/Model/Config/Backend/StatusCrm.php
Normal file
59
src/Model/Config/Backend/StatusCrm.php
Normal file
|
@ -0,0 +1,59 @@
|
|||
<?php
|
||||
|
||||
namespace Retailcrm\Retailcrm\Model\Config\Backend;
|
||||
|
||||
class StatusCrm extends \Magento\Framework\View\Element\Html\Select
|
||||
{
|
||||
/**
|
||||
* @var \Retailcrm\Retailcrm\Helper\Proxy
|
||||
*/
|
||||
private $client;
|
||||
/**
|
||||
* Activation constructor.
|
||||
*
|
||||
* @param \Magento\Framework\View\Element\Context $context
|
||||
* @param array $data
|
||||
*/
|
||||
public function __construct(
|
||||
\Magento\Framework\View\Element\Context $context,
|
||||
\Retailcrm\Retailcrm\Helper\Proxy $client,
|
||||
array $data = []
|
||||
) {
|
||||
parent::__construct($context, $data);
|
||||
|
||||
$this->client = $client;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $value
|
||||
* @return Magently\Tutorial\Block\Adminhtml\Form\Field\Activation
|
||||
*/
|
||||
public function setInputName($value)
|
||||
{
|
||||
return $this->setName($value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Parse to html.
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function _toHtml()
|
||||
{
|
||||
if (!$this->getOptions()) {
|
||||
|
||||
$response = $this->client->statusesList();
|
||||
|
||||
if ($response->isSuccessful()) {
|
||||
$statuses = $response['statuses'];
|
||||
}
|
||||
|
||||
$this->addOption( 'null', " ");
|
||||
foreach ($statuses as $status) {
|
||||
$this->addOption($status['code'], $status['name']);
|
||||
}
|
||||
}
|
||||
|
||||
return parent::_toHtml();
|
||||
}
|
||||
}
|
|
@ -161,8 +161,8 @@ class Exchange
|
|||
{
|
||||
$this->logger->writeDump($order, 'doCreate');
|
||||
|
||||
$payments = $this->config->getValue('retailcrm/retailcrm_payment');
|
||||
$shippings = $this->config->getValue('retailcrm/retailcrm_shipping');
|
||||
$payments = $this->helper->getConfigPayments();
|
||||
$shippings = $this->helper->getCongigShipping();
|
||||
$sites = $this->helper->getMappingSites();
|
||||
|
||||
if ($sites && in_array($order['site'], $sites)) {
|
||||
|
@ -242,7 +242,7 @@ class Exchange
|
|||
//add items in quote
|
||||
foreach ($ditems as $id =>$item) {
|
||||
$product = $productRepository->getById($id,false, $store->getId(), false);
|
||||
$product->setPrice($item['price_item']);
|
||||
$product->setPrice($item['initialPrice']);
|
||||
$quote->addProduct(
|
||||
$product,
|
||||
(int)$item['quantity']
|
||||
|
@ -349,8 +349,8 @@ class Exchange
|
|||
$order = $response['order'];
|
||||
}
|
||||
|
||||
$payments = $this->config->getValue('retailcrm/retailcrm_payment');
|
||||
$shippings = $this->config->getValue('retailcrm/retailcrm_shipping');
|
||||
$payments = $this->helper->getConfigPayments();
|
||||
$shippings = $this->helper->getCongigShipping();
|
||||
|
||||
$region = $this->regionFactory->create();
|
||||
$sites = $this->helper->getMappingSites();
|
||||
|
@ -411,7 +411,7 @@ class Exchange
|
|||
//add items in quote
|
||||
foreach ($ditems as $id => $item) {
|
||||
$product = $productRepository->getById($id,false, $store->getId(), false);
|
||||
$product->setPrice($item['price_item']);
|
||||
$product->setPrice($item['initialPrice']);
|
||||
$quote->addProduct(
|
||||
$product,
|
||||
(int)$item['quantity']
|
||||
|
@ -520,7 +520,7 @@ class Exchange
|
|||
{
|
||||
$this->logger->writeDump($order, 'doUpdate');
|
||||
|
||||
$Status = $this->config->getValue('retailcrm/retailcrm_status');
|
||||
$Status = $this->helper->getCongigStatus();
|
||||
$Status = array_flip(array_filter($Status));
|
||||
|
||||
$magentoOrder = $this->order->load($order['externalId']);
|
||||
|
|
|
@ -53,9 +53,11 @@ class OrderUpdate implements \Magento\Framework\Event\ObserverInterface
|
|||
$order = $observer->getEvent()->getOrder();
|
||||
|
||||
if ($order) {
|
||||
$statusList = $this->helper->getCongigStatus();
|
||||
|
||||
$this->order = [
|
||||
'externalId' => $order->getId(),
|
||||
'status' => $this->config->getValue('retailcrm/retailcrm_status/' . $order->getStatus())
|
||||
'status' => $statusList[$order->getStatus()]
|
||||
];
|
||||
|
||||
if ($order->getBaseTotalDue() == 0) {
|
||||
|
|
|
@ -37,6 +37,10 @@ class Order implements \Retailcrm\Retailcrm\Api\OrderManagerInterface
|
|||
$shippingAddress = $order->getShippingAddress();
|
||||
$shipping = $this->getShippingCode($order->getShippingMethod());
|
||||
|
||||
$shipList = $this->helper->getCongigShipping();
|
||||
$statusList = $this->helper->getCongigStatus();
|
||||
$paymentList = $this->helper->getConfigPayments();
|
||||
|
||||
$preparedOrder = [
|
||||
'externalId' => $order->getId(),
|
||||
'number' => $order->getRealOrderId(),
|
||||
|
@ -46,10 +50,10 @@ class Order implements \Retailcrm\Retailcrm\Api\OrderManagerInterface
|
|||
'patronymic' => $shippingAddress->getMiddlename(),
|
||||
'email' => $shippingAddress->getEmail(),
|
||||
'phone' => $shippingAddress->getTelephone(),
|
||||
'status' => $this->config->getValue('retailcrm/retailcrm_status/' . $order->getStatus()),
|
||||
'status' => $statusList[$order->getStatus()],
|
||||
'items' => $products,
|
||||
'delivery' => [
|
||||
'code' => $this->config->getValue('retailcrm/retailcrm_shipping/' . $shipping),
|
||||
'code' => $shipList[$shipping],
|
||||
'cost' => $order->getShippingAmount(),
|
||||
'address' => [
|
||||
'index' => $shippingAddress->getData('postcode'),
|
||||
|
@ -80,15 +84,11 @@ class Order implements \Retailcrm\Retailcrm\Api\OrderManagerInterface
|
|||
|
||||
if ($this->helper->getGeneralSettings('api_version') == 'v4') {
|
||||
$preparedOrder['discount'] = abs($order->getDiscountAmount());
|
||||
$preparedOrder['paymentType'] = $this->config->getValue(
|
||||
'retailcrm/retailcrm_payment/' . $order->getPayment()->getMethodInstance()->getCode()
|
||||
);
|
||||
$preparedOrder['paymentType'] = $paymentList[$order->getPayment()->getMethodInstance()->getCode()];
|
||||
} elseif ($this->helper->getGeneralSettings('api_version') == 'v5') {
|
||||
$preparedOrder['discountManualAmount'] = abs($order->getDiscountAmount());
|
||||
$payment = [
|
||||
'type' => $this->config->getValue(
|
||||
'retailcrm/retailcrm_payment/' . $order->getPayment()->getMethodInstance()->getCode()
|
||||
),
|
||||
'type'=> $paymentList[$order->getPayment()->getMethodInstance()->getCode()],
|
||||
'externalId' => $codeShop.$order->getId(),
|
||||
'order' => [
|
||||
'externalId' => $order->getId(),
|
||||
|
|
|
@ -34,17 +34,29 @@
|
|||
<source_model>Retailcrm\Retailcrm\Model\Setting\Attribute</source_model>
|
||||
</field>
|
||||
</group>
|
||||
<group id="shipping" translate="label" type="select" sortOrder="30" showInDefault="1" showInWebsite="1" showInStore="1">
|
||||
<group id="shippingList" translate="label" type="select" sortOrder="30" showInDefault="1" showInWebsite="1" showInStore="1">
|
||||
<label>Delivery types</label>
|
||||
<frontend_model>Retailcrm\Retailcrm\Block\Adminhtml\System\Config\Form\Fieldset\Shipping</frontend_model>
|
||||
<field id="shippingList" translate="label" sortOrder="5" showInDefault="1" showInWebsite="1" showInStore="1">
|
||||
<label>shipping settings</label>
|
||||
<frontend_model>Retailcrm\Retailcrm\Block\Adminhtml\System\Config\Form\Fieldset\ShippingList</frontend_model>
|
||||
<backend_model>Magento\Config\Model\Config\Backend\Serialized\ArraySerialized</backend_model>
|
||||
</field>
|
||||
</group>
|
||||
<group id="payment" translate="label comment" type="select" sortOrder="40" showInDefault="1" showInWebsite="1" showInStore="1">
|
||||
<group id="paymentList" translate="label" type="select" sortOrder="30" showInDefault="1" showInWebsite="1" showInStore="1">
|
||||
<label>Payment types</label>
|
||||
<frontend_model>Retailcrm\Retailcrm\Block\Adminhtml\System\Config\Form\Fieldset\Payment</frontend_model>
|
||||
<field id="paymentList" translate="label" sortOrder="5" showInDefault="1" showInWebsite="1" showInStore="1">
|
||||
<label>payment settings</label>
|
||||
<frontend_model>Retailcrm\Retailcrm\Block\Adminhtml\System\Config\Form\Fieldset\PaymentList</frontend_model>
|
||||
<backend_model>Magento\Config\Model\Config\Backend\Serialized\ArraySerialized</backend_model>
|
||||
</field>
|
||||
</group>
|
||||
<group id="status" translate="label" type="select" sortOrder="50" showInDefault="1" showInWebsite="1" showInStore="1">
|
||||
<label>Order statuses</label>
|
||||
<frontend_model>Retailcrm\Retailcrm\Block\Adminhtml\System\Config\Form\Fieldset\Status</frontend_model>
|
||||
<group id="statusList" translate="label" type="select" sortOrder="30" showInDefault="1" showInWebsite="1" showInStore="1">
|
||||
<label>Status types</label>
|
||||
<field id="statusList" translate="label" sortOrder="5" showInDefault="1" showInWebsite="1" showInStore="1">
|
||||
<label>status settings</label>
|
||||
<frontend_model>Retailcrm\Retailcrm\Block\Adminhtml\System\Config\Form\Fieldset\StatusList</frontend_model>
|
||||
<backend_model>Magento\Config\Model\Config\Backend\Serialized\ArraySerialized</backend_model>
|
||||
</field>
|
||||
</group>
|
||||
<group id="load" translate="label" type="text" sortOrder="80" showInDefault="1" showInWebsite="1" showInStore="1">
|
||||
<label>Uploading orders</label>
|
||||
|
|
Loading…
Add table
Reference in a new issue