4

如何使用 API 在后端向产品添加自定义选项。

我正在使用 C#,但如果你知道如何在 Php 中做到这一点,那也会很有帮助。

我注意到产品有这个:

var product = new catalogProductCreateEntity();
product.options_container = "blah";

还有这个:

catalogAttributeOptionEntity optionEntity = new catalogAttributeOptionEntity();
            optionEntity.value = "sds";
            optionEntity.label = "ere"; 

但是我看不到使用它们的方法,我不确定如何制作容器,并且 catalogAttributeOptionEntity 没有制作自定义选项所需的所有属性。

4

3 回答 3

2

这在任何地方(其他地方)都没有记录,但至少在 Magento 1.6 中,可以在源代码中找到产品选项的适当 API 方法。(我不知道该功能从哪个版本开始存在。)

API 本身定义在:app/code/core/Mage/Catalog/etc/api.xml

<catalog_product_custom_option translate="title" module="catalog">
    <title>Catalog product custom options API</title>
    <model>catalog/product_option_api</model>
    <acl>catalog/product/option</acl>
    <methods>
        <add translate="title" module="catalog">
            <title>Add new custom option into product</title>
            <acl>catalog/product/option/add</acl>
        </add>
        <update translate="title" module="catalog">
            <title>Update custom option of product</title>
            <acl>catalog/product/option/update</acl>
        </update>
        <types translate="title" module="catalog">
            <title>Get list of available custom option types</title>
            <acl>catalog/product/option/types</acl>
        </types>
        <info translate="title" module="catalog">
            <title>Get full information about custom option in product</title>
            <acl>catalog/product/option/info</acl>
        </info>
        <list translate="title" module="catalog">
            <title>Retrieve list of product custom options</title>
            <acl>catalog/product/option/list</acl>
            <method>items</method>
        </list>
        <remove translate="title" module="catalog">
            <title>Remove custom option</title>
            <acl>catalog/product/option/remove</acl>
        </remove>
    </methods>
</catalog_product_custom_option>

调用的函数定义在:app/code/core/Mage/Catalog/Model/Product/Option/Api.php

class Mage_Catalog_Model_Product_Option_Api extends Mage_Catalog_Model_Api_Resource
{

    /**
     * Add custom option to product
     *
     * @param string $productId
     * @param array $data
     * @param int|string|null $store
     * @return bool $isAdded
     */
    public function add( $productId, $data, $store = null )

    /**
     * Update product custom option data
     *
     * @param string $optionId
     * @param array $data
     * @param int|string|null $store
     * @return bool
     */
    public function update( $optionId, $data, $store = null )

    /**
     * Read list of possible custom option types from module config
     *
     * @return array
     */
    public function types()

    /**
     * Get full information about custom option in product
     *
     * @param int|string $optionId
     * @param  int|string|null $store
     * @return array
     */
    public function info( $optionId, $store = null )

    /**
     * Retrieve list of product custom options
     *
     * @param  string $productId
     * @param  int|string|null $store
     * @return array
     */
    public function items( $productId, $store = null )

    /**
     * Remove product custom option
     *
     * @param string $optionId
     * @return boolean
     */
    public function remove( $optionId )

    /**
     * Check is type in allowed set
     *
     * @param string $type
     * @return bool
     */
    protected function _isTypeAllowed( $type )

}

-array 也有点棘手,因为它的$data键部分取决于所选的选项类型。基本的 $data-array 如下所示:

$data = array (
    'is_delete' => 0,
    'title' => 'Custom Option Label',
    'type' => 'text',
    'is_require' => 0,
    'sort_order' => 1,
    'additional_fields' => array (
        0 => array (
            'price' => '10.0000',
            'price_type' => 'fixed',  // 'fixed' or 'percent'
            'sku' => '',
        ),
    ),
);

additional_fields总是包含至少一行,至少有列price,price_typesku。根据类型,可能会添加更多附加字段(maf: ...)。组中的类型select可能在 中指定了不止一行additional_fields。自定义选项类型/类型组是:

  • 文本 (maf: 'max_characters')
    • 场地
    • 区域
  • 文件 (maf: 'file_extension', 'image_size_x', 'image_size_y')
    • 文件
  • 选择 (maf: 'value_id', 'title', 'sort_order')
    • 落下
    • 收音机
    • 复选框
  • 日期
    • 日期
    • 约会时间
    • 时间

完整选项数据数组的示例:

// type-group: select, type: checkbox
$data = array (
    'is_delete' => 0,
    'title' => 'extra Option for that product',
    'type' => 'checkbox',
    'is_require' => 0,
    'sort_order' => 1,
    'additional_fields' => array (
        0 => array (
            'value_id' => '3',
            'title' => 'Yes',
            'price' => 10.00,
            'price_type' => 'fixed',
            'sku' => NULL,
            'sort_order' => 1,
        ),
        1 => array (
            'value_id' => 3,
            'title' => 'No',
            'price' => 0.00,
            'price_type' => 'fixed',
            'sku' => NULL,
            'sort_order' => 2,
        ),
    ),
);

// type-group: text, type: field
$data = array (
    'is_delete' => 0,
    'title' => 'Custom Option Label',
    'type' => 'text',
    'is_require' => 0,
    'sort_order' => 1,
    'additional_fields' => array (
        0 => array (
            'price' => 10.00,
            'price_type' => 'fixed',
            'sku' => NULL,
            'max_characters' => 150,
        ),
    ),
);
于 2012-03-13T16:39:55.443 回答
2

查看管理产品控制器。对的,这是可能的。

/**
         * Initialize data for configurable product
         */
        if (($data = $this->getRequest()->getPost('configurable_products_data')) && !$product->getConfigurableReadonly()) {
            $product->setConfigurableProductsData(Zend_Json::decode($data));
        }
        if (($data = $this->getRequest()->getPost('configurable_attributes_data')) && !$product->getConfigurableReadonly()) {
            $product->setConfigurableAttributesData(Zend_Json::decode($data));
        }

        $product->setCanSaveConfigurableAttributes((bool)$this->getRequest()->getPost('affect_configurable_product_attributes') && !$product->getConfigurableReadonly());

        /**
         * Initialize product options
         */
        if (isset($productData['options']) && !$product->getOptionsReadonly()) {
            $product->setProductOptions($productData['options']);
        }
于 2009-10-26T12:50:37.423 回答
0

最后我决定不能通过API完成,直接去数据库。

于 2009-06-20T19:53:57.540 回答