如何创建列出过去7天内添加的新产品的新类别

时间:2015-03-29 16:24:06

标签: magento magento-1.8 cron-task

我需要在名为New In的新类别中显示过去7天内添加的产品。当我导入产品时,我会将所有产品添加到类别New In中,它会自动删除超过7天的产品。我已经搜索了这个,但没有找到解决方案,有人可以帮我解决这个问题吗?

1 个答案:

答案 0 :(得分:1)

使用以下代码创建一个cron作业,替换您的#34;您的新类别ID"

set_time_limit(0);
define('MAGENTO', realpath(dirname(__FILE__)));

require_once MAGENTO . '/app/Mage.php';

Mage::app();

$to = Mage::getModel('core/date')->date('Y-m-d H:i:s');
$from = date('Y-m-d H:i:s',strtotime("-7 days", strtotime($to)));


//Load product model collecttion filtered by sale attribute
$proCollection = Mage::getModel('catalog/product')->getCollection()
                ->addfieldtofilter('created_at', array('lt' => $from));


foreach ($proCollection as $product) {
    $ids = $product->getCategoryIds();
    if (($key = array_search(YOUR NEW IN CATEGORY ID, $ids)) !== false) {
        unset($ids[$key]);
        $product->setCategoryIds($ids);
        $product->save();
    }
}