magento 2将数量低于1添加到购物车

时间:2016-11-19 09:41:32

标签: magento magento2

我疯了!我想在Magento 2中添加0到我的购物车,它不起作用!

我将“购物车中允许的最低数量”调整为0.5并尝试了一切,但没有工作。

1.2工作正常,但0.9不起作用

link:https://www.huurhulp.nl/tricot-stoffen/stippen/tricot-rood-stippen-8mm.html

如果我在页面源代码中查找此部分,我认为存在问题。

<div class="control">
   <input type="number"
      name="qty"
      id="qty"
      maxlength="12"
      value="0.5"
      title="Qty" class="input-text qty"
      data-validate="{&quot;required-number&quot;:true,&quot;validate-item-quantity&quot;:{&quot;minAllowed&quot;:1}}"
    />
 </div>

1 个答案:

答案 0 :(得分:0)

它位于ProductView.php的行中。此行似乎不允许小于1的最小数量。

magento / module-catalog-inventory / Block / Plugin / ProductView.php:$ params ['minAllowed'] = max((float)$ stockItem-&gt; getQtyMinAllowed(),1);

我手动将它设置为0.5,然后完成了工作(但不是很好......)