Skip to content

Commit

Permalink
Merge pull request #558 from magento-fearless-kiwis/develop
Browse files Browse the repository at this point in the history
[FearlessKiwis] Sprint 64-b: Bug fixes
  • Loading branch information
sdwright committed Apr 26, 2016
2 parents 2087543 + 469a710 commit b8d0abb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,7 @@ protected function getTierPriceStructure($tierPricePath)
'dndConfig' => [
'enabled' => false,
],
'disabled' => false,
'sortOrder' =>
$this->arrayManager->get($tierPricePath . '/arguments/data/config/sortOrder', $this->meta),
],
Expand Down
3 changes: 3 additions & 0 deletions app/code/Magento/ImportExport/Model/Export.php
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,9 @@ public static function getStaticAttributeFilterType(\Magento\Eav\Model\Entity\At
return self::FILTER_TYPE_INPUT;
}
$columns = $attribute->getFlatColumns();
if (empty($columns)) {
return self::FILTER_TYPE_INPUT;
}
switch ($columns[$attribute->getAttributeCode()]['type']) {
case \Magento\Framework\DB\Ddl\Table::TYPE_INTEGER:
case \Magento\Framework\DB\Ddl\Table::TYPE_BIGINT:
Expand Down

0 comments on commit b8d0abb

Please sign in to comment.