私のブロックコードでは、特定の値を持つ属性を持つ製品のリストをプログラムで取得しようとしています。
あるいは、それが不可能な場合、どのようにしてすべての製品を取得し、それらをフィルタリングして特定の属性を持つ製品をリストするだけですか?
製品のサブセットに一致させるために、標準のブールフィルターAND
またはOR
を使用して検索を実行するにはどうすればよいですか?
ほとんどすべてのMagentoモデルには、モデルの複数のインスタンスを取得するために使用できる対応するコレクションオブジェクトがあります。
製品コレクションをインスタンス化するには、次の手順を実行します
$collection = Mage::getModel('catalog/product')->getCollection();
製品はMagento EAVスタイルモデルであるため、返す属性を追加する必要があります。
$collection = Mage::getModel('catalog/product')->getCollection();
//fetch name and orig_price into data
$collection->addAttributeToSelect('name');
$collection->addAttributeToSelect('orig_price');
コレクションにフィルターを設定するための複数の構文があります。私は常に以下の詳細なものを使用しますが、フィルタリング方法を使用できる追加の方法については、Magentoソースを調べてください。
以下は、値の範囲(ANDよりも大きい)でフィルタリングする方法を示しています
$collection = Mage::getModel('catalog/product')->getCollection();
$collection->addAttributeToSelect('name');
$collection->addAttributeToSelect('orig_price');
//filter for products whose orig_price is greater than (gt) 100
$collection->addFieldToFilter(array(
array('attribute'=>'orig_price','gt'=>'100'),
));
//AND filter for products whose orig_price is less than (lt) 130
$collection->addFieldToFilter(array(
array('attribute'=>'orig_price','lt'=>'130'),
));
一方、これは、あるものOR別のものに等しい名前でフィルタリングします。
$collection = Mage::getModel('catalog/product')->getCollection();
$collection->addAttributeToSelect('name');
$collection->addAttributeToSelect('orig_price');
//filter for products who name is equal (eq) to Widget A, or equal (eq) to Widget B
$collection->addFieldToFilter(array(
array('attribute'=>'name','eq'=>'Widget A'),
array('attribute'=>'name','eq'=>'Widget B'),
));
サポートされている短い条件(eq、ltなど)の完全なリストは、_getConditionSql
のlib/Varien/Data/Collection/Db.php
メソッドにあります。
最後に、すべてのMagentoコレクションを反復処理することができます(基本コレクションクラスは、反復子インターフェイスを実装します)。これは、フィルターが設定されたら製品を取得する方法です。
$collection = Mage::getModel('catalog/product')->getCollection();
$collection->addAttributeToSelect('name');
$collection->addAttributeToSelect('orig_price');
//filter for products who name is equal (eq) to Widget A, or equal (eq) to Widget B
$collection->addFieldToFilter(array(
array('attribute'=>'name','eq'=>'Widget A'),
array('attribute'=>'name','eq'=>'Widget B'),
));
foreach ($collection as $product) {
//var_dump($product);
var_dump($product->getData());
}
これは、同じ問題を抱えている他の人を助けるための私の元の質問のフォローアップです。 IDを手動で検索するのではなく、属性でフィルタリングする必要がある場合は、次のコードを使用して、属性のすべてのIDと値のペアを取得できます。データは、属性名をキーとして配列として返されます。
function getAttributeOptions($attributeName) {
$product = Mage::getModel('catalog/product');
$collection = Mage::getResourceModel('eav/entity_attribute_collection')
->setEntityTypeFilter($product->getResource()->getTypeId())
->addFieldToFilter('attribute_code', $attributeName);
$_attribute = $collection->getFirstItem()->setEntity($product->getResource());
$attribute_options = $_attribute->getSource()->getAllOptions(false);
foreach($attribute_options as $val) {
$attrList[$val['label']] = $val['value'];
}
return $attrList;
}
以下は、属性セットIDで製品を取得するために使用できる関数です。前の関数を使用して取得。
function getProductsByAttributeSetId($attributeSetId) {
$products = Mage::getModel('catalog/product')->getCollection();
$products->addAttributeToFilter('attribute_set_id',$attributeSetId);
$products->addAttributeToSelect('*');
$products->load();
foreach($products as $val) {
$productsArray[] = $val->getData();
}
return $productsArray;
}
$attribute = Mage::getModel('eav/entity_attribute')
->loadByCode('catalog_product', 'manufacturer');
$valuesCollection = Mage::getResourceModel('eav/entity_attribute_option_collection')
->setAttributeFilter($attribute->getData('attribute_id'))
->setStoreFilter(0, false);
$preparedManufacturers = array();
foreach($valuesCollection as $value) {
$preparedManufacturers[$value->getOptionId()] = $value->getValue();
}
if (count($preparedManufacturers)) {
echo "<h2>Manufacturers</h2><ul>";
foreach($preparedManufacturers as $optionId => $value) {
$products = Mage::getModel('catalog/product')->getCollection();
$products->addAttributeToSelect('manufacturer');
$products->addFieldToFilter(array(
array('attribute'=>'manufacturer', 'eq'=> $optionId,
));
echo "<li>" . $value . " - (" . $optionId . ") - (Products: ".count($products).")</li>";
}
echo "</ul>";
}
製品リストページのフロントエンドに管理者から追加されたTEXT
属性を取得するには。
ありがとう、アニタ・ムリヤ
2つの方法があることがわかりました。 「na_author」という製品属性がテキストフィールドとしてバックエンドから追加されたとしましょう。
方法1
list.phtml
<?php $i=0; foreach ($_productCollection as $_product): ?>
SKUごとの各製品のロードおよびFOREACH内の属性の取得
<?php
$product = Mage::getModel('catalog/product')->loadByAttribute('sku',$_product->getSku());
$author = $product['na_author'];
?>
<?php
if($author!=""){echo "<br /><span class='home_book_author'>By ".$author ."</span>";} else{echo "";}
?>
方法2
Mage/Catalog/Block/Product/List.phtml
OVER RIDEで「ローカルフォルダー」に設定
つまり、コピー元
Mage/Catalog/Block/Product/List.phtml
と貼り付け
app/code/local/Mage/Catalog/Block/Product/List.phtml
以下の太字で示す2行を追加して、関数を変更します。
protected function _getProductCollection()
{
if (is_null($this->_productCollection)) {
$layer = Mage::getSingleton('catalog/layer');
/* @var $layer Mage_Catalog_Model_Layer */
if ($this->getShowRootCategory()) {
$this->setCategoryId(Mage::app()->getStore()->getRootCategoryId());
}
// if this is a product view page
if (Mage::registry('product')) {
// get collection of categories this product is associated with
$categories = Mage::registry('product')->getCategoryCollection()
->setPage(1, 1)
->load();
// if the product is associated with any category
if ($categories->count()) {
// show products from this category
$this->setCategoryId(current($categories->getIterator()));
}
}
$origCategory = null;
if ($this->getCategoryId()) {
$category = Mage::getModel('catalog/category')->load($this->getCategoryId());
if ($category->getId()) {
$origCategory = $layer->getCurrentCategory();
$layer->setCurrentCategory($category);
}
}
$this->_productCollection = $layer->getProductCollection();
$this->prepareSortableFieldsByCategory($layer->getCurrentCategory());
if ($origCategory) {
$layer->setCurrentCategory($origCategory);
}
}
**//CMI-PK added na_author to filter on product listing page//
$this->_productCollection->addAttributeToSelect('na_author');**
return $this->_productCollection;
}
そして、あなたはそれを見て幸せになります.... !!
作成属性名は「price_screen_tab_name
」です。この単純な式を使用してアクセスします。
<?php $_product = $this->getProduct(); ?>
<?php echo $_product->getData('price_screen_tab_name');?>
行を追加しました
$this->_productCollection->addAttributeToSelect('releasedate');
に
行95のapp/code/core/Mage/Catalog/Block/Product/List.php
関数_getProductCollection()
内
そしてそれを呼び出す
app/design/frontend/default/hellopress/template/catalog/product/list.phtml
コードを書くことにより
<div><?php echo $this->__('Release Date: %s', $this->dateFormat($_product->getReleasedate())) ?>
</div>
現在、Magento 1.4.xで動作しています