This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery('#catalog_category_products_table tbody td.col-entity_id').map(function() { return jQuery(this).text().trim(); }).get().join(); |
https://github.com/cpriego/valet-linux
Add to your ~/.profile
file follow code:
if [ -d "$HOME/.config/composer/vendor/bin" ] ; then
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- /vendor/magento/module-catalog-import-export/Model/Import/Product.php | |
+++ /vendor/magento/module-catalog-import-export/Model/Import/Product.php (Unsaved) | |
@@ -3062,7 +3062,9 @@ | |
$stockItemDo = $this->stockRegistry->getStockItem($row['product_id'], $row['website_id']); | |
$existStockData = $stockItemDo->getData(); | |
- if (isset($rowData['qty']) && $rowData['qty'] == 0 && !isset($rowData['is_in_stock'])) { | |
+ if (isset($rowData['qty']) && $rowData['qty'] == 0 && !isset($rowData['is_in_stock']) | |
+ && empty($existStockData['backorders']) // backorders not set or set to 0 | |
+ ) { |
OlderNewer