在观察者中获取之前的订单 ID

发布于 2024-12-04 14:56:07 字数 198 浏览 0 评论 0原文

我正在为 *checkout_submit_all_after* 事件编写一个观察者,它工作正常。当您编辑订单时,例如#1001,magento 会创建一个带有#1001-1 的新订单并取消上一个订单。

管理面板告诉我#1001-1链接到#1001,那么我如何知道当前订单是否实际上是修改版本?

是否有一些函数/变量用于此目的?

谢谢

I'm writing an observer for the *checkout_submit_all_after* event and it works fine. When you edit an order, for example the #1001, magento creates a new one with #1001-1 and cancel the previous order.

The admin panel tells me that #1001-1 is linked to the #1001, so how can I know if the current order is actually a modified version?

Is there some function/variable for this purpose?

thanks

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

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

发布评论

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

评论(1

面如桃花 2024-12-11 14:56:07

我做到了!

  $current_id = $order->getRealOrderId(); // #1001-2
  $previous_id = $order->getRelationParentRealId(); // #1001-1
  $older_id = $order->getOriginalIncrementId(); // #1001

I did it!

  $current_id = $order->getRealOrderId(); // #1001-2
  $previous_id = $order->getRelationParentRealId(); // #1001-1
  $older_id = $order->getOriginalIncrementId(); // #1001
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文