Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
5476df7
Merge pull request #3 from vgelani/2.3-develop-PR-port-15372
gelanivishal May 23, 2018
2c6967c
Merge pull request #1 from vgelani/2.3-develop-PR-port-15362
gelanivishal May 23, 2018
1cf7f43
Merge pull request #6 from vgelani/2.3-develop-PR-port-15398
gelanivishal May 25, 2018
1eb46d9
Merge pull request #4 from vgelani/2.3-develop-PR-port-15343
gelanivishal May 25, 2018
94e10ec
Merge pull request #7 from vgelani/2.3-develop-PR-port-15421
gelanivishal May 25, 2018
2b1730d
Merge pull request #9 from vgelani/2.3-develop-PR-port-15416
gelanivishal May 25, 2018
91810bc
Merge pull request #11 from vgelani/2.3-develop-PR-port-15549
gelanivishal Jun 1, 2018
4ac0fc0
Merge pull request #13 from vgelani/2.3-develop-PR-port-15332
gelanivishal Jun 1, 2018
6ff15f6
Merge pull request #15 from vgelani/2.3-develop-PR-port-15602
gelanivishal Jun 1, 2018
a0a0f11
Merge pull request #18 from vgelani/2.3-develop-PR-port-15336
gelanivishal Jun 1, 2018
6e2ce07
Merge pull request #19 from vgelani/2.3-develop-PR-port-15340
gelanivishal Jun 3, 2018
d595ea3
Merge pull request #20 from vgelani/2.3-develop-PR-port-15459
gelanivishal Jun 4, 2018
61856f5
Fixxes #15565
EliasKotlyar May 29, 2018
4c77dff
Fixed coding standard error
gelanivishal May 29, 2018
95a6454
Merge pull request #21 from vgelani/2.3-develop-PR-port-15566
gelanivishal Jun 4, 2018
726124e
Merge pull request #23 from vgelani/2.3-develop-PR-port-15346
gelanivishal Jun 4, 2018
b202657
Merge pull request #25 from vgelani/2.3-develop-PR-port-15892
gelanivishal Jun 8, 2018
5816a52
Merge pull request #27 from vgelani/2.3-develop-PR-port-15322
gelanivishal Jun 8, 2018
2897541
Add missing table aliases to fields mapping for Customer Group filter…
Jun 5, 2018
0017c4f
Merge pull request #29 from vgelani/2.3-develop-PR-port-15826
gelanivishal Jun 10, 2018
8d707e7
Unable to disable without providing Industry value
gelanivishal Jun 14, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ $_helper = $this->helper('Magento\Catalog\Helper\Output');
<?php /** @var $_product \Magento\Catalog\Model\Product */ ?>
<?php foreach ($_productCollection as $_product): ?>
<li class="item product product-item">
<div class="product-item-info" data-container="product-grid">
<div class="product-item-info" data-container="product-<?= /* @escapeNotVerified */ $viewMode ?>">
<?php
$productImage = $block->getImage($_product, $imageDisplayArea);
if ($pos != null) {
Expand Down
12 changes: 6 additions & 6 deletions app/code/Magento/Customer/etc/di.xml
Original file line number Diff line number Diff line change
Expand Up @@ -353,19 +353,19 @@
<virtualType name="Magento\Customer\Model\Api\SearchCriteria\CollectionProcessor\GroupFilterProcessor" type="Magento\Framework\Api\SearchCriteria\CollectionProcessor\FilterProcessor">
<arguments>
<argument name="fieldMapping" xsi:type="array">
<item name="code" xsi:type="string">customer_group_code</item>
<item name="id" xsi:type="string">customer_group_id</item>
<item name="tax_class_name" xsi:type="string">class_name</item>
<item name="code" xsi:type="string">main_table.customer_group_code</item>
<item name="id" xsi:type="string">main_table.customer_group_id</item>
<item name="tax_class_name" xsi:type="string">tax_class_table.class_name</item>
</argument>
</arguments>
</virtualType>
<!-- @api -->
<virtualType name="Magento\Customer\Model\Api\SearchCriteria\CollectionProcessor\GroupSortingProcessor" type="Magento\Framework\Api\SearchCriteria\CollectionProcessor\SortingProcessor">
<arguments>
<argument name="fieldMapping" xsi:type="array">
<item name="code" xsi:type="string">customer_group_code</item>
<item name="id" xsi:type="string">customer_group_id</item>
<item name="tax_class_name" xsi:type="string">class_name</item>
<item name="code" xsi:type="string">main_table.customer_group_code</item>
<item name="id" xsi:type="string">main_table.customer_group_id</item>
<item name="tax_class_name" xsi:type="string">tax_class_table.class_name</item>
</argument>
<argument name="defaultOrders" xsi:type="array">
<item name="id" xsi:type="string">ASC</item>
Expand Down
4 changes: 3 additions & 1 deletion app/code/Magento/Store/Model/PathConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ public function shouldBeSecure($path)
*/
public function getDefaultPath()
{
return $this->scopeConfig->getValue('web/default/front', ScopeInterface::SCOPE_STORE);
$store = $this->storeManager->getStore();
$value = $this->scopeConfig->getValue('web/default/front', ScopeInterface::SCOPE_STORE, $store);
return $value;
}
}
2 changes: 1 addition & 1 deletion app/code/Magento/Webapi/Model/Rest/Swagger/Generator.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class Generator extends AbstractSchemaGenerator
const UNAUTHORIZED_DESCRIPTION = '401 Unauthorized';

/** Array signifier */
const ARRAY_SIGNIFIER = '[]';
const ARRAY_SIGNIFIER = '[0]';

/**
* Swagger factory instance.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@
}
}
}

#po_number {
margin-bottom: 20px;
}
}

.payment-method-title {
Expand Down
4 changes: 2 additions & 2 deletions lib/internal/Magento/Framework/Data/SearchResultProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ public function toArray($arrRequiredFields = [])
}

/**
* @param null $valueField
* @param null $labelField
* @param string|null $valueField
* @param string|null $labelField
* @param array $additional
* @return array
*/
Expand Down