我正在使用以下代码在代码中创建 Drupal Commerce 产品:
$cp = commerce_product_new('product');
$cp->is_new = TRUE;
$cp->revision_id = NULL;
$cp->uid = 1;
$cp->status = 1;
$cp->created = $cp->changed = time();
$cp->sku = $product[sku];
$cp->title = $product[name];
$cp->language = LANGUAGE_NONE;
$cp->commerce_price->amount = $product[sale_price] ? $product[sale_price] : $product[retail_price];
$cp->commerce_price->currency_code = 'USD';
commerce_product_save($cp);
如果我注释掉与价格有关的两行,产品会被添加,但没有价格。
如果我不注释掉这两行,我会收到 500 错误
如果我将定价部分更改为:
$cp->commerce_price = array(
'amount' => $product[sale_price] ? $product[sale_price] : $product[retail_price],
'currency_code' => 'USD',
);
我没有收到 500,但我收到了消息
Warning: Invalid argument supplied for foreach() in _commerce_price_field_serialize_data() (line 148 of commerce/modules/price/commerce_price.module).
对于每个被添加的产品,结果是被添加和可用的产品,但在 field_data_commerce_price 表中没有任何价格信息。