微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php-在WooCommerce中以编程方式保存已保存的信用卡

我正在WooCommerce中以编程方式创建订单,需要从认的已保存信用卡中收取费用.我正在使用WooCommerce条形插件,并且想出了如何设置正确的付款方式,但无法弄清楚如何对卡进行实际收费.下面是我到目前为止的代码.

$order = wc_create_order();

$order->add_product( wc_get_product( 52 ), 1 );
$order->set_address( $shipping_address, 'shipping' );
$order->set_address($user_info, 'billing');

$payment_gateways = WC()->payment_gateways->payment_gateways();
$order->set_payment_method($payment_gateways['stripe']);

$order->calculate_totals(); 
$order->update_status("Completed", 'First Partner Order', TRUE);
$order->save();

解决方法:

我能够找到一个解决方案,尽管它不是很优雅,但似乎可行.
基本前提是,我们使用Stripe API创建费用,然后手动添加所有自定义字段.这将导致成功的收费,反映在woocommerce中,以后可以通过管理员退款.下面是带有注释的代码.我想知道是否有人找到了更好的解决方案.

注意:您必须使用sripe php api

$order = wc_create_order();

$order->add_product( wc_get_product( 52 ), 1 ); //Add product to order
$order->set_address( $shipping_address, 'shipping' ); //Add shipping address
$order->set_address($user_info, 'billing'); //Add billing address

//Set payment gateways
$payment_gateways = WC()->payment_gateways->payment_gateways();
$order->set_payment_method($payment_gateways['stripe']);

$order->calculate_totals(true); //setting true included tax 
//Try to charge stripe card
try {

  // Get stripe  test or secret key from woocommerce settings
  $options = get_option( 'woocommerce_stripe_settings' );
  $stripeKey = 'yes' === $options['testmode'] ? $options['test_secret_key'] : 
  $options['secret_key'] ;

  //Set the Stripe API Key
  \Stripe\Stripe::setApiKey($stripeKey);

  //Get Stripe customer token that was created when the card was saved in woo
  $tokenString = get_user_Meta($user_id, '_stripe_customer_id', true);

  //Get total for the order as a number
  $total = intval($order->get_total());
  $totalNoDec = $total * 100;

  //Charge user via Stripe API
  $charge = \Stripe\Charge::create([
    'amount' => $totalNoDec,
    'currency' => 'usd',
    'customer' => $tokenString,
  ]);

  //Set all the Meta data that will be needed
  $order->update_Meta_data( '_transaction_id', $charge->id );
  $order->update_Meta_data( '_stripe_source_id', $charge->payment_method );
  $order->update_Meta_data( '_stripe_charge_captured', 'yes'  );
  $order->update_Meta_data( '_stripe_currency', $charge->currancy);
  $order->update_Meta_data( '_stripe_customer_id', $charge->customer);

} catch (\Stripe\Error\Base $e) {
  // Code to do something with the $e exception object when an error occurs
  echo($e->getMessage());
} catch (Exception $e) {
  echo($e->getMessage());
  // Catch any other non-Stripe exceptions
}

//Set order status to processing
$order->set_status("processing");
$order->save();

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