0

我一直在努力让我的观察者模块工作。我正在使用 Magento 1.7.0.2,并且对于 XML,一切似乎都是正确的。没有错误,但我不相信它会触发。我希望它在事件 sale_order_save_after 上做三件事,如下所示:

如果订单状态为“完成”,则执行以下操作:

1) 将自定义属性“位置”更改为“已售”

2) 将可见性从目录/搜索更改为目录。

3) 将订单上的所有产品从所有指定的类别中删除到一个新类别中(即 ID:80)

最后保存/刷新缓存。我的 php 代码不完整,但我至少希望它能够触发。第一步和第二步应该可以工作,不确定如何以编程方式处理更改类别。

这是我的代码:

应用程序/代码/本地/Pinnacle/Autoarchive/etc/config.xml

<?xml version="1.0" encoding="UTF-8"?>
<config>
    <modules>
        <Pinnacle_Autoarchive>
            <version>0.0.1</version>
        </Pinnacle_Autoarchive>
    </modules>
    <global>
        <models>
                <Pinnacle_Autoarchive>
                    <class>Pinnacle_Autoarchive_Model</class>
                </Pinnacle_Autoarchive>
        </models>
    </global>        
            <adminhtml>
                 <events>
                     <sales_order_save_after>
                         <observers>
                             <pinnacle_autoarchive>
                                <type>model</type>
                                <class>pinnacle_autoarchive/observer</class>
                                <method>salesOrderSaveAfter</method>
                             </pinnacle_autoarchive>
                         </observers>
                     </sales_order_save_after>
                </events>
       </adminhtml>
</config>     

应用程序/代码/本地/Pinnacle/Autoarchive/Model/Observer.php

<?php
/*
 * Auto Archive all products on last order when status is complete
 */
class Pinnacle_Autoarchive_Model_Observer
{

public function salesOrderSaveAfter($observer)

{
   $order = $observer->getEvent()->getOrder();
        $orderStatus = $order->getStatus();


        if ($orderStatus == 'complete') {
                $items = $order->getAllItems();
                foreach ($items as $item) {
                    $productsToUpdate[] = $item->getProductId();
                }
                $theAttributeToUpdate = 'location';
                $theAttributeValue = 'SOLD';
                Mage::getSingleton('catalog/product_action')->updateAttributes($productsToUpdate, array($theAttributeToUpdate => $theAttributeValue), 0);
                }

        if ($orderStatus == 'complete') {
                $items = $order->getAllItems();
                foreach ($items as $item) {
                    $productsToUpdate[] = $item->getProductId();
                }
                $theAttributeToUpdate = 'visibility';
                $theAttributeValue = 'Catalog';
                Mage::getSingleton('catalog/product_action')->updateAttributes($productsToUpdate, array($theAttributeToUpdate => $theAttributeValue), 0);
                }

        //if ($orderStatus == 'complete') {
                //$items = $order->getAllItems();
                //foreach ($items as $item) {
                //    $productsToUpdate[] = $item->getProductId();
                //}

                //Mage::getSingleton('catalog/product_action')->$productsToUpdate->setCategoryIds(array(80));
                //}//            

}
?>

任何帮助将不胜感激,因为我似乎无法解决这个问题。在此先感谢您的帮助。

4

2 回答 2

0

你可以使用这个链接

http://snipplr.com/view/56959/

并让你的 etc/modules/config.xml

或者您可以将您现有的代码与此代码进行比较,您肯定可以找到解决方案,以便在任何订单下达时在保存方法后添加您的代码。

希望这对你有帮助。

于 2013-09-07T05:31:15.613 回答
0

看起来你config.xml的问题。您在内部定义了观察者,adminhtml而不是global.

<?xml version="1.0" encoding="UTF-8"?>
<config>
    <modules>
        <Pinnacle_Autoarchive>
            <version>0.0.1</version>
        </Pinnacle_Autoarchive>
    </modules>
    <global>
        <models>
                <Pinnacle_Autoarchive>
                    <class>Pinnacle_Autoarchive_Model</class>
                </Pinnacle_Autoarchive>
        </models>

        <events>
             <sales_order_save_after>
                   <observers>
                        <pinnacle_autoarchive>
                           <type>model</type>
                           <class>Pinnacle_Autoarchive_Model_Observer</class>
                           <method>salesOrderSaveAfter</method>
                         </pinnacle_autoarchive>
                    </observers>
              </sales_order_save_after>
         </events>

    </global>        
</config> 
于 2013-09-07T13:52:51.970 回答