WooCommerce에서 결제가 없는 경우 X일 후 자동으로 주문 취소
제가 웹 검색 후에 이것을 정리했는데 작동하지 않습니다.제 목표는 3일이 지나도 주문이 결제되지 않으면 결제 게이트웨이에 상관없이 보류 상태로 모든 주문을 자동으로 취소하는 것입니다.
코드가 분명히 불완전하며, 완료할 수 있도록 도움을 요청합니다.저는 그것을 시험하고 있었습니다.-1 minute
무슨 일이 있었는지 보려고요그렇지 않았습니다.
function get_unpaid_orders() {
global $wpdb;
$unpaid_orders = $wpdb->get_col( $wpdb->prepare( "
SELECT posts.ID
FROM {$wpdb->posts} AS posts
WHERE posts.post_status = 'wc-on-hold'
AND posts.post_date < %s
", date( 'Y-m-d H:i:s', strtotime('-1 minute') ) ) );
return $unpaid_orders;
}
add_action( 'woocommerce_cancel_unpaid_submitted', 'cancel_unpaid_orders' );
function cancel_unpaid_orders() {
$unpaid_orders = get_unpaid_orders();
if ( $unpaid_orders ) {
foreach ( $unpaid_orders as $unpaid_order ) {
$order = wc_get_order( $unpaid_order );
$cancel_order = true;
foreach ( $order->get_items() as $item_key => $item_values) {
$manage_stock = get_post_meta( $item_values, '_manage_stock', true );
if ( $manage_stock == "yes" ) {
$payment_method = $order->get_payment_method();
if ( $payment_method == "bacs" ) {
$cancel_order = false;
}
}
}
if ( $cancel_order == true ) {
$order -> update_status( 'cancelled', __( 'The order was cancelled due to no payment from customer.', 'woocommerce') );
}
}
}
}
업데이트 4
참고: WooCommerce에는 이미 후크된 기능이 있습니다.woocommerce_cancel_unpaid_orders
7일 후 미지급 주문을 취소하는 액션 훅.
찾지 못했습니다.woocommerce_cancel_unpaid_submitted
액션 훅, 그래서 그것이 존재하는지 그리고 그것이 트리거되었는지 나는 모릅니다.
이제 코드에 몇 가지 오류가 있으므로 올바른 배열을 직접 제공하는 wc_get_orders()를 더 잘 사용할 수 있습니다.WC_Order
대신 객체...
다음은 다양한 방법으로 제작할 수 있습니다(마지막 방법은 테스트되지 않음)
이 마지막 솔루션이 테스트되어 작동하는 경우 상점 관리자 또는 관리자 역할이 관리 주문 목록을 검색할 때(하루에 한 번만 실행):
add_action( 'restrict_manage_posts', 'cancel_unpaid_orders' );
function cancel_unpaid_orders() {
global $pagenow, $post_type;
// Enable the process to be executed daily when browsing Admin order list
if( 'shop_order' === $post_type && 'edit.php' === $pagenow
&& get_option( 'unpaid_orders_daily_process' ) < time() ) :
$days_delay = 5; // <=== SET the delay (number of days to wait before cancelation)
$one_day = 24 * 60 * 60;
$today = strtotime( date('Y-m-d') );
// Get unpaid orders (5 days old)
$unpaid_orders = (array) wc_get_orders( array(
'limit' => -1,
'status' => 'on-hold',
'date_created' => '<' . ( $today - ($days_delay * $one_day) ),
) );
if ( sizeof($unpaid_orders) > 0 ) {
$cancelled_text = __("The order was cancelled due to no payment from customer.", "woocommerce");
// Loop through orders
foreach ( $unpaid_orders as $unpaid_order ) {
$unpaid_order->update_status( 'cancelled', $cancelled_text );
}
}
// Schedule the process to the next day (executed once restriction)
update_option( 'unpaid_orders_daily_process', $today + $one_day );
endif;
}
코드가 작동합니다.활성 하위 테마(또는 활성 테마)의 php 파일입니다.
이 세 번째 솔루션은 테스트를 거쳐 작동합니다.이 기능은 주문이 "처리" 또는 "완료" 상태로 변경될 때 트리거됩니다(하루에 한 번만 실행됨).
// Triggered on orders status change to "processing" or "completed"
add_action( 'woocommerce_order_status_changed', 'daily_cancel_unpaid_orders', 10, 4 );
function daily_cancel_unpaid_orders( $order_id, $old_status, $new_status, $order ) {
// Enable the process to be executed daily
if( in_array( $new_status, array('processing', 'completed') )
&& get_option( 'unpaid_orders_daily_process' ) < time() ) :
$days_delay = 5; // <=== SET the delay (number of days to wait before cancelation)
$one_day = 24 * 60 * 60;
$today = strtotime( date('Y-m-d') );
// Get unpaid orders (5 days old)
$unpaid_orders = (array) wc_get_orders( array(
'limit' => -1,
'status' => 'on-hold',
'date_created' => '<' . ( $today - ($days_delay * $one_day) ),
) );
if ( sizeof($unpaid_orders) > 0 ) {
$cancelled_text = __("The order was cancelled due to no payment from customer.", "woocommerce");
// Loop through WC_Order Objects
foreach ( $unpaid_orders as $order ) {
$order->update_status( 'cancelled', $cancelled_text );
}
}
// Schedule the process to the next day (executed once restriction)
update_option( 'unpaid_orders_daily_process', $today + $one_day );
endif;
}
코드가 작동합니다.활성 하위 테마(또는 활성 테마)의 php 파일입니다.
그래서 당신은 시도할 수 있습니다.woocommerce_cancel_unpaid_submitted
액션 후크:
add_action( 'woocommerce_cancel_unpaid_submitted', 'cancel_unpaid_orders' );
function cancel_unpaid_orders() {
$days_delay = 5; // <=== SET the delay (number of days to wait before cancelation)
$one_day = 24 * 60 * 60;
$today = strtotime( date('Y-m-d') );
// Get unpaid orders (5 days old here)
$unpaid_orders = (array) wc_get_orders( array(
'limit' => -1,
'status' => 'on-hold',
'date_created' => '<' . ( $today - ($days_delay * $one_day) ),
) );
if ( sizeof($unpaid_orders) > 0 ) {
$cancelled_text = __("The order was cancelled due to no payment from customer.", "woocommerce");
// Loop through orders
foreach ( $unpaid_orders as $order ) {
$order->update_status( 'cancelled', $cancelled_text );
}
}
}
코드가 작동합니다.활성 하위 테마(또는 활성 테마)의 php 파일입니다.
기능 코드가 더 잘 작동해야 합니다.내가 정말 모르는 갈고리 때문에.
사용해 볼 수도 있습니다.woocommerce_cancel_unpaid_orders
대신 액션 훅.
@Loic The Aztec의 훌륭한 답변에 추가하는 것.플러그인으로 수정하였고, 이 기능을 활성화/비활성화할 수 있는 설정 페이지를 추가하였으며, Admin 설정에서 지연 일수를 변경할 수 있습니다.코드는 다음과 같습니다.
<?php
/**
* Plugin Name: Cancel On-Hold Orders After X Days
* Plugin URI: https://smartairfilters.com
* Description: Cancel orders that are in an 'on-hold' status after a certain number of days. Uses wordpress cron to trigger
* Version: 1.0.0
* Author: Paddy Robertson
* Author URI: https://patrickrobertson.uk
* Requires at least: 5.3
* Requires PHP: 7.0
*/
add_action('woocommerce_cancel_unpaid_orders', 'cancel_onhold_orders');
function cancel_onhold_orders() {
if (!get_option('cancel_onhold_enable')) {
// only run if feature is enabled
return;
}
$days_delay = get_option('cancel_onhold_days_delay'); // <=== SET the delay (number of days to wait before cancelation)
echo "days delay xxxx " . $days_delay;
$one_day = 24 * 60 * 60;
$today = strtotime( date('Y-m-d') );
// Get unpaid orders (5 days old here)
$unpaid_orders = (array) wc_get_orders(array(
'orderby' => 'date',
'order' => 'DESC',
'limit' => -1,
'status' => 'on-hold',
'date_created' => '<' . ($today - ($days_delay * $one_day)),
));
if ( sizeof($unpaid_orders) > 0 ) {
$cancelled_text = __("The order was cancelled due to no payment from customer.", "woocommerce");
// Loop through orders
foreach ( $unpaid_orders as $order ) {
$order->update_status( 'cancelled', $cancelled_text );
}
}
}
// Settings page
function cancel_onhold_register_settings() {
register_setting( 'cancel_onhold_group', 'cancel_onhold_days_delay');
register_setting( 'cancel_onhold_group', 'cancel_onhold_enable');
}
add_action( 'admin_init', 'cancel_onhold_register_settings' );
function cancel_onhold_register_options_page() {
add_options_page('Cancel On-Hold Orders', 'Cancel On-Hold', 'manage_options', 'cancel_onhold_options_page', 'cancel_onhold_options_page');
}
add_action('admin_menu', 'cancel_onhold_register_options_page');
function cancel_onhold_options_page() {
?>
<div>
<h2>Cancel On-Hold Orders after X Days</h2>
<form method="post" action="options.php">
<?php settings_fields( 'cancel_onhold_group' ); ?>
<table class="form-table">
<tr valign="top">
<th scope="row"><label for="cancel_onhold_enable">Enable/Disable this feature</label></th>
<td><input type="checkbox" id="cancel_onhold_enable" name="cancel_onhold_enable" value="1" <?php checked(get_option('cancel_onhold_enable')); ?>" /></td>
</tr>
<tr valign="top">
<th scope="row"><label for="cancel_onhold_days_delay">Enter number of days after which on hold orders will be cancelled</label></th>
<td><input type="number" id="cancel_onhold_days_delay" name="cancel_onhold_days_delay" value="<?php echo get_option('cancel_onhold_days_delay'); ?>" /> days</td>
</tr>
</table>
<?php submit_button(); ?>
</form>
</div>
<?php
}
언급URL : https://stackoverflow.com/questions/55792360/automatically-cancel-order-after-x-days-if-no-payment-in-woocommerce
'programing' 카테고리의 다른 글
gcc의 on-function-section 및 -f 데이터-section 옵션 쿼리 (0) | 2023.06.11 |
---|---|
R마크다운에서 코드를 표시하고 출력을 숨기는 방법은 무엇입니까? (0) | 2023.06.11 |
Mysql 로드의 임의 피크가 모든 사용자를 느리게 함 (0) | 2023.06.11 |
갈퀴 작업에서 일찍 돌아오려면 어떻게 해야 합니까? (0) | 2023.06.11 |
새 행을 삽입할 때 수식을 다음 행에 복사 (0) | 2023.06.11 |