2014-04-08 15:28:27 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Update WC to 2.2.0
|
|
|
|
*
|
|
|
|
* @author WooThemes
|
|
|
|
* @category Admin
|
|
|
|
* @package WooCommerce/Admin/Updates
|
|
|
|
* @version 2.2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
|
|
|
|
global $wpdb;
|
|
|
|
|
|
|
|
// Update options
|
|
|
|
$woocommerce_ship_to_destination = 'shipping';
|
|
|
|
|
|
|
|
if ( get_option( 'woocommerce_ship_to_billing_address_only' ) === 'yes' ) {
|
|
|
|
$woocommerce_ship_to_destination = 'billing_only';
|
|
|
|
} elseif ( get_option( 'woocommerce_ship_to_billing' ) === 'yes' ) {
|
|
|
|
$woocommerce_ship_to_destination = 'billing';
|
|
|
|
}
|
|
|
|
|
2014-05-30 17:27:41 +00:00
|
|
|
add_option( 'woocommerce_ship_to_destination', $woocommerce_ship_to_destination, '', 'no' );
|
2014-06-03 10:04:56 +00:00
|
|
|
|
2014-05-30 17:27:41 +00:00
|
|
|
// Update order statuses
|
|
|
|
$wpdb->query( "
|
|
|
|
UPDATE {$wpdb->posts} as posts
|
|
|
|
LEFT JOIN {$wpdb->term_relationships} AS rel ON posts.ID = rel.object_ID
|
|
|
|
LEFT JOIN {$wpdb->term_taxonomy} AS tax USING( term_taxonomy_id )
|
|
|
|
LEFT JOIN {$wpdb->terms} AS term USING( term_id )
|
2014-06-03 10:04:56 +00:00
|
|
|
SET posts.post_status = 'wc-pending'
|
2014-05-30 17:27:41 +00:00
|
|
|
WHERE posts.post_type = 'shop_order'
|
|
|
|
AND posts.post_status = 'publish'
|
|
|
|
AND tax.taxonomy = 'shop_order_status'
|
|
|
|
AND term.slug LIKE 'pending%';
|
|
|
|
"
|
|
|
|
);
|
|
|
|
$wpdb->query( "
|
|
|
|
UPDATE {$wpdb->posts} as posts
|
|
|
|
LEFT JOIN {$wpdb->term_relationships} AS rel ON posts.ID = rel.object_ID
|
|
|
|
LEFT JOIN {$wpdb->term_taxonomy} AS tax USING( term_taxonomy_id )
|
|
|
|
LEFT JOIN {$wpdb->terms} AS term USING( term_id )
|
2014-06-03 10:04:56 +00:00
|
|
|
SET posts.post_status = 'wc-processing'
|
2014-05-30 17:27:41 +00:00
|
|
|
WHERE posts.post_type = 'shop_order'
|
|
|
|
AND posts.post_status = 'publish'
|
|
|
|
AND tax.taxonomy = 'shop_order_status'
|
|
|
|
AND term.slug LIKE 'processing%';
|
|
|
|
"
|
|
|
|
);
|
|
|
|
$wpdb->query( "
|
|
|
|
UPDATE {$wpdb->posts} as posts
|
|
|
|
LEFT JOIN {$wpdb->term_relationships} AS rel ON posts.ID = rel.object_ID
|
|
|
|
LEFT JOIN {$wpdb->term_taxonomy} AS tax USING( term_taxonomy_id )
|
|
|
|
LEFT JOIN {$wpdb->terms} AS term USING( term_id )
|
2014-06-03 10:04:56 +00:00
|
|
|
SET posts.post_status = 'wc-on-hold'
|
2014-05-30 17:27:41 +00:00
|
|
|
WHERE posts.post_type = 'shop_order'
|
|
|
|
AND posts.post_status = 'publish'
|
|
|
|
AND tax.taxonomy = 'shop_order_status'
|
|
|
|
AND term.slug LIKE 'on-hold%';
|
|
|
|
"
|
|
|
|
);
|
|
|
|
$wpdb->query( "
|
|
|
|
UPDATE {$wpdb->posts} as posts
|
|
|
|
LEFT JOIN {$wpdb->term_relationships} AS rel ON posts.ID = rel.object_ID
|
|
|
|
LEFT JOIN {$wpdb->term_taxonomy} AS tax USING( term_taxonomy_id )
|
|
|
|
LEFT JOIN {$wpdb->terms} AS term USING( term_id )
|
2014-06-03 10:04:56 +00:00
|
|
|
SET posts.post_status = 'wc-completed'
|
2014-05-30 17:27:41 +00:00
|
|
|
WHERE posts.post_type = 'shop_order'
|
|
|
|
AND posts.post_status = 'publish'
|
|
|
|
AND tax.taxonomy = 'shop_order_status'
|
|
|
|
AND term.slug LIKE 'completed%';
|
|
|
|
"
|
|
|
|
);
|
|
|
|
$wpdb->query( "
|
|
|
|
UPDATE {$wpdb->posts} as posts
|
|
|
|
LEFT JOIN {$wpdb->term_relationships} AS rel ON posts.ID = rel.object_ID
|
|
|
|
LEFT JOIN {$wpdb->term_taxonomy} AS tax USING( term_taxonomy_id )
|
|
|
|
LEFT JOIN {$wpdb->terms} AS term USING( term_id )
|
2014-06-03 10:04:56 +00:00
|
|
|
SET posts.post_status = 'wc-cancelled'
|
2014-05-30 17:27:41 +00:00
|
|
|
WHERE posts.post_type = 'shop_order'
|
|
|
|
AND posts.post_status = 'publish'
|
|
|
|
AND tax.taxonomy = 'shop_order_status'
|
|
|
|
AND term.slug LIKE 'cancelled%';
|
|
|
|
"
|
|
|
|
);
|
|
|
|
$wpdb->query( "
|
|
|
|
UPDATE {$wpdb->posts} as posts
|
|
|
|
LEFT JOIN {$wpdb->term_relationships} AS rel ON posts.ID = rel.object_ID
|
|
|
|
LEFT JOIN {$wpdb->term_taxonomy} AS tax USING( term_taxonomy_id )
|
|
|
|
LEFT JOIN {$wpdb->terms} AS term USING( term_id )
|
2014-06-03 10:04:56 +00:00
|
|
|
SET posts.post_status = 'wc-refunded'
|
2014-05-30 17:27:41 +00:00
|
|
|
WHERE posts.post_type = 'shop_order'
|
|
|
|
AND posts.post_status = 'publish'
|
|
|
|
AND tax.taxonomy = 'shop_order_status'
|
|
|
|
AND term.slug LIKE 'refunded%';
|
|
|
|
"
|
|
|
|
);
|
|
|
|
$wpdb->query( "
|
|
|
|
UPDATE {$wpdb->posts} as posts
|
|
|
|
LEFT JOIN {$wpdb->term_relationships} AS rel ON posts.ID = rel.object_ID
|
|
|
|
LEFT JOIN {$wpdb->term_taxonomy} AS tax USING( term_taxonomy_id )
|
|
|
|
LEFT JOIN {$wpdb->terms} AS term USING( term_id )
|
2014-06-03 10:04:56 +00:00
|
|
|
SET posts.post_status = 'wc-failed'
|
2014-05-30 17:27:41 +00:00
|
|
|
WHERE posts.post_type = 'shop_order'
|
|
|
|
AND posts.post_status = 'publish'
|
|
|
|
AND tax.taxonomy = 'shop_order_status'
|
|
|
|
AND term.slug LIKE 'failed%';
|
|
|
|
"
|
|
|
|
);
|