支払いページにリダイレクトする匿名ユーザーのために、Drupal Commerceでプログラムで注文を作成する


19

ライアンには、プログラムで注文を作成できる素晴らしいコードがいくつかあります

<?php
global $user;
$product_id = 1;
// Create the new order in checkout; you might also check first to
// see if your user already has an order to use instead of a new one.
$order = commerce_order_new($user->uid, 'checkout_checkout');

// Save the order to get its ID.
commerce_order_save($order);

// Load whatever product represents the item the customer will be
// paying for and create a line item for it.
$product = commerce_product_load($product_id);
$line_item = commerce_product_line_item_new($product, 1, $order->order_id);

// Save the line item to get its ID.
commerce_line_item_save($line_item);

// Add the line item to the order using fago's rockin' wrapper.
$order_wrapper = entity_metadata_wrapper('commerce_order', $order);
$order_wrapper->commerce_line_items[] = $line_item;

// Save the order again to update its line item reference field.
commerce_order_save($order);

// Redirect to the order's checkout form. Obviously, if this were a
// form submit handler, you'd just set $form_state['redirect'].
drupal_goto('checkout/' . $order->order_id);
?>

http://www.drupalcommerce.org/questions/3259/it-possible-drupal-commerce-work-without-cart-module

匿名で寄付をしたいサイトがあるので、2つの問題があります。

  1. ユーザーがサイトにログインしていない場合、アクセス拒否メッセージが表示されます
  2. チェックアウトプロセスでは、名前、住所などの入力を求められます。

私がやりたいのは、金額を確認して支払いページに移動するページを用意することです。この場合、PayPal WPSを使用しているので、そこにリダイレクトするといいでしょう。

アドバイスをいただければ幸いです。


素晴らしい、あなたは私に質問をして魅力的に私の問題を解決するのを妨げる質問:)
ユセフ

@zhilevanはコメントしてくれてありがとう、私はこれがうまくいったので、答えを思い出してください。それも追加します
-user13134

このコードを別のプロジェクトに実装しますが、rootユーザーも実行しないと、ページが見つかりません!
ユセフ14年

要求されたページ「/ nashrtest / checkout / 12」が見つかりませんでした。
ユセフ14年

回答:


12

次の構文を持つCommerce Drushという新しいモジュールをテストすることができます。

drush commerce-order-add 1
drush --user=admin commerce-order-add MY_SKU123

手動ソリューション

Commerceでプログラムで注文を作成するには、次のコードを使用できます(たとえば、drushでも機能しますdrush -vd -u "$1" scr order_code-7.php)。commerce_payment_exampleモジュールが必要であることに注意してください。

<?php

  if (!function_exists('drush_print')) {
    function drush_print ($text) {
      print $text . "\n";
    }
  }

  $is_cli = php_sapi_name() === 'cli';

  global $user;

  // Add the product to the cart
  $product_id = 5;
  $quantity = 1;

  if ($is_cli) {
    drush_print('Creating new order for ' . $quantity . ' item(s) of product ' . $product_id . '...');
  }

  // Create the new order in checkout; you might also check first to
  // see if your user already has an order to use instead of a new one.
  $order = commerce_order_new($user->uid, 'checkout_checkout');

  // Save the order to get its ID.
  commerce_order_save($order);

  if ($is_cli) {
    drush_print('Order created. Commerce order id is now ' . $order->order_id);
    drush_print('Searching product ' . $product_id . ' in a Commerce system...');
  }

  // Load whatever product represents the item the customer will be
  // paying for and create a line item for it.
  $product = commerce_product_load((int)$product_id);

  if((empty($product->product_id)) || (!$product->status)){
    if ($is_cli) {
      drush_print('  Cannot match given product id with a Commerce product id.');
    }

    drupal_set_message(t('Invalid product id'));
    drupal_goto(); // frontpage
    return FALSE;
  }

  if ($is_cli) {
    drush_print('  Found a Commerce product ' . $product->product_id . '.');
  }

  // Create new line item based on selected product
  $line_item = commerce_product_line_item_new($product, 1, $order->order_id);

  if ($is_cli) {
    drush_print('  Added product to the cart.');
  }

  // Save the line item to get its ID.
  commerce_line_item_save($line_item);

  // Add the line item to the order using fago's rockin' wrapper.
  $order_wrapper = entity_metadata_wrapper('commerce_order', $order);
  $order_wrapper->commerce_line_items[] = $line_item;

  if ($is_cli) {
    drush_print('Saving order...');
  }

  // Save the order again to update its line item reference field.
  commerce_order_save($order);

  // Redirect to the order's checkout form. Obviously, if this were a
  // form submit handler, you'd just set $form_state['redirect'].

  if ($is_cli) {
    drush_print('Checking out the order...');
  }

  commerce_checkout_complete($order);

  if ($is_cli) {
    drush_print('Marking order as fully paid...');
  }

  $payment_method = commerce_payment_method_instance_load('commerce_payment_example|commerce_payment_commerce_payment_example');

  if (!$payment_method) {
    if ($is_cli) {
      drush_print("  No example payment method found, we can't mark order as fully paid. Please enable commerce_payment_example module to use this feature.");
    }
  }
  else {
    if ($is_cli) {
      drush_print("  Creating example transaction...");
    }

    // Creating new transaction via commerce_payment_example module.
    $charge      = $order->commerce_order_total['und'][0];

    $transaction = commerce_payment_transaction_new('commerce_payment_example', $order->order_id);
    $transaction->instance_id = $payment_method['instance_id'];
    $transaction->amount = $charge['amount'];
    $transaction->currency_code = $charge['currency_code'];
    $transaction->status = COMMERCE_PAYMENT_STATUS_SUCCESS;
    $transaction->message = 'Name: @name';
    $transaction->message_variables = array('@name' => 'Example payment');

    if ($is_cli) {
      drush_print("  Notifying Commerce about new transaction...");
    }

    commerce_payment_transaction_save($transaction);

    commerce_payment_commerce_payment_transaction_insert($transaction);
  }

  if ($is_cli) {
    drush_print("Marking order as completed...");
  }

  commerce_order_status_update($order, 'completed');

  if ($is_cli) {
    drush_print("\nDone.");
  }

