@@ -111,7 +111,7 @@ |
||
| 111 | 111 | Table::TYPE_TIMESTAMP, |
| 112 | 112 | null, |
| 113 | 113 | array('nullable'=>false, |
| 114 | - 'default'=>Table::TIMESTAMP_INIT) |
|
| 114 | + 'default'=>Table::TIMESTAMP_INIT) |
|
| 115 | 115 | ); |
| 116 | 116 | return $dbConnection->createTable($table); |
| 117 | 117 | } |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | $secretKey = $this->getRequest()->getParam('secret'); |
| 45 | 45 | $privateKey = isset($this->config['pagantis_private_key']) ? $this->config['pagantis_private_key'] : null; |
| 46 | 46 | |
| 47 | - if ($secretKey!='' && $privateKey!='') { |
|
| 47 | + if ($secretKey != '' && $privateKey != '') { |
|
| 48 | 48 | $this->checkDbLogTable(); |
| 49 | 49 | /** @var \Magento\Framework\DB\Adapter\AdapterInterface $dbConnection */ |
| 50 | 50 | $dbConnection = $this->dbObject->getConnection(); |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | } elseif ($_SERVER['REQUEST_METHOD'] == 'POST') { |
| 73 | 73 | if (count($_POST)) { |
| 74 | 74 | foreach ($_POST as $config => $value) { |
| 75 | - if (isset($this->defaultConfigs[$config]) && $response['status']==null) { |
|
| 75 | + if (isset($this->defaultConfigs[$config]) && $response['status'] == null) { |
|
| 76 | 76 | $dbConnection->update( |
| 77 | 77 | $tableName, |
| 78 | 78 | array('value' => $value), |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | } |
| 91 | 91 | |
| 92 | 92 | $formattedResult = array(); |
| 93 | - if ($response['status']==null) { |
|
| 93 | + if ($response['status'] == null) { |
|
| 94 | 94 | $dbResult = $dbConnection->fetchAll("select * from $tableName"); |
| 95 | 95 | foreach ($dbResult as $value) { |
| 96 | 96 | $formattedResult[$value['config']] = $value['value']; |
@@ -20,20 +20,20 @@ |
||
| 20 | 20 | * @var array $defaultConfigs |
| 21 | 21 | */ |
| 22 | 22 | public $defaultConfigs = array('PAGANTIS_TITLE'=>'Instant Financing', |
| 23 | - 'PAGANTIS_SIMULATOR_DISPLAY_TYPE'=>'pgSDK.simulator.types.SIMPLE', |
|
| 24 | - 'PAGANTIS_SIMULATOR_DISPLAY_SKIN'=>'pgSDK.simulator.skins.BLUE', |
|
| 25 | - 'PAGANTIS_SIMULATOR_DISPLAY_POSITION'=>'hookDisplayProductButtons', |
|
| 26 | - 'PAGANTIS_SIMULATOR_START_INSTALLMENTS'=>3, |
|
| 27 | - 'PAGANTIS_SIMULATOR_MAX_INSTALLMENTS'=>12, |
|
| 28 | - 'PAGANTIS_SIMULATOR_CSS_POSITION_SELECTOR'=>'default', |
|
| 29 | - 'PAGANTIS_SIMULATOR_DISPLAY_CSS_POSITION'=>'pgSDK.simulator.positions.INNER', |
|
| 30 | - 'PAGANTIS_SIMULATOR_CSS_PRICE_SELECTOR'=>'default', |
|
| 31 | - 'PAGANTIS_SIMULATOR_CSS_QUANTITY_SELECTOR'=>'default', |
|
| 32 | - 'PAGANTIS_FORM_DISPLAY_TYPE'=>0, |
|
| 33 | - 'PAGANTIS_DISPLAY_MIN_AMOUNT'=>1, |
|
| 34 | - 'PAGANTIS_URL_OK'=>'', |
|
| 35 | - 'PAGANTIS_URL_KO'=>'', |
|
| 36 | - 'PAGANTIS_TITLE_EXTRA' => 'Pay up to 12 comfortable installments with Pagantis. Completely online and sympathetic request, and the answer is immediate!' |
|
| 23 | + 'PAGANTIS_SIMULATOR_DISPLAY_TYPE'=>'pgSDK.simulator.types.SIMPLE', |
|
| 24 | + 'PAGANTIS_SIMULATOR_DISPLAY_SKIN'=>'pgSDK.simulator.skins.BLUE', |
|
| 25 | + 'PAGANTIS_SIMULATOR_DISPLAY_POSITION'=>'hookDisplayProductButtons', |
|
| 26 | + 'PAGANTIS_SIMULATOR_START_INSTALLMENTS'=>3, |
|
| 27 | + 'PAGANTIS_SIMULATOR_MAX_INSTALLMENTS'=>12, |
|
| 28 | + 'PAGANTIS_SIMULATOR_CSS_POSITION_SELECTOR'=>'default', |
|
| 29 | + 'PAGANTIS_SIMULATOR_DISPLAY_CSS_POSITION'=>'pgSDK.simulator.positions.INNER', |
|
| 30 | + 'PAGANTIS_SIMULATOR_CSS_PRICE_SELECTOR'=>'default', |
|
| 31 | + 'PAGANTIS_SIMULATOR_CSS_QUANTITY_SELECTOR'=>'default', |
|
| 32 | + 'PAGANTIS_FORM_DISPLAY_TYPE'=>0, |
|
| 33 | + 'PAGANTIS_DISPLAY_MIN_AMOUNT'=>1, |
|
| 34 | + 'PAGANTIS_URL_OK'=>'', |
|
| 35 | + 'PAGANTIS_URL_KO'=>'', |
|
| 36 | + 'PAGANTIS_TITLE_EXTRA' => 'Pay up to 12 comfortable installments with Pagantis. Completely online and sympathetic request, and the answer is immediate!' |
|
| 37 | 37 | ); |
| 38 | 38 | |
| 39 | 39 | /** |
@@ -111,7 +111,7 @@ |
||
| 111 | 111 | Table::TYPE_TIMESTAMP, |
| 112 | 112 | null, |
| 113 | 113 | array('nullable'=>false, |
| 114 | - 'default'=>Table::TIMESTAMP_INIT) |
|
| 114 | + 'default'=>Table::TIMESTAMP_INIT) |
|
| 115 | 115 | ); |
| 116 | 116 | return $dbConnection->createTable($table); |
| 117 | 117 | } |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | $secretKey = $this->getRequest()->getParam('secret'); |
| 45 | 45 | $privateKey = isset($this->config['pagantis_private_key']) ? $this->config['pagantis_private_key'] : null; |
| 46 | 46 | |
| 47 | - if ($secretKey!='' && $privateKey!='') { |
|
| 47 | + if ($secretKey != '' && $privateKey != '') { |
|
| 48 | 48 | $this->checkDbLogTable(); |
| 49 | 49 | /** @var \Magento\Framework\DB\Adapter\AdapterInterface $dbConnection */ |
| 50 | 50 | $dbConnection = $this->dbObject->getConnection(); |
@@ -24,22 +24,22 @@ discard block |
||
| 24 | 24 | $installer->startSetup(); |
| 25 | 25 | |
| 26 | 26 | $table = $installer->getConnection() |
| 27 | - ->newTable($installer->getTable(self::CONFIG_TABLE)) |
|
| 28 | - ->addColumn( |
|
| 29 | - 'id', |
|
| 30 | - \Magento\Framework\DB\Ddl\Table::TYPE_INTEGER, |
|
| 31 | - null, |
|
| 32 | - ['identity' => true, 'unsigned' => true, 'nullable' => |
|
| 33 | - false, 'primary' => true], |
|
| 34 | - 'Entity ID' |
|
| 35 | - ) |
|
| 36 | - ->addColumn( |
|
| 37 | - 'config', |
|
| 38 | - \Magento\Framework\DB\Ddl\Table::TYPE_TEXT, |
|
| 39 | - 60, |
|
| 40 | - ['nullable' => false], |
|
| 41 | - 'Config' |
|
| 42 | - ) |
|
| 27 | + ->newTable($installer->getTable(self::CONFIG_TABLE)) |
|
| 28 | + ->addColumn( |
|
| 29 | + 'id', |
|
| 30 | + \Magento\Framework\DB\Ddl\Table::TYPE_INTEGER, |
|
| 31 | + null, |
|
| 32 | + ['identity' => true, 'unsigned' => true, 'nullable' => |
|
| 33 | + false, 'primary' => true], |
|
| 34 | + 'Entity ID' |
|
| 35 | + ) |
|
| 36 | + ->addColumn( |
|
| 37 | + 'config', |
|
| 38 | + \Magento\Framework\DB\Ddl\Table::TYPE_TEXT, |
|
| 39 | + 60, |
|
| 40 | + ['nullable' => false], |
|
| 41 | + 'Config' |
|
| 42 | + ) |
|
| 43 | 43 | ->addColumn( |
| 44 | 44 | 'value', |
| 45 | 45 | \Magento\Framework\DB\Ddl\Table::TYPE_TEXT, |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | ['nullable' => false], |
| 48 | 48 | 'Value' |
| 49 | 49 | ) |
| 50 | - ->setComment('Pagantis config table'); |
|
| 50 | + ->setComment('Pagantis config table'); |
|
| 51 | 51 | |
| 52 | 52 | $installer->getConnection()->createTable($table); |
| 53 | 53 | |
@@ -26,9 +26,9 @@ |
||
| 26 | 26 | { |
| 27 | 27 | $originalData = $element->getOriginalData(); |
| 28 | 28 | $label = __($originalData['button_label']); |
| 29 | - $url = $this->escapeHtml($originalData['button_url']); |
|
| 29 | + $url = $this->escapeHtml($originalData['button_url']); |
|
| 30 | 30 | $labelCredentials = __($originalData['button_credentials_label']); |
| 31 | - $urlCredentials = $this->escapeHtml($originalData['button_credentials_url']); |
|
| 31 | + $urlCredentials = $this->escapeHtml($originalData['button_credentials_url']); |
|
| 32 | 32 | return <<<EOD |
| 33 | 33 | <div class="pp-buttons-container"> |
| 34 | 34 | <button onclick="javascript:window.open('$url')" class="scalable" type="button" id="bo_pagantis"> |
@@ -20,20 +20,20 @@ |
||
| 20 | 20 | * @var array $defaultConfigs |
| 21 | 21 | */ |
| 22 | 22 | public $defaultConfigs = array('PAGANTIS_TITLE'=>'Instant Financing', |
| 23 | - 'PAGANTIS_SIMULATOR_DISPLAY_TYPE'=>'pgSDK.simulator.types.SIMPLE', |
|
| 24 | - 'PAGANTIS_SIMULATOR_DISPLAY_SKIN'=>'pgSDK.simulator.skins.BLUE', |
|
| 25 | - 'PAGANTIS_SIMULATOR_DISPLAY_POSITION'=>'hookDisplayProductButtons', |
|
| 26 | - 'PAGANTIS_SIMULATOR_START_INSTALLMENTS'=>3, |
|
| 27 | - 'PAGANTIS_SIMULATOR_MAX_INSTALLMENTS'=>12, |
|
| 28 | - 'PAGANTIS_SIMULATOR_CSS_POSITION_SELECTOR'=>'default', |
|
| 29 | - 'PAGANTIS_SIMULATOR_DISPLAY_CSS_POSITION'=>'pgSDK.simulator.positions.INNER', |
|
| 30 | - 'PAGANTIS_SIMULATOR_CSS_PRICE_SELECTOR'=>'default', |
|
| 31 | - 'PAGANTIS_SIMULATOR_CSS_QUANTITY_SELECTOR'=>'default', |
|
| 32 | - 'PAGANTIS_FORM_DISPLAY_TYPE'=>0, |
|
| 33 | - 'PAGANTIS_DISPLAY_MIN_AMOUNT'=>1, |
|
| 34 | - 'PAGANTIS_URL_OK'=>'', |
|
| 35 | - 'PAGANTIS_URL_KO'=>'', |
|
| 36 | - 'PAGANTIS_TITLE_EXTRA' => 'Pay up to 12 comfortable installments with Pagantis. Completely online and sympathetic request, and the answer is immediate!' |
|
| 23 | + 'PAGANTIS_SIMULATOR_DISPLAY_TYPE'=>'pgSDK.simulator.types.SIMPLE', |
|
| 24 | + 'PAGANTIS_SIMULATOR_DISPLAY_SKIN'=>'pgSDK.simulator.skins.BLUE', |
|
| 25 | + 'PAGANTIS_SIMULATOR_DISPLAY_POSITION'=>'hookDisplayProductButtons', |
|
| 26 | + 'PAGANTIS_SIMULATOR_START_INSTALLMENTS'=>3, |
|
| 27 | + 'PAGANTIS_SIMULATOR_MAX_INSTALLMENTS'=>12, |
|
| 28 | + 'PAGANTIS_SIMULATOR_CSS_POSITION_SELECTOR'=>'default', |
|
| 29 | + 'PAGANTIS_SIMULATOR_DISPLAY_CSS_POSITION'=>'pgSDK.simulator.positions.INNER', |
|
| 30 | + 'PAGANTIS_SIMULATOR_CSS_PRICE_SELECTOR'=>'default', |
|
| 31 | + 'PAGANTIS_SIMULATOR_CSS_QUANTITY_SELECTOR'=>'default', |
|
| 32 | + 'PAGANTIS_FORM_DISPLAY_TYPE'=>0, |
|
| 33 | + 'PAGANTIS_DISPLAY_MIN_AMOUNT'=>1, |
|
| 34 | + 'PAGANTIS_URL_OK'=>'', |
|
| 35 | + 'PAGANTIS_URL_KO'=>'', |
|
| 36 | + 'PAGANTIS_TITLE_EXTRA' => 'Pay up to 12 comfortable installments with Pagantis. Completely online and sympathetic request, and the answer is immediate!' |
|
| 37 | 37 | ); |
| 38 | 38 | |
| 39 | 39 | /** |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | } elseif ($this->_request->isPost()) { |
| 90 | 90 | if (count($_POST)) { |
| 91 | 91 | foreach ($_POST as $config => $value) { |
| 92 | - if (isset($this->defaultConfigs[$config]) && $response['status']==null) { |
|
| 92 | + if (isset($this->defaultConfigs[$config]) && $response['status'] == null) { |
|
| 93 | 93 | $dbConnection->update( |
| 94 | 94 | $tableName, |
| 95 | 95 | array('value' => $value), |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | } |
| 108 | 108 | |
| 109 | 109 | $formattedResult = array(); |
| 110 | - if ($response['status']==null) { |
|
| 110 | + if ($response['status'] == null) { |
|
| 111 | 111 | $dbResult = $dbConnection->fetchAll("select * from $tableName"); |
| 112 | 112 | foreach ($dbResult as $value) { |
| 113 | 113 | $formattedResult[$value['config']] = $value['value']; |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | public function execute(\Magento\Framework\Event\Observer $observer) |
| 17 | 17 | { |
| 18 | 18 | try { |
| 19 | - if ($observer->getEvent()->getMethodInstance()->getCode()=="pagantis") { |
|
| 19 | + if ($observer->getEvent()->getMethodInstance()->getCode() == "pagantis") { |
|
| 20 | 20 | $checkResult = $observer->getEvent()->getResult(); |
| 21 | 21 | $objectManager = \Magento\Framework\App\ObjectManager::getInstance(); |
| 22 | 22 | $config = $objectManager->create('Pagantis\Pagantis\Helper\Config')->getConfig(); |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | $availableCountry = (in_array(strtolower($locale), $allowedCountries)); |
| 28 | 28 | if (!isset($config['pagantis_public_key']) || $config['pagantis_public_key'] == '' || |
| 29 | 29 | !isset($config['pagantis_private_key']) || $config['pagantis_private_key'] == '' || |
| 30 | - !$availableCountry ) { |
|
| 30 | + !$availableCountry) { |
|
| 31 | 31 | $checkResult->setData('is_available', false); |
| 32 | 32 | } else { |
| 33 | 33 | $checkResult->setData('is_available', true); |
@@ -234,9 +234,9 @@ discard block |
||
| 234 | 234 | if ($promotedProduct == 'true') { |
| 235 | 235 | $promotedAmount+=$product->getAmount()*$item->getQty(); |
| 236 | 236 | $promotedMessage = 'Promoted Item: ' . $item->getName() . |
| 237 | - ' Price: ' . $item->getPrice() . |
|
| 238 | - ' Qty: ' . $item->getQty() . |
|
| 239 | - ' Item ID: ' . $item->getItemId(); |
|
| 237 | + ' Price: ' . $item->getPrice() . |
|
| 238 | + ' Qty: ' . $item->getQty() . |
|
| 239 | + ' Item ID: ' . $item->getItemId(); |
|
| 240 | 240 | $metadataOrder->addMetadata('promotedProduct', $promotedMessage); |
| 241 | 241 | } |
| 242 | 242 | } |
@@ -401,9 +401,9 @@ discard block |
||
| 401 | 401 | $magentoVersion = $this->productMetadataInterface->getVersion(); |
| 402 | 402 | $moduleInfo = $this->moduleList->getOne('Pagantis_Pagantis'); |
| 403 | 403 | return array( 'magento' => $magentoVersion, |
| 404 | - 'pagantis' => $moduleInfo['setup_version'], |
|
| 405 | - 'php' => phpversion(), |
|
| 406 | - 'curl' => $curlVersion); |
|
| 404 | + 'pagantis' => $moduleInfo['setup_version'], |
|
| 405 | + 'php' => phpversion(), |
|
| 406 | + 'curl' => $curlVersion); |
|
| 407 | 407 | } |
| 408 | 408 | |
| 409 | 409 | /** |
@@ -125,12 +125,12 @@ discard block |
||
| 125 | 125 | $customer = $quote->getCustomer(); |
| 126 | 126 | $shippingAddress = $quote->getShippingAddress(); |
| 127 | 127 | |
| 128 | - if (isset($params['email']) && $params['email']!='') { |
|
| 128 | + if (isset($params['email']) && $params['email'] != '') { |
|
| 129 | 129 | $this->session->setEmail($params['email']); //Get guest email after refresh page |
| 130 | 130 | $customer->setEmail($params['email']); |
| 131 | 131 | $quote->setCheckoutMethod('guest'); |
| 132 | 132 | $quote->getBillingAddress()->setEmail($params['email']); |
| 133 | - } elseif ($customer->getEmail()=='') { |
|
| 133 | + } elseif ($customer->getEmail() == '') { |
|
| 134 | 134 | $customer->setEmail($this->session->getEmail()); |
| 135 | 135 | $quote->setCheckoutMethod('guest'); |
| 136 | 136 | $quote->getBillingAddress()->setEmail($this->session->getEmail()); |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | $currentQuote->setCustomerEmail($customer->getEmail()); |
| 142 | 142 | $this->quoteRepository->save($currentQuote); |
| 143 | 143 | |
| 144 | - $userAddress = new Address(); |
|
| 144 | + $userAddress = new Address(); |
|
| 145 | 145 | $userAddress |
| 146 | 146 | ->setZipCode($shippingAddress->getPostcode()) |
| 147 | 147 | ->setFullName($shippingAddress->getFirstname()." ".$shippingAddress->getLastname()) |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | ->setTaxId($tax_id) |
| 164 | 164 | ; |
| 165 | 165 | |
| 166 | - $orderBillingAddress = new Address(); |
|
| 166 | + $orderBillingAddress = new Address(); |
|
| 167 | 167 | $billingAddress = $quote->getBillingAddress(); |
| 168 | 168 | $orderBillingAddress |
| 169 | 169 | ->setZipCode($billingAddress->getPostcode()) |
@@ -192,7 +192,7 @@ discard block |
||
| 192 | 192 | if ($customer->getDob()) { |
| 193 | 193 | $orderUser->setDateOfBirth($customer->getDob()); |
| 194 | 194 | } |
| 195 | - if ($customer->getTaxvat()!='') { |
|
| 195 | + if ($customer->getTaxvat() != '') { |
|
| 196 | 196 | $orderUser->setDni($customer->getTaxvat()); |
| 197 | 197 | $orderBillingAddress->setDni($customer->getTaxvat()); |
| 198 | 198 | $orderShippingAddress->setDni($customer->getTaxvat()); |
@@ -232,11 +232,11 @@ discard block |
||
| 232 | 232 | |
| 233 | 233 | $promotedProduct = $this->isPromoted($item); |
| 234 | 234 | if ($promotedProduct == 'true') { |
| 235 | - $promotedAmount+=$product->getAmount()*$item->getQty(); |
|
| 236 | - $promotedMessage = 'Promoted Item: ' . $item->getName() . |
|
| 237 | - ' Price: ' . $item->getPrice() . |
|
| 238 | - ' Qty: ' . $item->getQty() . |
|
| 239 | - ' Item ID: ' . $item->getItemId(); |
|
| 235 | + $promotedAmount += $product->getAmount() * $item->getQty(); |
|
| 236 | + $promotedMessage = 'Promoted Item: '.$item->getName(). |
|
| 237 | + ' Price: '.$item->getPrice(). |
|
| 238 | + ' Qty: '.$item->getQty(). |
|
| 239 | + ' Item ID: '.$item->getItemId(); |
|
| 240 | 240 | $metadataOrder->addMetadata('promotedProduct', $promotedMessage); |
| 241 | 241 | } |
| 242 | 242 | } |
@@ -273,7 +273,7 @@ discard block |
||
| 273 | 273 | ->setType(Channel::ONLINE) |
| 274 | 274 | ; |
| 275 | 275 | |
| 276 | - $haystack = ($this->store->getLocale()!=null) ? $this->store->getLocale() : $this->getResolverCountry(); |
|
| 276 | + $haystack = ($this->store->getLocale() != null) ? $this->store->getLocale() : $this->getResolverCountry(); |
|
| 277 | 277 | $language = strstr($haystack, '_', true); |
| 278 | 278 | $orderConfiguration = new Configuration(); |
| 279 | 279 | $orderConfiguration |
@@ -291,7 +291,7 @@ discard block |
||
| 291 | 291 | ->setUser($orderUser) |
| 292 | 292 | ; |
| 293 | 293 | |
| 294 | - if ($this->config['pagantis_public_key']=='' || $this->config['pagantis_private_key']=='') { |
|
| 294 | + if ($this->config['pagantis_public_key'] == '' || $this->config['pagantis_private_key'] == '') { |
|
| 295 | 295 | throw new \Exception('Public and Secret Key not found'); |
| 296 | 296 | } |
| 297 | 297 | |
@@ -317,7 +317,7 @@ discard block |
||
| 317 | 317 | } |
| 318 | 318 | |
| 319 | 319 | $displayMode = $this->extraConfig['PAGANTIS_FORM_DISPLAY_TYPE']; |
| 320 | - if ($displayMode==='0') { |
|
| 320 | + if ($displayMode === '0') { |
|
| 321 | 321 | echo $url; |
| 322 | 322 | exit; |
| 323 | 323 | } else { |
@@ -339,11 +339,11 @@ discard block |
||
| 339 | 339 | private function getOrders($customerId) |
| 340 | 340 | { |
| 341 | 341 | $orderCollection = array(); |
| 342 | - if ($customerId!='') { |
|
| 342 | + if ($customerId != '') { |
|
| 343 | 343 | $this->orderCollection->addAttributeToFilter('customer_id', $customerId) |
| 344 | 344 | ->addAttributeToFilter( |
| 345 | 345 | 'status', |
| 346 | - ['in' => ['processing','pending','complete']] |
|
| 346 | + ['in' => ['processing', 'pending', 'complete']] |
|
| 347 | 347 | ) |
| 348 | 348 | ->load(); |
| 349 | 349 | $orderCollection = $this->orderCollection->getData(); |
@@ -386,7 +386,7 @@ discard block |
||
| 386 | 386 | $tableName = $this->dbObject->getTableName(self::ORDERS_TABLE); |
| 387 | 387 | return $dbConnection->insertOnDuplicate( |
| 388 | 388 | $tableName, |
| 389 | - array('id'=>$quoteId,'order_id'=>$pagantisOrderId), |
|
| 389 | + array('id'=>$quoteId, 'order_id'=>$pagantisOrderId), |
|
| 390 | 390 | array('order_id') |
| 391 | 391 | ); |
| 392 | 392 | } |
@@ -400,7 +400,7 @@ discard block |
||
| 400 | 400 | $curlVersion = $curlInfo['version']; |
| 401 | 401 | $magentoVersion = $this->productMetadataInterface->getVersion(); |
| 402 | 402 | $moduleInfo = $this->moduleList->getOne('Pagantis_Pagantis'); |
| 403 | - return array( 'magento' => $magentoVersion, |
|
| 403 | + return array('magento' => $magentoVersion, |
|
| 404 | 404 | 'pagantis' => $moduleInfo['setup_version'], |
| 405 | 405 | 'php' => phpversion(), |
| 406 | 406 | 'curl' => $curlVersion); |
@@ -107,7 +107,7 @@ |
||
| 107 | 107 | foreach ($items as $key => $item) { |
| 108 | 108 | $promotedProduct = $this->isPromoted($item); |
| 109 | 109 | if ($promotedProduct == 'true') { |
| 110 | - $promotedAmount+=$item->getPrice()*$item->getQty(); |
|
| 110 | + $promotedAmount += $item->getPrice() * $item->getQty(); |
|
| 111 | 111 | } |
| 112 | 112 | } |
| 113 | 113 | |