99 lines
2.7 KiB
PHP
99 lines
2.7 KiB
PHP
<?php
|
|
namespace Retailcrm\Retailcrm\Block\Adminhtml\System\Config\Form\Field;
|
|
|
|
use Retailcrm\Retailcrm\Block\Adminhtml\System\Config\Form\Field\Base;
|
|
use Magento\Framework\Data\Form\Element\AbstractElement;
|
|
|
|
class Shipping extends \Magento\Config\Block\System\Config\Form\Field
|
|
{
|
|
protected $_apiUrl;
|
|
protected $_apiKey;
|
|
protected $_systemStore;
|
|
protected $_formFactory;
|
|
protected $_logger;
|
|
|
|
public function __construct(
|
|
\Magento\Framework\Data\FormFactory $formFactory,
|
|
\Magento\Store\Model\System\Store $systemStore
|
|
)
|
|
{
|
|
$om = \Magento\Framework\App\ObjectManager::getInstance();
|
|
$logger = $om->get('\Psr\Log\LoggerInterface');
|
|
$this->_logger = $logger;
|
|
|
|
$base = new Base;
|
|
|
|
$this->_apiUrl = $base->_apiUrl;
|
|
$this->_apiKey = $base->_apiKey;
|
|
|
|
$this->_systemStore = $systemStore;
|
|
$this->_formFactory = $formFactory;
|
|
|
|
}
|
|
|
|
public function render(AbstractElement $element)
|
|
{
|
|
$values = $element->getValues();
|
|
$html = '';
|
|
|
|
if(!empty($this->_apiUrl) && !empty($this->_apiKey)) {
|
|
|
|
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
|
|
$shipConfig = $objectManager->get('Magento\Shipping\Model\Config');
|
|
$deliveryMethods = $shipConfig->getActiveCarriers();
|
|
|
|
$client = new \Retailcrm\Retailcrm\Model\ApiClient\ApiClient($this->_apiUrl,$this->_apiKey);
|
|
|
|
try {
|
|
$response = $client->deliveryTypesList();
|
|
if ($response->isSuccessful()&&200 === $response->getStatusCode()) {
|
|
$deliveryTypes = $response['deliveryTypes'];
|
|
}
|
|
} catch (Retailcrm\Retailcrm\Model\ApiClient\Exception\CurlException $e) {
|
|
$this->_logger->addDebug($e->getMessage());
|
|
}
|
|
|
|
$config = \Magento\Framework\App\ObjectManager::getInstance()->get(
|
|
'Magento\Framework\App\Config\ScopeConfigInterface'
|
|
);
|
|
|
|
foreach (array_keys($deliveryMethods) as $k=>$delivery){
|
|
$html .='<table id="' . $element->getId() . '_table">';
|
|
$html .='<tr id="row_retailcrm_shipping_'.$delivery.'">';
|
|
$html .='<td class="label">'.$delivery.'</td>';
|
|
$html .='<td>';
|
|
$html .='<select id="1" name="groups[Shipping][fields]['.$delivery.'][value]">';
|
|
|
|
$selected = $config->getValue('retailcrm/Shipping/'.$delivery);
|
|
|
|
foreach ($deliveryTypes as $k=>$value){
|
|
|
|
if((!empty($selected))&&(($selected==$value['code']))){
|
|
$select ='selected="selected"';
|
|
}else{
|
|
$select ='';
|
|
}
|
|
|
|
$html .='<option '.$select.' value="'.$value['code'].'"> '.$value['name'].'</option>';
|
|
}
|
|
$html .='</select>';
|
|
$html .='</td>';
|
|
$html .='</tr>';
|
|
$html .='</table>';
|
|
|
|
}
|
|
|
|
return $html;
|
|
|
|
} else {
|
|
$html .= '<div style="margin-left: 15px;"><b><i>Please check your API Url & API Key</i></b></div>';
|
|
}
|
|
|
|
$html = '</div>';
|
|
|
|
return $html;
|
|
|
|
}
|
|
|
|
|
|
} |