注:コメントで示唆されているように、注文の保存中に支払い方法が不明であるというエラーが発生した場合は、指定したことを確認してください。

$order->data['payment_method'] = 'commerce_payment_example|commerce_payment_commerce_payment_‌​example';
commerce_order_save($order); 

2
Commerce Drushモジュールは素晴らしいツールのように聞こえます。
フランシスコルス

手動ソリューションの部分に関しては、注文のメール通知に問題があります。支払い方法が「不明」である理由は
わかり

@fkaufusi新しい質問を提起して、何が起こっているのかを確認する必要があります。
ケノーブ

注文メールで「不明な」支払い方法の解決策を見つけました。注文を保存する前に、支払い方法を注文に追加する必要があります。これにより、トークンシステムが支払い方法を選択し、注文メールで使用できるようになります。$ order-> data ['payment_method'] = 'commerce_payment_example | commerce_payment_commerce_payment_example'; commerce_order_save($ order);
-fkaufusi

5

この変更されたスクリプトは、匿名ユーザーに対しても機能します。

<?php
global $user;

$product_id = 2;
// Create the new order in checkout; you might also check first to
// see if your user already has an order to use instead of a new one.
$order = commerce_order_new($user->uid, 'checkout_checkout');
// Save the order to get its ID.
commerce_order_save($order);

// Link anonymous user session to the cart
if (!$user->uid) {
    commerce_cart_order_session_save($order->order_id);
}

// Load whatever product represents the item the customer will be
// paying for and create a line item for it.
$product = commerce_product_load($product_id);
$line_item = commerce_product_line_item_new($product, 1, $order->order_id);

// Save the line item to get its ID.
commerce_line_item_save($line_item);

// Add the line item to the order using fago's rockin' wrapper.
$order_wrapper = entity_metadata_wrapper('commerce_order', $order);
$order_wrapper->commerce_line_items[] = $line_item;

// Save the order again to update its line item reference field.
commerce_order_save($order);

// Redirect to the order's checkout form. Obviously, if this were a
// form submit handler, you'd just set $form_state['redirect'].
drupal_goto('checkout/' . $order->order_id);


-1

1.ユーザーがサイトにログインしていない場合、アクセス拒否メッセージが表示されます

私は何かを手に入れましたが、それがベストプラクティスであることを疑っています。

最終的に私はごまかした。メールアドレスなどの詳細を入力するフォームで、ユーザーアカウントをその場で作成してログインします。メールアドレスがすべて使用可能になったら、ユーザーをログインします(使用していないことを確認します管理者のメールアドレス)。

私のサイトには寄付フォームページがあり、そのページにアクセスすると、ログアウトします(管理者でない場合)。トランザクションが成功すると、ログアウトします。ログインしたときに知っているページにのみアクセスできるように、注文履歴をオフにしてリダイレクトを設定しました。個人情報は保存されず、過去の寄付を見ることができません

私の状況では、この仕組みに満足しています。これは理想的ではなく、いくつかの場合にのみ機能します。

2.チェックアウトプロセスは、名前、住所などを要求します。

に行きました

/ admin / commerce / config / checkout

そして無効

  • 口座情報
  • 課金情報
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.