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」フラグで定義されますが、Yes の場合は上記のように動作します。