mirror of
https://github.com/pronamic/woocommerce-subscriptions.git
synced 2025-10-17 06:42:55 +00:00
369 lines
15 KiB
PHP
Executable File
369 lines
15 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Order Data
|
|
*
|
|
* Functions for displaying the order data meta box.
|
|
*
|
|
* @author Prospress
|
|
* @category Admin
|
|
* @package WooCommerce Subscriptions/Admin/Meta Boxes
|
|
* @version 2.0
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
/**
|
|
* WCS_Meta_Box_Subscription_Data Class
|
|
*/
|
|
class WCS_Meta_Box_Subscription_Data extends WC_Meta_Box_Order_Data {
|
|
|
|
/**
|
|
* Output the metabox
|
|
*/
|
|
public static function output( $post ) {
|
|
global $the_subscription;
|
|
|
|
if ( ! is_object( $the_subscription ) || $the_subscription->get_id() !== $post->ID ) {
|
|
$the_subscription = wc_get_order( $post->ID );
|
|
}
|
|
|
|
$subscription = $the_subscription;
|
|
|
|
self::init_address_fields();
|
|
|
|
wp_nonce_field( 'woocommerce_save_data', 'woocommerce_meta_nonce' );
|
|
?>
|
|
<style type="text/css">
|
|
#post-body-content, #titlediv, #major-publishing-actions, #minor-publishing-actions, #visibility, #submitdiv { display:none }
|
|
</style>
|
|
<div class="panel-wrap woocommerce">
|
|
<input name="post_title" type="hidden" value="<?php echo empty( $post->post_title ) ? esc_attr( get_post_type_object( $post->post_type )->labels->singular_name ) : esc_attr( $post->post_title ); ?>" />
|
|
<input name="post_status" type="hidden" value="<?php echo esc_attr( 'wc-' . $subscription->get_status() ); ?>" />
|
|
<div id="order_data" class="panel">
|
|
|
|
<h2><?php
|
|
// translators: placeholder is the ID of the subscription
|
|
printf( esc_html_x( 'Subscription #%s details', 'edit subscription header', 'woocommerce-subscriptions' ), esc_html( $subscription->get_order_number() ) ); ?></h2>
|
|
|
|
<div class="order_data_column_container">
|
|
<div class="order_data_column">
|
|
|
|
<p class="form-field form-field-wide wc-customer-user">
|
|
<label for="customer_user"><?php esc_html_e( 'Customer:', 'woocommerce-subscriptions' ) ?> <?php
|
|
if ( $subscription->get_user_id() ) {
|
|
$args = array(
|
|
'post_status' => 'all',
|
|
'post_type' => 'shop_subscription',
|
|
'_customer_user' => absint( $subscription->get_user_id() ),
|
|
);
|
|
printf( '<a href="%s">%s →</a>',
|
|
esc_url( add_query_arg( $args, admin_url( 'edit.php' ) ) ),
|
|
esc_html__( 'View other subscriptions', 'woocommerce-subscriptions' )
|
|
);
|
|
printf(
|
|
'<a href="%s">%s</a>',
|
|
esc_url( add_query_arg( 'user_id', $subscription->get_user_id(), admin_url( 'user-edit.php' ) ) ),
|
|
esc_html__( 'Profile', 'woocommerce-subscriptions' )
|
|
);
|
|
}
|
|
?></label>
|
|
<?php
|
|
$user_string = '';
|
|
$user_id = '';
|
|
if ( $subscription->get_user_id() && ( false !== get_userdata( $subscription->get_user_id() ) ) ) {
|
|
$user_id = absint( $subscription->get_user_id() );
|
|
$user = get_user_by( 'id', $user_id );
|
|
$user_string = esc_html( $user->display_name ) . ' (#' . absint( $user->ID ) . ' – ' . esc_html( $user->user_email ) . ')';
|
|
}
|
|
WCS_Select2::render( array(
|
|
'class' => 'wc-customer-search',
|
|
'name' => 'customer_user',
|
|
'id' => 'customer_user',
|
|
'placeholder' => esc_attr__( 'Search for a customer…', 'woocommerce-subscriptions' ),
|
|
'selected' => $user_string,
|
|
'value' => $user_id,
|
|
) );
|
|
?>
|
|
</p>
|
|
|
|
<p class="form-field form-field-wide">
|
|
<label for="order_status"><?php esc_html_e( 'Subscription status:', 'woocommerce-subscriptions' ); ?></label>
|
|
<select id="order_status" name="order_status">
|
|
<?php
|
|
$statuses = wcs_get_subscription_statuses();
|
|
foreach ( $statuses as $status => $status_name ) {
|
|
if ( ! $subscription->can_be_updated_to( $status ) && ! $subscription->has_status( str_replace( 'wc-', '', $status ) ) ) {
|
|
continue;
|
|
}
|
|
echo '<option value="' . esc_attr( $status ) . '" ' . selected( $status, 'wc-' . $subscription->get_status(), false ) . '>' . esc_html( $status_name ) . '</option>';
|
|
}
|
|
?>
|
|
</select>
|
|
</p>
|
|
<?php
|
|
$parent_order = $subscription->get_parent();
|
|
if ( $parent_order ) { ?>
|
|
<p class="form-field form-field-wide">
|
|
<?php echo esc_html__( 'Parent order: ', 'woocommerce-subscriptions' ) ?>
|
|
<a href="<?php echo esc_url( get_edit_post_link( $subscription->get_parent_id() ) ); ?>">
|
|
<?php echo sprintf( esc_html__( '#%1$s', 'woocommerce-subscriptions' ), esc_html( $parent_order->get_order_number() ) ); ?>
|
|
</a>
|
|
</p>
|
|
<?php } else {
|
|
?>
|
|
<p class="form-field form-field-wide">
|
|
<label for="parent-order-id"><?php esc_html_e( 'Parent order:', 'woocommerce-subscriptions' ); ?> </label>
|
|
<?php
|
|
WCS_Select2::render( array(
|
|
'class' => 'wc-enhanced-select',
|
|
'name' => 'parent-order-id',
|
|
'id' => 'parent-order-id',
|
|
'placeholder' => esc_attr__( 'Select an order…', 'woocommerce-subscriptions' ),
|
|
) );
|
|
?>
|
|
</p>
|
|
<?php }
|
|
do_action( 'woocommerce_admin_order_data_after_order_details', $subscription ); ?>
|
|
|
|
</div>
|
|
<div class="order_data_column">
|
|
<h3>
|
|
<?php esc_html_e( 'Billing Details', 'woocommerce-subscriptions' ); ?>
|
|
<a href="#" class="edit_address"><?php esc_html_e( 'Edit', 'woocommerce-subscriptions' ); ?></a>
|
|
<a href="#" class="tips load_customer_billing" data-tip="<?php esc_attr_e( 'Load billing address', 'woocommerce-subscriptions' ); ?>" style="display:none;"><?php esc_html_e( 'Load billing address', 'woocommerce-subscriptions' ); ?></a>
|
|
</h3>
|
|
<?php
|
|
// Display values
|
|
echo '<div class="address">';
|
|
|
|
if ( $subscription->get_formatted_billing_address() ) {
|
|
echo '<p><strong>' . esc_html__( 'Address', 'woocommerce-subscriptions' ) . ':</strong>' . wp_kses( $subscription->get_formatted_billing_address(), array( 'br' => array() ) ) . '</p>';
|
|
} else {
|
|
echo '<p class="none_set"><strong>' . esc_html__( 'Address', 'woocommerce-subscriptions' ) . ':</strong> ' . esc_html__( 'No billing address set.', 'woocommerce-subscriptions' ) . '</p>';
|
|
}
|
|
|
|
foreach ( self::$billing_fields as $key => $field ) {
|
|
|
|
if ( isset( $field['show'] ) && false === $field['show'] ) {
|
|
continue;
|
|
}
|
|
|
|
$function_name = 'get_billing_' . $key;
|
|
|
|
if ( is_callable( array( $subscription, $function_name ) ) ) {
|
|
$field_value = $subscription->$function_name( 'edit' );
|
|
} else {
|
|
$field_value = $subscription->get_meta( '_billing_' . $key );
|
|
}
|
|
|
|
echo '<p><strong>' . esc_html( $field['label'] ) . ':</strong> ' . wp_kses_post( make_clickable( esc_html( $field_value ) ) ) . '</p>';
|
|
}
|
|
|
|
echo '<p' . ( ( '' != $subscription->get_payment_method() ) ? ' class="' . esc_attr( $subscription->get_payment_method() ) . '"' : '' ) . '><strong>' . esc_html__( 'Payment Method', 'woocommerce-subscriptions' ) . ':</strong>' . wp_kses_post( nl2br( $subscription->get_payment_method_to_display() ) );
|
|
|
|
// Display help tip
|
|
if ( '' != $subscription->get_payment_method() && ! $subscription->is_manual() ) {
|
|
echo wcs_help_tip( sprintf( _x( 'Gateway ID: [%s]', 'The gateway ID displayed on the Edit Subscriptions screen when editing payment method.', 'woocommerce-subscriptions' ), $subscription->get_payment_method() ) );
|
|
}
|
|
|
|
echo '</p>';
|
|
|
|
echo '</div>';
|
|
|
|
// Display form
|
|
echo '<div class="edit_address">';
|
|
|
|
foreach ( self::$billing_fields as $key => $field ) {
|
|
if ( ! isset( $field['type'] ) ) {
|
|
$field['type'] = 'text';
|
|
}
|
|
if ( ! isset( $field['id'] ) ) {
|
|
$field['id'] = '_billing_' . $key;
|
|
}
|
|
switch ( $field['type'] ) {
|
|
case 'select' :
|
|
woocommerce_wp_select( $field );
|
|
break;
|
|
default :
|
|
woocommerce_wp_text_input( $field );
|
|
break;
|
|
}
|
|
}
|
|
|
|
WCS_Change_Payment_Method_Admin::display_fields( $subscription );
|
|
|
|
echo '</div>';
|
|
|
|
do_action( 'woocommerce_admin_order_data_after_billing_address', $subscription );
|
|
?>
|
|
</div>
|
|
<div class="order_data_column">
|
|
|
|
<h3>
|
|
<?php esc_html_e( 'Shipping Details', 'woocommerce-subscriptions' ); ?>
|
|
<a href="#" class="edit_address"><?php esc_html_e( 'Edit', 'woocommerce-subscriptions' ); ?></a>
|
|
<a href="#" class="tips billing-same-as-shipping" data-tip="<?php esc_attr_e( 'Copy from billing', 'woocommerce-subscriptions' ); ?>" style="display:none;"><?php esc_html_e( 'Copy from billing', 'woocommerce-subscriptions' ); ?></a>
|
|
<a href="#" class="tips load_customer_shipping" data-tip="<?php esc_attr_e( 'Load shipping address', 'woocommerce-subscriptions' ); ?>" style="display:none;"><?php esc_html_e( 'Load shipping address', 'woocommerce-subscriptions' ); ?></a>
|
|
</h3>
|
|
<?php
|
|
// Display values
|
|
echo '<div class="address">';
|
|
|
|
if ( $subscription->get_formatted_shipping_address() ) {
|
|
echo '<p><strong>' . esc_html__( 'Address', 'woocommerce-subscriptions' ) . ':</strong>' . wp_kses( $subscription->get_formatted_shipping_address(), array( 'br' => array() ) ) . '</p>';
|
|
} else {
|
|
echo '<p class="none_set"><strong>' . esc_html__( 'Address', 'woocommerce-subscriptions' ) . ':</strong> ' . esc_html__( 'No shipping address set.', 'woocommerce-subscriptions' ) . '</p>';
|
|
}
|
|
|
|
if ( ! empty( self::$shipping_fields ) ) {
|
|
foreach ( self::$shipping_fields as $key => $field ) {
|
|
if ( isset( $field['show'] ) && false === $field['show'] ) {
|
|
continue;
|
|
}
|
|
|
|
$function_name = 'get_shipping_' . $key;
|
|
|
|
if ( is_callable( array( $subscription, $function_name ) ) ) {
|
|
$field_value = $subscription->$function_name( 'edit' );
|
|
} else {
|
|
$field_value = $subscription->get_meta( '_shipping_' . $key );
|
|
}
|
|
|
|
echo '<p><strong>' . esc_html( $field['label'] ) . ':</strong> ' . wp_kses_post( make_clickable( esc_html( $field_value ) ) ) . '</p>';
|
|
}
|
|
}
|
|
|
|
if ( apply_filters( 'woocommerce_enable_order_notes_field', 'yes' == get_option( 'woocommerce_enable_order_comments', 'yes' ) ) && $post->post_excerpt ) {
|
|
echo '<p><strong>' . esc_html__( 'Customer Provided Note', 'woocommerce-subscriptions' ) . ':</strong> ' . wp_kses_post( nl2br( $post->post_excerpt ) ) . '</p>';
|
|
}
|
|
|
|
echo '</div>';
|
|
|
|
// Display form
|
|
echo '<div class="edit_address">';
|
|
|
|
if ( ! empty( self::$shipping_fields ) ) {
|
|
foreach ( self::$shipping_fields as $key => $field ) {
|
|
if ( ! isset( $field['type'] ) ) {
|
|
$field['type'] = 'text';
|
|
}
|
|
if ( ! isset( $field['id'] ) ) {
|
|
$field['id'] = '_shipping_' . $key;
|
|
}
|
|
|
|
switch ( $field['type'] ) {
|
|
case 'select' :
|
|
woocommerce_wp_select( $field );
|
|
break;
|
|
default :
|
|
woocommerce_wp_text_input( $field );
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if ( apply_filters( 'woocommerce_enable_order_notes_field', 'yes' == get_option( 'woocommerce_enable_order_comments', 'yes' ) ) ) {
|
|
?>
|
|
<p class="form-field form-field-wide"><label for="excerpt"><?php esc_html_e( 'Customer Provided Note', 'woocommerce-subscriptions' ) ?>:</label>
|
|
<textarea rows="1" cols="40" name="excerpt" tabindex="6" id="excerpt" placeholder="<?php esc_attr_e( 'Customer\'s notes about the order', 'woocommerce-subscriptions' ); ?>"><?php echo wp_kses_post( $post->post_excerpt ); ?></textarea>
|
|
</p>
|
|
<?php
|
|
}
|
|
|
|
echo '</div>';
|
|
|
|
do_action( 'woocommerce_admin_order_data_after_shipping_address', $subscription );
|
|
?>
|
|
</div>
|
|
</div>
|
|
<div class="clear"></div>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
}
|
|
|
|
/**
|
|
* Save meta box data
|
|
*
|
|
* @param int $post_id
|
|
* @param WP_Post $post
|
|
*/
|
|
public static function save( $post_id, $post = null ) {
|
|
if ( 'shop_subscription' != $post->post_type || empty( $_POST['woocommerce_meta_nonce'] ) || ! wp_verify_nonce( $_POST['woocommerce_meta_nonce'], 'woocommerce_save_data' ) ) {
|
|
return;
|
|
}
|
|
|
|
self::init_address_fields();
|
|
|
|
// Get subscription object.
|
|
$subscription = wcs_get_subscription( $post_id );
|
|
|
|
// Ensure there is an order key.
|
|
if ( ! $subscription->get_order_key() ) {
|
|
$key = 'wc_' . apply_filters( 'woocommerce_generate_order_key', uniqid( 'order_' ) );
|
|
wcs_set_objects_property( $subscription, 'order_key', $key );
|
|
}
|
|
|
|
// Update meta
|
|
$customer_id = isset( $_POST['customer_user'] ) ? absint( $_POST['customer_user'] ) : 0;
|
|
if ( $customer_id !== $subscription->get_customer_id() ) {
|
|
wcs_set_objects_property( $subscription, '_customer_user', $customer_id );
|
|
}
|
|
|
|
// Handle the billing fields.
|
|
foreach ( self::$billing_fields as $key => $field ) {
|
|
$field['id'] = isset( $field['id'] ) ? $field['id'] : "_billing_{$key}";
|
|
if ( ! isset( $_POST[ $field['id'] ] ) ) {
|
|
continue;
|
|
}
|
|
|
|
wcs_set_objects_property( $subscription, $field['id'], wc_clean( $_POST[ $field['id'] ] ) );
|
|
}
|
|
|
|
// Handle the shipping fields.
|
|
foreach ( self::$shipping_fields as $key => $field ) {
|
|
$field['id'] = isset( $field['id'] ) ? $field['id'] : "_shipping_{$key}";
|
|
if ( ! isset( $_POST[ $field['id'] ] ) ) {
|
|
continue;
|
|
}
|
|
|
|
wcs_set_objects_property( $subscription, $field['id'], wc_clean( $_POST[ $field['id'] ] ) );
|
|
}
|
|
|
|
// Save the linked parent order id
|
|
if ( ! empty( $_POST['parent-order-id'] ) ) {
|
|
// if the parent order to be set is a renewal order
|
|
if ( wcs_order_contains_renewal( $_POST['parent-order-id'] ) ) {
|
|
// remove renewal meta
|
|
$parent = wc_get_order( $_POST['parent-order-id'] );
|
|
wcs_delete_objects_property( $parent, 'subscription_renewal' );
|
|
}
|
|
$subscription->set_parent_id( wc_clean( $_POST['parent-order-id'] ) );
|
|
$subscription->add_order_note( sprintf( _x( 'Subscription linked to parent order %s via admin.', 'subscription note after linking to a parent order', 'woocommerce-subscriptions' ), sprintf( '<a href="%1$s">#%2$s</a> ', esc_url( wcs_get_edit_post_link( $subscription->get_parent_id() ) ), $subscription->get_parent()->get_order_number() ) ), false, true );
|
|
$subscription->save();
|
|
}
|
|
|
|
try {
|
|
WCS_Change_Payment_Method_Admin::save_meta( $subscription );
|
|
|
|
if ( 'cancelled' == $_POST['order_status'] ) {
|
|
$subscription->cancel_order();
|
|
} else {
|
|
$subscription->update_status( $_POST['order_status'], '', true );
|
|
}
|
|
} catch ( Exception $e ) {
|
|
// translators: placeholder is error message from the payment gateway or subscriptions when updating the status
|
|
wcs_add_admin_notice( sprintf( __( 'Error updating some information: %s', 'woocommerce-subscriptions' ), $e->getMessage() ), 'error' );
|
|
}
|
|
|
|
// Grant download permissions on initial save.
|
|
if ( isset( $_POST['original_post_status'] ) && 'auto-draft' === $_POST['original_post_status'] ) {
|
|
wc_downloadable_product_permissions( $post_id );
|
|
}
|
|
|
|
do_action( 'woocommerce_process_shop_subscription_meta', $post_id, $post );
|
|
}
|
|
}
|