私のmagentoショップに特別オファーをしようとしています.実際には簡単ですが、実際には私のシナリオは他のシナリオとは異なります.私のシナリオは、カスタム属性(販売日)に基づいて製品を取得する必要があり、製品の数量もゼロより大きい(数量>0)。カスタム属性を使用して製品を取得しました。
<?php
$collection = Mage::getResourceModel('catalogsearch/advanced_collection')
->addAttributeToSelect(Mage::getSingleton('catalog/config')- >getProductAttributes())
->addMinimalPrice()
->addStoreFilter();
Mage::getSingleton('catalog/product_status')->addVisibleFilterToCollection($collection);
Mage::getSingleton('catalog/product_visibility')->addVisibleInSearchFilterToCollection($collection);
$collection->addAttributeToFilter('date_sale', array('lt' => $todayDate));
return $collection;?>
これで、販売日が今日の日付よりも小さいことに基づいて製品を取得しました.その上で、数量が0より大きい製品を取得する必要があります.
私にいくつかの希望を与えてください。