我一直在努力让我的观察者模块工作。我正在使用 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));
//}//
}
?>
任何帮助将不胜感激,因为我似乎无法解决这个问题。在此先感谢您的帮助。