3

Drupal コマース クーポンを適用しようとして、約 2 日間行き詰まりました。私はクーポンの検証に気を配りましたが、現在、クーポンを引き換えようとして困惑しています.

したがって、コールバック関数内で次のように呼び出しています。

my_module_coupons_coupon_redeem($coupon);

そして、私が持っている償還機能の中に:

function my_module_coupons_coupon_redeem($coupon) { 
  global $user;
  $uid = $user->uid;

  $order = commerce_cart_order_load($uid);

  // Wrap the order for easy access to field data.
  $order_wrapper = entity_metadata_wrapper('commerce_order', $order);

  // Create the new line item.
  $line_item = commerce_coupon_line_item_new($coupon, $order->order_id);
  $line_item->commerce_unit_price = array('und' => array(
    '0' => array('amount' => 500, 'currency_code' => commerce_default_currency())
  ));

  $line_item_wrapper = entity_metadata_wrapper('commerce_line_item', $line_item);
  if (!is_null($line_item_wrapper->commerce_unit_price->value())) {
    // Add the base price to the components array.
    if (!commerce_price_component_load($line_item_wrapper->commerce_unit_price->value(), 'base_price')) {
      $line_item_wrapper->commerce_unit_price->data = commerce_price_component_add(
        $line_item_wrapper->commerce_unit_price->value(),
        'base_price',
        $line_item_wrapper->commerce_unit_price->value(),
        TRUE
      );
    }
  }

  $line_item_wrapper->commerce_total->data = $line_item_wrapper->commerce_unit_price->data;
  //$line_item_wrapper->commerce_product->data = $coupon;

  // Save the line item now so we get its ID.
  commerce_line_item_save($line_item);

  // Add it to the order's line item reference value.
  $order_wrapper->commerce_line_items[] = $line_item;

  commerce_order_save($order);
}

クーポン line_item は DB に保存されていますが、カート ページを更新すると次のエラーが表示されます。

EntityMetadataWrapperException: Unknown data property commerce_product. in EntityStructureWrapper->getPropertyInfo()

これがルールを使用せずにクーポンを適用する正しい方法なのかどうか疑問に思っています。そもそもクーポンを広告申込情報として保存する必要がありますか?

4

2 に答える 2

1

sites/all/modules/commerce_coupon/oncludes/commerce_coupon.checkout_pane.inc をご覧ください。

global $user;
$uid = $user->uid;
$error = '';

// load the cart
$order = commerce_cart_order_load($uid);

// load the coupon from the coupon code
// see MySQL -> your-schema, table: commerce_coupon, column: code
$coupon = commerce_coupon_redeem_coupon_code($code, $order, $error);

// 302 to the cart
drupal_goto('checkout/' . $order->order_id);
于 2014-10-21T14:27:15.607 に答える