Merge pull request #11471 from woothemes/fix-free-shipping

Fix free shipping
This commit is contained in:
Claudio Sanches 2016-07-19 09:36:12 -03:00 committed by GitHub
commit 8d5f0d5c11
1 changed files with 103 additions and 53 deletions

View File

@ -15,84 +15,131 @@ if ( ! defined( 'ABSPATH' ) ) {
*/ */
class WC_Shipping_Free_Shipping extends WC_Shipping_Method { class WC_Shipping_Free_Shipping extends WC_Shipping_Method {
/** @var float Min amount to be valid */ /**
* Min amount to be valid.
*
* @var integer
*/
public $min_amount = 0; public $min_amount = 0;
/** @var string Requires option */ /**
public $requires = ''; * Requires option.
*
* @var string
*/
public $requires = '';
/** /**
* Constructor. * Constructor.
*
* @param int $instance_id Shipping method instance.
*/ */
public function __construct( $instance_id = 0 ) { public function __construct( $instance_id = 0 ) {
$this->id = 'free_shipping'; $this->id = 'free_shipping';
$this->instance_id = absint( $instance_id ); $this->instance_id = absint( $instance_id );
$this->method_title = __( 'Free Shipping', 'woocommerce' ); $this->method_title = __( 'Free Shipping', 'woocommerce' );
$this->method_description = __( 'Free Shipping is a special method which can be triggered with coupons and minimum spends.', 'woocommerce' ); $this->method_description = __( 'Free Shipping is a special method which can be triggered with coupons and minimum spends.', 'woocommerce' );
$this->supports = array( $this->supports = array(
'shipping-zones', 'shipping-zones',
'instance-settings', 'instance-settings',
'instance-settings-modal', 'instance-settings-modal',
); );
$this->title = $this->get_option( 'title' );
$this->min_amount = $this->get_option( 'min_amount', 0 );
$this->requires = $this->get_option( 'requires' );
$this->init();
}
/**
* Initialize free shipping.
*/
public function init() {
// Load the settings.
$this->init_form_fields();
$this->init_settings();
// Define user set variables.
$this->title = $this->get_option( 'title' );
$this->min_amount = $this->get_option( 'min_amount', 0 );
$this->requires = $this->get_option( 'requires' );
// Actions.
add_action( 'woocommerce_update_options_shipping_' . $this->id, array( $this, 'process_admin_options' ) ); add_action( 'woocommerce_update_options_shipping_' . $this->id, array( $this, 'process_admin_options' ) );
} }
/**
* Init form fields.
*/
public function init_form_fields() {
$this->instance_form_fields = array(
'title' => array(
'title' => __( 'Title', 'woocommerce' ),
'type' => 'text',
'description' => __( 'This controls the title which the user sees during checkout.', 'woocommerce' ),
'default' => $this->method_title,
'desc_tip' => true,
),
'requires' => array(
'title' => __( 'Free Shipping Requires...', 'woocommerce' ),
'type' => 'select',
'class' => 'wc-enhanced-select',
'default' => '',
'options' => array(
'' => __( 'N/A', 'woocommerce' ),
'coupon' => __( 'A valid free shipping coupon', 'woocommerce' ),
'min_amount' => __( 'A minimum order amount', 'woocommerce' ),
'either' => __( 'A minimum order amount OR a coupon', 'woocommerce' ),
'both' => __( 'A minimum order amount AND a coupon', 'woocommerce' ),
),
),
'min_amount' => array(
'title' => __( 'Minimum Order Amount', 'woocommerce' ),
'type' => 'price',
'placeholder' => wc_format_localized_price( 0 ),
'description' => __( 'Users will need to spend this amount to get free shipping (if enabled above).', 'woocommerce' ),
'default' => '0',
'desc_tip' => true,
),
);
}
/** /**
* Get setting form fields for instances of this shipping method within zones. * Get setting form fields for instances of this shipping method within zones.
*
* @return array * @return array
*/ */
public function get_instance_form_fields() { public function get_instance_form_fields() {
wc_enqueue_js( " wc_enqueue_js( "
jQuery( function( $ ) { jQuery( function( $ ) {
$('#woocommerce_free_shipping_requires').change(function(){ function wcFreeShippingShowHideminAmountField( el ) {
if ( $(this).val() === 'coupon' || $(this).val() === '' ) { var form = $( el ).closest( 'form' );
$('#woocommerce_free_shipping_min_amount').closest('tr').hide(); var minAmountField = $( '#woocommerce_free_shipping_min_amount', form ).closest( 'tr' );
if ( 'coupon' === $( el ).val() || '' === $( el ).val() ) {
minAmountField.hide();
} else { } else {
$('#woocommerce_free_shipping_min_amount').closest('tr').show(); minAmountField.show();
} }
}).change(); }
$( document.body ).on( 'change', '#woocommerce_free_shipping_requires', function() {
wcFreeShippingShowHideminAmountField( this );
});
// Change while load.
$( '#woocommerce_free_shipping_requires' ).change();
$( document.body ).on( 'wc_backbone_modal_loaded', function( evt, target ) {
if ( 'wc-modal-shipping-method-settings' === target ) {
wcFreeShippingShowHideminAmountField( $( '#wc-backbone-modal-dialog #woocommerce_free_shipping_requires', evt.currentTarget ) );
}
} );
}); });
" ); " );
return array( return parent::get_instance_form_fields();
'title' => array(
'title' => __( 'Title', 'woocommerce' ),
'type' => 'text',
'description' => __( 'This controls the title which the user sees during checkout.', 'woocommerce' ),
'default' => $this->method_title,
'desc_tip' => true,
),
'requires' => array(
'title' => __( 'Free Shipping Requires...', 'woocommerce' ),
'type' => 'select',
'class' => 'wc-enhanced-select',
'default' => '',
'options' => array(
'' => __( 'N/A', 'woocommerce' ),
'coupon' => __( 'A valid free shipping coupon', 'woocommerce' ),
'min_amount' => __( 'A minimum order amount', 'woocommerce' ),
'either' => __( 'A minimum order amount OR a coupon', 'woocommerce' ),
'both' => __( 'A minimum order amount AND a coupon', 'woocommerce' ),
)
),
'min_amount' => array(
'title' => __( 'Minimum Order Amount', 'woocommerce' ),
'type' => 'price',
'placeholder' => wc_format_localized_price( 0 ),
'description' => __( 'Users will need to spend this amount to get free shipping (if enabled above).', 'woocommerce' ),
'default' => '0',
'desc_tip' => true
)
);
} }
/** /**
* See if free shipping is available based on the package and cart. * See if free shipping is available based on the package and cart.
* @param array $package *
* @param array $package Shipping package.
* @return bool * @return bool
*/ */
public function is_available( $package ) { public function is_available( $package ) {
@ -127,19 +174,19 @@ class WC_Shipping_Free_Shipping extends WC_Shipping_Method {
switch ( $this->requires ) { switch ( $this->requires ) {
case 'min_amount' : case 'min_amount' :
$is_available = $has_met_min_amount; $is_available = $has_met_min_amount;
break; break;
case 'coupon' : case 'coupon' :
$is_available = $has_coupon; $is_available = $has_coupon;
break; break;
case 'both' : case 'both' :
$is_available = $has_met_min_amount && $has_coupon; $is_available = $has_met_min_amount && $has_coupon;
break; break;
case 'either' : case 'either' :
$is_available = $has_met_min_amount || $has_coupon; $is_available = $has_met_min_amount || $has_coupon;
break; break;
default : default :
$is_available = true; $is_available = true;
break; break;
} }
return apply_filters( 'woocommerce_shipping_' . $this->id . '_is_available', $is_available, $package ); return apply_filters( 'woocommerce_shipping_' . $this->id . '_is_available', $is_available, $package );
@ -147,12 +194,15 @@ class WC_Shipping_Free_Shipping extends WC_Shipping_Method {
/** /**
* Called to calculate shipping rates for this method. Rates can be added using the add_rate() method. * Called to calculate shipping rates for this method. Rates can be added using the add_rate() method.
*
* @uses WC_Shipping_Method::add_rate() * @uses WC_Shipping_Method::add_rate()
*
* @param array $package Shipping package.
*/ */
public function calculate_shipping( $package = array() ) { public function calculate_shipping( $package = array() ) {
$this->add_rate( array( $this->add_rate( array(
'label' => $this->title, 'label' => $this->title,
'cost' => 0, 'cost' => 0,
'taxes' => false, 'taxes' => false,
'package' => $package, 'package' => $package,
) ); ) );