Magento:如何通过订单项目报价ID获取creditmemo

发布于 2024-11-04 18:53:53 字数 286 浏览 2 评论 0原文

我有一个magento订单的增量ID和一个订单项目的报价ID(我不是指订单项目ID),并且我想要包含该订单项目相应的CreditMemo项目的所有CreditMemo。

如果我在magento中使用creditmemo模型,我可以使用getOrderItem()来获取订单项目,然后我可以使用getOrder()来获取订单。但是magento中的订单模型没有getCreditmemoItems()。

有没有更好的方法而不是迭代订单的 getCreditmemosCollection() 和每个 Creditmemo 项目?

i have a increment id of a magento order and a quote id of a order item (i do not mean the order item id) and i want to the all creditmemos that contains a corresponding creditmemo item for that order item.

If i use the creditmemo model in magento i can use getOrderItem() to get the order item and on that i can use getOrder() to get the order. But the order model in magento do not have a getCreditmemoItems().

Is there a better way instead of iterating over getCreditmemosCollection() of the order and over each creditmemo item?

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

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

发布评论

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

评论(1

失眠症患者 2024-11-11 18:53:53

使用这个:

$collection = Mage::getResourceModel('sales/order_creditmemo_collection')
        ->addAttributeToFilter('order_id', array('eq' => $order->getEntityId()))
        ->addAttributeToSelect('*');

Use this:

$collection = Mage::getResourceModel('sales/order_creditmemo_collection')
        ->addAttributeToFilter('order_id', array('eq' => $order->getEntityId()))
        ->addAttributeToSelect('*');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文