@SanderMangel이 제공하는 솔루션은 최고 수준입니다. 나는 현재 모듈 내 자동화 / 동적 카테고리 제품에서 사용하는 일부 코드를 사용하여이를 확장 할 수 있습니다.
이 코드는 표준 제품 모음을 조정하여 코드가 실행되는 날에 특별 가격이 설정된 모든 제품을 얻습니다. cron에서 이것을 사용하여 00:00에 카테고리를 다시 채우고 업데이트 된 상태를 유지할 수 있습니다.
코드는 더 큰 모듈에서 추출되므로 여기에서 관련 부분을 압축했습니다. thsi 추출에 표시되지 않은 변수가있을 수 있지만 추론하거나 쉽게 물어보십시오 :)
$ category 개체는 제품을 포함 할 실제 범주입니다. 아래 코드를 사용하면 할인도 % 값으로 지정할 수 있습니다. :)
$collection = $category->getProductCollection();
$todayDate = Mage::app()->getLocale()->date()->toString(Varien_Date::DATE_INTERNAL_FORMAT);
$collection->addAttributeToFilter(array(
array(
'attribute' => "special_to_date",
'null' => true
),
array(
'attribute' => "special_to_date",
'from' => $todayDate,
//'to' => $todayDate,
'date' => true
)
));
$collection->addAttributeToFilter(array(
array(
'attribute' => "special_from_date",
'null' => true
),
array(
'attribute' => "special_from_date",
//'from' => $todayDate,
'to' => $todayDate,
'date' => true
)
));
$collection->addAttributeToSelect('special_price','left');
$collection->addAttributeToSelect('price','left');
$select = $collection->getSelect();
if (strpos($value, '%') > 0) {
$value = str_replace('%', '', $value);
$select->where('( 100 - (( at_special_price.value * 100 ) / at_price.value ) ) ' . $operator . ' ' . $value);
} else {
$select->where('((at_price.value - at_special_price.value)) ' . $operator . ' ' . $value);
}
이제 컬렉션에는 일반 카탈로그 <-> 제품 링크 테이블에 대한 링크가 포함되어 있으므로 제품이 제품을 반환하지 않습니다. 현재 연결된 제품에 관심이 없으므로 콜렉션에서 해당 테이블 관계를 지워야합니다.
다음 코드를 사용하여 해당 작업을 수행합니다.
/**
* Remove Catalog Product Link elements from collection
*
* @param type $collection
* @return type
*/
public function removeCatProPart($collection)
{
$select = $collection->getSelect();
$fromPart = $select->getPart(Zend_Db_Select::FROM);
$select->reset(Zend_Db_Select::FROM);
if (array_key_exists('cat_pro', $fromPart)) {
unset($fromPart['cat_pro']);
// also remove any reference to the table in the rest of the query
$columns = $select->getPart(Zend_Db_Select::COLUMNS);
$columnRemoved = false;
foreach ($columns as $columnKey => $column) {
if ($column[0] == 'cat_pro') {
unset($columns[$columnKey]);
$columnRemoved = true;
}
}
if ($columnRemoved) {
$select->setPart(Zend_Db_Select::COLUMNS, $columns);
}
$orderPart = $select->getPart(Zend_Db_Select::ORDER);
$orderRemoved = false;
foreach ($orderPart as $orderKey => $order) {
if ($order[0] == 'cat_pro') {
unset($orderPart[$orderKey]);
$orderRemoved = true;
}
}
if ($orderRemoved) {
$select->setPart(Zend_Db_Select::ORDER, $orderPart);
}
}
$select->setPart(Zend_Db_Select::FROM, $fromPart);
return $collection;
}
추가 보너스로, 카탈로그 제품 콜렉션을 조정할 때 동일한 기술을 사용하고 카탈로그 규칙으로 인해 특수 모드에있는 제품을 찾을 수 있습니다.
$storeDate = Mage::app()->getLocale()->storeTimeStamp($this->getStoreId());
$value = $this->getValue();
$conditions = 'price_rule.product_id = e.entity_id AND ';
$conditions .= "(from_time = 0
OR from_time <= " . $storeDate . ")
AND (to_time = 0
OR to_time >= " . $storeDate . ") AND ";
$conditions .= "price_rule.rule_id IN (" . $value . ")";
$collection->getSelect()->joinInner(
array('price_rule' => $collection->getTable('catalogrule/rule_product')), $conditions);
$collection->setFlag('applied_catalog_rule_id', true);
$collection->setFlag('applied_rule', true);
워킹 컬렉션이 있으면 컬렉션에서 모든 ID를 가져 와서 배열을 뒤집어 사용 $category->setPostedProducts($products);
하고 $ category-> save () l; 업데이트를 완료하십시오.
완전성을 위해 동적 범주를 최신 상태로 유지하는 일일 cron이 있습니다. (다시 말해서 여기에 포함되지 않은 방법을 언급하지만 올바른 방향으로 당신을 얻을 것이라고 확신합니다
재미있게 보내세요 :)
public static function rebuildAllDynamic($schedule)
{
try {
$tempDir = sys_get_temp_dir() . "/";
$fp = fopen($tempDir . "dyncatprod_rebuild.lock", "w+");
if (flock($fp, LOCK_EX | LOCK_NB)) {
if (Mage::getStoreConfig('dyncatprod/debug/enabled')) {
mage::log("DynCatProd - rebuildAllDynamic");
}
if (!Mage::getStoreConfig('dyncatprod/rebuild/max_exec')) {
ini_set('max_execution_time', 3600); // 1 hour
}
$categories = Mage::getModel('catalog/category')
->getCollection()
->addAttributeToSelect('*')
->addIsActiveFilter()
->addAttributeToFilter('dynamic_attributes', array('notnull' => true));
foreach ($categories as $category) {
$products = Mage::helper('dyncatprod')->getDynamicProductIds($category);
if (is_array($products)) {
if (Mage::getStoreConfig('dyncatprod/debug/enabled')) {
mage::log("rebuilding :" . $category->getName() . ' ' . $category->getPath() );
}
$products = array_flip($products);
$category->setPostedProducts($products);
$category->setIsDynamic(true);
$category->save();
}
}
flock($fp, LOCK_UN);
unlink($tempDir . "dyncatprod_rebuild.lock");
} else {
mage::log('Could not execute cron for rebuildAllDynamic -file lock is in place, job may be running');
}
} catch (Exception $e) {
flock($fp, LOCK_UN);
unlink($tempDir . "dyncatprod_rebuild.lock");
mage::logException($e);
return $e->getMessage();
}
}
심판 : http://www.proxiblue.com.au/magento-dynamic-category-products.html