Frage

How can I add new stock labels to magento 2 so they appear in the product stock status select box ?

enter image description here

Thanks.

War es hilfreich?

Lösung

You should create a custom module to solve your problem. And then you can create a plugin to add more stock option by do following steps:

  1. app/code/YourVendor/YourModule/etc/di.xml

<type name="Magento\CatalogInventory\Model\Source\Stock"> <plugin name="training_source_stock" type="YourVendor\YourModule\Plugin\CatalogInventory\Model\Source\Stock"/> </type>

  1. app/code/YourVendor/YourModule/Plugin/CatalogInventory/Model/Source/Stock.php
class Stock
{
    const NEW_STOCK = 2;

    public function afterGetAllOptions(\Magento\CatalogInventory\Model\Source\Stock $subject, $result)
    {
        $newStock = [
            [
                'value' => self::NEW_STOCK,
                'label' => __('New Stock')
            ]
        ];
        return array_merge($result, $newStock);
    }
}
  1. Stock status will be show like this:

enter image description here

If this solves your issue, please give me a vote

Thanks

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit magento.stackexchange
scroll top