Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
该方法setStockStatusChangedAutomaticallyFlag在 Magento 中做了什么?我已经对源代码进行了一些挖掘,但我无法弄清楚它的作用
setStockStatusChangedAutomaticallyFlag
由于在 magento 网站上购买了产品,并且如果设置了库存,则减少了购买产品的数量,此外,如果取消订单,则再次增加产品数量。
这是通过以下方式完成的:
$product->setStockData($stockData);
下单成功后。
尽管是否执行上述过程是由标志“setStockStatusChangedAutomatically”定义的,如果是,它会像上面那样工作,否则不会。