我正在尝试找到一种方法,即使客户订阅使用 WooCommerce 订阅处于暂停状态,也可以继续生成发票。
我遇到的问题是,一旦付款失败后订阅被“暂停”,WooCommerce 就会停止生成发票(相关订单获得失败状态)。
有时,我们的团队没有注意到这些订阅,可能几个月都没有生成发票,而客户却继续收到我们的产品。
由于我们的订阅产品是实体产品,而不是数字产品,因此我们需要 WooCommerce 每月继续生成发票并发送电子邮件,即使订阅处于暂停状态也是如此。
我正在尝试使用此代码即使在订阅“暂停”时也能生成发票。
// Generate invoice even if the subscription is on-hold
add_action('woocommerce_scheduled_subscription_payment', 'generate_invoice_for_on_hold_subscription', 10, 2);
function generate_invoice_for_on_hold_subscription( $amount_to_charge, $subscription ) {
// Check if the subscription is on-hold
if ($subscription->has_status('on-hold')) {
// Get the order related to the subscription
$order = wc_create_order(array(
'customer_id' => $subscription->get_customer_id()
));
// Add subscription items to the order
foreach ($subscription->get_items() as $item_id => $item) {
$product_id = $item->get_product_id();
$quantity = $item->get_quantity();
$order->add_product(wc_get_product($product_id), $quantity);
}
// Set billing information
$order->set_address($subscription->get_address('billing'), 'billing');
// Create invoice by changing the order status to pending
$order->update_status('pending');
// Send the invoice email to the customer
WC()->mailer()->get_emails()['WC_Email_Customer_Invoice']->trigger($order->get_id());
}
}
我对代码的期望:
即使账户被冻结,如何让发票继续生成?
woocommerce_scheduled_subscription_payment
操作钩子,只有 $subscription_id
作为参数,但没有 $amount_to_charge
和 $subscription
。
此外,您也可以尝试将相关订单状态更改回“待处理”,而不是创建新的克隆订单。
当订阅“暂停”时,我看到有 2 种方法可以发送有关付款失败的 WooCommerce 发票通知:
1)。从“暂停”订阅端:
add_action('woocommerce_subscription_payment_failed', 'generate_invoice_for_on_hold_subscription', 10, 2);
function generate_invoice_for_on_hold_subscription( $subscription, $new_status ) {
// Check if the subscription status is "on-hold"
if ( $new_status === 'on-hold' ) {
$orders_ids = $subscription->get_related_order_ids(); // get related order
$order_id = absint( end( $orders_ids ) ); // Get last related order ID
$order = wc_get_order( $order_id ); // Get the WC_Order object to
if ( is_a( $order, 'WC_Order' ) && $order->has_status( 'failed' ) ) {
// Tag the order with custom meta data
$order->update_meta_data('_invoice_sent', '1');
// Change back the order status to pending and save
$order->update_status( 'pending', esc_html__('Status change from failed to pending'), true );
// Send the invoice email to the customer
WC()->mailer()->get_emails()['WC_Email_Customer_Invoice']->trigger( $order->get_id() );
}
}
}
2)。从失败的订单端(如果不起作用):
add_action( 'woocommerce_order_status_failed', 'generate_invoice_for_on_hold_subscription', 10, 2 );
function generate_invoice_for_on_hold_subscription( $order_id, $order ){
// Get subscriptions from order ID
$subscriptions_ids = wcs_get_subscriptions_for_order( $order_id, array( 'order_type' => 'any' ) );
// Exit if there are no subscriptions linked to the current failed order
if ( ! $subscriptions_ids ) {
return;
}
// Get the WC_Subscription object
$subscription = new WC_Subscription( current($subscriptions_ids) );
// Check if the subscription status is "on-hold"
if ( $subscription->has_status( 'on-hold' ) && $order->get_meta('_invoice_sent', '1')) {
// Tag the order with custom meta data
$order->update_meta_data('_invoice_sent', '1');
// Change back the order status to pending and save
$order->update_status( 'pending', esc_html__('Status change from failed to pending'), true );
// Send the invoice email to the customer
WC()->mailer()->get_emails()['WC_Email_Customer_Invoice']->trigger( $order->get_id() );
}
}
未经测试,可以工作。