我创建了捆绑产品的新产品类型图像,除了子产品无法将价格插入数据库表salt_flat_quote_item和sale_flat_order_item之外,一切正常。事实证明,在后端的顺序中给出了一些问题,无法显示这个产品的儿童价格。我是否需要拨打电话才能让孩子付出代价?
这是我的配置文件
<catalog>
<product>
<type>
<formula translate="label" module="bank">
<label>Formula Product</label>
<model>bank/product_type_formula</model>
<composite>1</composite>
<allowed_selection_types>
<simple/>
<virtual/>
</allowed_selection_types>
<price_model>bank/product_type_formula_price</price_model>
<index_data_retreiver>bank/catalogIndex_data_formula</index_data_retreiver>
<index_priority>40</index_priority>
</formula>
</type>
<options>
<formula>
<types>
<select translate="label" module="bank">
<label>Drop-down</label>
</select>
<radio translate="label" module="bank">
<label>Radio Buttons</label>
</radio>
<checkbox translate="label" module="bank">
<label>Checkbox</label>
</checkbox>
<multi translate="label" module="bank">
<label>Multiple Select</label>
</multi>
</types>
</formula>
</options>
</product>
</catalog>
我是否必须创建更多配置或任何内容来扩展捆绑产品。
非常感谢。
答案 0 :(得分:0)
价格是根据getPrice和getFinalPrice
计算的如果是捆绑产品,它将搜索捆绑产品的总功能并计算价格
在您创建新产品时,您已为其创建了一个完整的模型,即Mage_Catalog_Model_Product_Type_Configurable_Price
向我们提供您的代码详细信息以获取更多信息