Magento - 以编程方式销售产品

发布于 2024-12-11 02:08:57 字数 178 浏览 0 评论 0原文

由于我正在处理的项目的业务需求非常复杂,我们选择不使用 Magento 的传统结账方式,而是构建我们自己的。

所有过程都很好并且工作得很好,但是,最后,我需要减少已售产品的库存

允许我执行此操作的代码是什么,就像用户完成正常的结账流程一样?

As the business requirement of the project I'm working on a really complex, we chose not to use the traditional checkout of Magento, and build our own.

All the process is ok and works just fine, however, at the end, I need to decrease the stock of my sold products.

What is the code that allow me to do that, just as if the user went through the normal checkout process?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅浅 2024-12-18 02:08:57
$product = Mage::getModel('catalog/product')->load($product_id);
$stock   = $product->getStockItem();
$stock->setQty($stock->getQty() - $ordered_amount);
$stock->save();
$product = Mage::getModel('catalog/product')->load($product_id);
$stock   = $product->getStockItem();
$stock->setQty($stock->getQty() - $ordered_amount);
$stock->save();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文