2017-08-25 15:15:32 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Order coupon tests.
|
2019-07-19 13:19:23 +00:00
|
|
|
*
|
2017-08-25 15:15:32 +00:00
|
|
|
* @package WooCommerce\Tests\Orders
|
|
|
|
*/
|
2019-07-19 13:19:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Order coupon tests.
|
|
|
|
*/
|
2017-08-25 15:15:32 +00:00
|
|
|
class WC_Tests_Order_Coupons extends WC_Unit_Test_Case {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Track ids.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $objects = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Setup an order.
|
|
|
|
*/
|
2018-08-23 14:50:04 +00:00
|
|
|
protected function init_test() {
|
|
|
|
$_SERVER['REMOTE_ADDR'] = '127.0.0.1';
|
2017-08-25 15:15:32 +00:00
|
|
|
|
|
|
|
update_option( 'woocommerce_default_customer_address', 'base' );
|
|
|
|
update_option( 'woocommerce_tax_based_on', 'base' );
|
|
|
|
|
|
|
|
$product = WC_Helper_Product::create_simple_product();
|
2018-06-13 15:30:42 +00:00
|
|
|
$product->set_regular_price( 1000 );
|
|
|
|
$product->save();
|
2017-08-25 15:15:32 +00:00
|
|
|
$product = wc_get_product( $product->get_id() );
|
|
|
|
|
2018-02-27 18:57:28 +00:00
|
|
|
$coupon = new WC_Coupon();
|
2017-08-25 15:15:32 +00:00
|
|
|
$coupon->set_code( 'test-coupon-1' );
|
2017-08-25 17:21:29 +00:00
|
|
|
$coupon->set_amount( 1.00 );
|
2017-08-25 15:15:32 +00:00
|
|
|
$coupon->set_discount_type( 'fixed_cart' );
|
|
|
|
$coupon->save();
|
|
|
|
|
2018-02-27 18:57:28 +00:00
|
|
|
$coupon2 = new WC_Coupon();
|
2017-08-25 15:15:32 +00:00
|
|
|
$coupon2->set_code( 'test-coupon-2' );
|
|
|
|
$coupon2->set_amount( 20 );
|
|
|
|
$coupon2->set_discount_type( 'percent' );
|
|
|
|
$coupon2->save();
|
|
|
|
|
2019-05-01 22:05:00 +00:00
|
|
|
$order = wc_create_order(
|
|
|
|
array(
|
|
|
|
'status' => 'pending',
|
|
|
|
'customer_id' => 1,
|
|
|
|
'customer_note' => '',
|
|
|
|
'total' => '',
|
|
|
|
)
|
|
|
|
);
|
2017-08-25 15:15:32 +00:00
|
|
|
|
2019-07-19 13:19:23 +00:00
|
|
|
// Add order products.
|
2017-08-29 11:17:18 +00:00
|
|
|
$product_item = new WC_Order_Item_Product();
|
|
|
|
$coupon_item_1 = new WC_Order_Item_Coupon();
|
|
|
|
$coupon_item_2 = new WC_Order_Item_Coupon();
|
|
|
|
|
2017-08-29 11:32:02 +00:00
|
|
|
if ( get_option( 'woocommerce_prices_include_tax', 'no' ) === 'yes' && get_option( 'woocommerce_calc_taxes', 'no' ) === 'yes' ) {
|
2019-05-01 22:05:00 +00:00
|
|
|
$product_item->set_props(
|
|
|
|
array(
|
|
|
|
'product' => $product,
|
|
|
|
'quantity' => 1,
|
2019-10-14 18:53:16 +00:00
|
|
|
'subtotal' => 909.09, // Ex tax 10%.
|
2019-05-01 22:05:00 +00:00
|
|
|
'total' => 726.36,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$coupon_item_1->set_props(
|
|
|
|
array(
|
|
|
|
'code' => 'test-coupon-1',
|
|
|
|
'discount' => 0.91,
|
|
|
|
'discount_tax' => 0.09,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$coupon_item_2->set_props(
|
|
|
|
array(
|
|
|
|
'code' => 'this-is-a-virtal-coupon',
|
|
|
|
'discount' => 181.82,
|
|
|
|
'discount_tax' => 18.18,
|
|
|
|
)
|
|
|
|
);
|
2017-08-29 11:17:18 +00:00
|
|
|
} else {
|
2019-05-01 22:05:00 +00:00
|
|
|
$product_item->set_props(
|
|
|
|
array(
|
|
|
|
'product' => $product,
|
|
|
|
'quantity' => 1,
|
|
|
|
'subtotal' => 1000, // Ex tax.
|
|
|
|
'total' => 799,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$coupon_item_1->set_props(
|
|
|
|
array(
|
|
|
|
'code' => 'test-coupon-1',
|
|
|
|
'discount' => 1,
|
|
|
|
'discount_tax' => get_option( 'woocommerce_calc_taxes', 'no' ) === 'yes' ? 0.1 : 0,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$coupon_item_2->set_props(
|
|
|
|
array(
|
|
|
|
'code' => 'this-is-a-virtal-coupon',
|
|
|
|
'discount' => 200,
|
|
|
|
'discount_tax' => get_option( 'woocommerce_calc_taxes', 'no' ) === 'yes' ? 20 : 0,
|
|
|
|
)
|
|
|
|
);
|
2017-08-29 11:17:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$product_item->save();
|
|
|
|
$coupon_item_1->save();
|
|
|
|
$coupon_item_2->save();
|
|
|
|
|
|
|
|
$order->add_item( $product_item );
|
|
|
|
$order->add_item( $coupon_item_1 );
|
|
|
|
$order->add_item( $coupon_item_2 );
|
2017-08-25 15:15:32 +00:00
|
|
|
|
|
|
|
$this->objects['coupons'][] = $coupon;
|
|
|
|
$this->objects['coupons'][] = $coupon2;
|
|
|
|
$this->objects['products'][] = $product;
|
|
|
|
$this->objects['order'] = $order;
|
2019-05-01 22:05:00 +00:00
|
|
|
$this->objects['tax_rate_ids'][] = WC_Tax::_insert_tax_rate(
|
|
|
|
array(
|
|
|
|
'tax_rate_country' => '',
|
|
|
|
'tax_rate_state' => '',
|
|
|
|
'tax_rate' => '10.0000',
|
|
|
|
'tax_rate_name' => 'VAT',
|
|
|
|
'tax_rate_priority' => '1',
|
|
|
|
'tax_rate_compound' => '0',
|
|
|
|
'tax_rate_shipping' => '1',
|
|
|
|
'tax_rate_order' => '1',
|
|
|
|
'tax_rate_class' => '',
|
|
|
|
)
|
|
|
|
);
|
2017-08-25 15:15:32 +00:00
|
|
|
|
|
|
|
$order->calculate_totals( true );
|
|
|
|
$order->save();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-08-29 11:17:18 +00:00
|
|
|
* Test: test_remove_coupon_from_order
|
2017-08-25 15:15:32 +00:00
|
|
|
*/
|
2018-02-27 18:57:28 +00:00
|
|
|
public function test_remove_coupon_from_order() {
|
2017-08-29 11:17:18 +00:00
|
|
|
update_option( 'woocommerce_prices_include_tax', 'yes' );
|
2017-08-29 11:32:02 +00:00
|
|
|
update_option( 'woocommerce_calc_taxes', 'yes' );
|
2018-08-23 14:50:04 +00:00
|
|
|
$this->init_test();
|
2017-08-29 11:17:18 +00:00
|
|
|
|
2017-08-25 15:15:32 +00:00
|
|
|
$order_id = $this->objects['order']->get_id();
|
|
|
|
$order = wc_get_order( $order_id );
|
|
|
|
|
|
|
|
// Check it's expected.
|
|
|
|
$this->assertEquals( 'shop_order', $order->get_type() );
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '799.00', $order->get_total(), $order->get_total() );
|
2017-08-25 15:15:32 +00:00
|
|
|
|
|
|
|
// Remove the virtual coupon. Total should be 999.
|
|
|
|
$order->remove_coupon( 'this-is-a-virtal-coupon' );
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '999.00', $order->get_total(), $order->get_total() );
|
2017-08-25 15:15:32 +00:00
|
|
|
|
|
|
|
// Remove the other coupon. Total should be 1000.
|
|
|
|
$order->remove_coupon( 'test-coupon-1' );
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '1000.00', $order->get_total(), $order->get_total() );
|
2017-08-25 15:15:32 +00:00
|
|
|
|
|
|
|
// Reset.
|
2018-08-23 14:50:04 +00:00
|
|
|
$this->init_test();
|
2017-08-25 15:15:32 +00:00
|
|
|
|
2017-08-25 17:21:29 +00:00
|
|
|
$order_id = $this->objects['order']->get_id();
|
|
|
|
$order = wc_get_order( $order_id );
|
|
|
|
|
|
|
|
// Check it's expected.
|
|
|
|
$this->assertEquals( 'shop_order', $order->get_type() );
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '799.00', $order->get_total(), $order->get_total() );
|
2017-08-25 17:21:29 +00:00
|
|
|
|
2017-08-25 15:15:32 +00:00
|
|
|
// Do the above tests in reverse.
|
|
|
|
$order->remove_coupon( 'test-coupon-1' );
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '800.00', $order->get_total(), $order->get_total() );
|
2017-08-25 15:15:32 +00:00
|
|
|
$order->remove_coupon( 'this-is-a-virtal-coupon' );
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '1000.00', $order->get_total(), $order->get_total() );
|
2017-08-25 15:15:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-08-29 11:17:18 +00:00
|
|
|
* Test: test_add_coupon_to_order
|
2017-08-25 15:15:32 +00:00
|
|
|
*/
|
2018-02-27 18:57:28 +00:00
|
|
|
public function test_add_coupon_to_order() {
|
2017-08-29 11:17:18 +00:00
|
|
|
update_option( 'woocommerce_prices_include_tax', 'yes' );
|
2017-08-29 11:32:02 +00:00
|
|
|
update_option( 'woocommerce_calc_taxes', 'yes' );
|
2018-08-23 14:50:04 +00:00
|
|
|
$this->init_test();
|
2017-08-29 11:17:18 +00:00
|
|
|
|
2017-08-25 15:15:32 +00:00
|
|
|
$order_id = $this->objects['order']->get_id();
|
|
|
|
$order = wc_get_order( $order_id );
|
|
|
|
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '799.00', $order->get_total(), $order->get_total() );
|
2018-02-27 18:57:28 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Discount should be based on subtotal unless coupons apply sequencially.
|
|
|
|
*
|
|
|
|
* Coupon will therefore discount 200. Compare the total without tax so we can compare the ex tax price and avoid rounding mishaps.
|
|
|
|
*/
|
2017-08-25 15:15:32 +00:00
|
|
|
$order->apply_coupon( 'test-coupon-2' );
|
2018-02-27 18:57:28 +00:00
|
|
|
$this->assertEquals( 401, round( $order->get_total_discount( false ), 2 ), $order->get_total_discount( false ) );
|
|
|
|
$this->assertEquals( 598.99, $order->get_total(), $order->get_total() );
|
2017-08-29 11:17:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test: test_remove_coupon_from_order_ex_tax
|
|
|
|
*/
|
2018-02-27 18:57:28 +00:00
|
|
|
public function test_remove_coupon_from_order_ex_tax() {
|
2017-08-29 11:17:18 +00:00
|
|
|
update_option( 'woocommerce_prices_include_tax', 'no' );
|
2017-08-29 11:32:02 +00:00
|
|
|
update_option( 'woocommerce_calc_taxes', 'yes' );
|
2018-08-23 14:50:04 +00:00
|
|
|
$this->init_test();
|
2017-08-29 11:17:18 +00:00
|
|
|
|
|
|
|
$order_id = $this->objects['order']->get_id();
|
|
|
|
$order = wc_get_order( $order_id );
|
|
|
|
|
|
|
|
// Check it's expected.
|
|
|
|
$this->assertEquals( 'shop_order', $order->get_type() );
|
|
|
|
$this->assertEquals( '878.90', $order->get_total(), $order->get_total() );
|
|
|
|
|
|
|
|
// Remove the virtual coupon. Total should be 999.
|
|
|
|
$order->remove_coupon( 'this-is-a-virtal-coupon' );
|
|
|
|
$this->assertEquals( '1098.90', $order->get_total(), $order->get_total() );
|
|
|
|
|
|
|
|
// Remove the other coupon. Total should be 1000.
|
|
|
|
$order->remove_coupon( 'test-coupon-1' );
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '1100.00', $order->get_total(), $order->get_total() );
|
2017-08-25 15:15:32 +00:00
|
|
|
|
|
|
|
// Reset.
|
2018-08-23 14:50:04 +00:00
|
|
|
$this->init_test();
|
2017-08-29 11:17:18 +00:00
|
|
|
|
|
|
|
$order_id = $this->objects['order']->get_id();
|
|
|
|
$order = wc_get_order( $order_id );
|
|
|
|
|
|
|
|
// Check it's expected.
|
|
|
|
$this->assertEquals( 'shop_order', $order->get_type() );
|
|
|
|
$this->assertEquals( '878.90', $order->get_total(), $order->get_total() );
|
|
|
|
|
|
|
|
// Do the above tests in reverse.
|
|
|
|
$order->remove_coupon( 'test-coupon-1' );
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '880.00', $order->get_total(), $order->get_total() );
|
2017-08-29 11:17:18 +00:00
|
|
|
$order->remove_coupon( 'this-is-a-virtal-coupon' );
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '1100.00', $order->get_total(), $order->get_total() );
|
2017-08-29 11:17:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test: test_add_coupon_to_order_ex_tax
|
|
|
|
*/
|
2018-02-27 18:57:28 +00:00
|
|
|
public function test_add_coupon_to_order_ex_tax() {
|
2017-08-29 11:17:18 +00:00
|
|
|
update_option( 'woocommerce_prices_include_tax', 'no' );
|
2017-08-29 11:32:02 +00:00
|
|
|
update_option( 'woocommerce_calc_taxes', 'yes' );
|
2018-08-23 14:50:04 +00:00
|
|
|
$this->init_test();
|
2017-08-29 11:17:18 +00:00
|
|
|
|
|
|
|
$order_id = $this->objects['order']->get_id();
|
|
|
|
$order = wc_get_order( $order_id );
|
|
|
|
|
|
|
|
$order->apply_coupon( 'test-coupon-2' );
|
2018-02-27 18:57:28 +00:00
|
|
|
$this->assertEquals( 401, $order->get_discount_total(), $order->get_discount_total() );
|
|
|
|
$this->assertEquals( ( 1000 - 401 ) * 1.1, $order->get_total(), $order->get_total() );
|
2017-08-25 15:15:32 +00:00
|
|
|
}
|
2017-08-29 11:32:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test: test_remove_coupon_from_order_no_tax
|
|
|
|
*/
|
2018-02-27 18:57:28 +00:00
|
|
|
public function test_remove_coupon_from_order_no_tax() {
|
2017-08-29 11:32:02 +00:00
|
|
|
update_option( 'woocommerce_prices_include_tax', 'no' );
|
|
|
|
update_option( 'woocommerce_calc_taxes', 'no' );
|
2018-08-23 14:50:04 +00:00
|
|
|
$this->init_test();
|
2017-08-29 11:32:02 +00:00
|
|
|
|
|
|
|
$order_id = $this->objects['order']->get_id();
|
|
|
|
$order = wc_get_order( $order_id );
|
|
|
|
|
|
|
|
// Check it's expected.
|
|
|
|
$this->assertEquals( 'shop_order', $order->get_type() );
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '799.00', $order->get_total(), $order->get_total() );
|
2017-08-29 11:32:02 +00:00
|
|
|
|
|
|
|
// Remove the virtual coupon. Total should be 999.
|
|
|
|
$order->remove_coupon( 'this-is-a-virtal-coupon' );
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '999.00', $order->get_total(), $order->get_total() );
|
2017-08-29 11:32:02 +00:00
|
|
|
|
|
|
|
// Remove the other coupon. Total should be 1000.
|
|
|
|
$order->remove_coupon( 'test-coupon-1' );
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '1000.00', $order->get_total(), $order->get_total() );
|
2017-08-29 11:32:02 +00:00
|
|
|
|
|
|
|
// Reset.
|
2018-08-23 14:50:04 +00:00
|
|
|
$this->init_test();
|
2017-08-29 11:32:02 +00:00
|
|
|
|
|
|
|
$order_id = $this->objects['order']->get_id();
|
|
|
|
$order = wc_get_order( $order_id );
|
|
|
|
|
|
|
|
// Check it's expected.
|
|
|
|
$this->assertEquals( 'shop_order', $order->get_type() );
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '799.00', $order->get_total(), $order->get_total() );
|
2017-08-29 11:32:02 +00:00
|
|
|
|
|
|
|
// Do the above tests in reverse.
|
|
|
|
$order->remove_coupon( 'test-coupon-1' );
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '800.00', $order->get_total(), $order->get_total() );
|
2017-08-29 11:32:02 +00:00
|
|
|
$order->remove_coupon( 'this-is-a-virtal-coupon' );
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '1000.00', $order->get_total(), $order->get_total() );
|
2017-08-29 11:32:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test: test_add_coupon_to_order_no_tax
|
|
|
|
*/
|
2018-02-27 18:57:28 +00:00
|
|
|
public function test_add_coupon_to_order_no_tax() {
|
2017-08-29 11:32:02 +00:00
|
|
|
update_option( 'woocommerce_prices_include_tax', 'no' );
|
|
|
|
update_option( 'woocommerce_calc_taxes', 'no' );
|
2018-08-23 14:50:04 +00:00
|
|
|
$this->init_test();
|
2017-08-29 11:32:02 +00:00
|
|
|
|
|
|
|
$order_id = $this->objects['order']->get_id();
|
|
|
|
$order = wc_get_order( $order_id );
|
|
|
|
|
|
|
|
$order->apply_coupon( 'test-coupon-2' );
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '599.00', $order->get_total(), $order->get_total() );
|
2017-08-29 11:32:02 +00:00
|
|
|
}
|
2017-08-29 11:38:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test: test_remove_coupon_from_order_no_tax
|
|
|
|
*/
|
2018-02-27 18:57:28 +00:00
|
|
|
public function test_remove_coupon_from_order_no_tax_inc_prices_on() {
|
2017-08-29 11:38:35 +00:00
|
|
|
update_option( 'woocommerce_prices_include_tax', 'yes' );
|
|
|
|
update_option( 'woocommerce_calc_taxes', 'no' );
|
2018-08-23 14:50:04 +00:00
|
|
|
$this->init_test();
|
2017-08-29 11:38:35 +00:00
|
|
|
|
|
|
|
$order_id = $this->objects['order']->get_id();
|
|
|
|
$order = wc_get_order( $order_id );
|
|
|
|
|
|
|
|
// Check it's expected.
|
|
|
|
$this->assertEquals( 'shop_order', $order->get_type() );
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '799.00', $order->get_total(), $order->get_total() );
|
2017-08-29 11:38:35 +00:00
|
|
|
|
|
|
|
// Remove the virtual coupon. Total should be 999.
|
|
|
|
$order->remove_coupon( 'this-is-a-virtal-coupon' );
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '999.00', $order->get_total(), $order->get_total() );
|
2017-08-29 11:38:35 +00:00
|
|
|
|
|
|
|
// Remove the other coupon. Total should be 1000.
|
|
|
|
$order->remove_coupon( 'test-coupon-1' );
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '1000.00', $order->get_total(), $order->get_total() );
|
2017-08-29 11:38:35 +00:00
|
|
|
|
|
|
|
// Reset.
|
2018-08-23 14:50:04 +00:00
|
|
|
$this->init_test();
|
2017-08-29 11:38:35 +00:00
|
|
|
|
|
|
|
$order_id = $this->objects['order']->get_id();
|
|
|
|
$order = wc_get_order( $order_id );
|
|
|
|
|
|
|
|
// Check it's expected.
|
|
|
|
$this->assertEquals( 'shop_order', $order->get_type() );
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '799.00', $order->get_total(), $order->get_total() );
|
2017-08-29 11:38:35 +00:00
|
|
|
|
|
|
|
// Do the above tests in reverse.
|
|
|
|
$order->remove_coupon( 'test-coupon-1' );
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '800.00', $order->get_total(), $order->get_total() );
|
2017-08-29 11:38:35 +00:00
|
|
|
$order->remove_coupon( 'this-is-a-virtal-coupon' );
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '1000.00', $order->get_total(), $order->get_total() );
|
2017-08-29 11:38:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test: test_add_coupon_to_order_no_tax
|
|
|
|
*/
|
2018-02-27 18:57:28 +00:00
|
|
|
public function test_add_coupon_to_order_no_tax_inc_prices_on() {
|
2017-08-29 11:38:35 +00:00
|
|
|
update_option( 'woocommerce_prices_include_tax', 'yes' );
|
|
|
|
update_option( 'woocommerce_calc_taxes', 'no' );
|
2018-08-23 14:50:04 +00:00
|
|
|
$this->init_test();
|
2017-08-29 11:38:35 +00:00
|
|
|
|
|
|
|
$order_id = $this->objects['order']->get_id();
|
|
|
|
$order = wc_get_order( $order_id );
|
|
|
|
|
|
|
|
$order->apply_coupon( 'test-coupon-2' );
|
2019-07-19 01:42:31 +00:00
|
|
|
$this->assertEquals( '599.00', $order->get_total(), $order->get_total() );
|
2017-08-29 11:38:35 +00:00
|
|
|
}
|
2019-11-21 10:28:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test a rounding issue on order totals when the order includes a percentage coupon and taxable and non-taxable items
|
|
|
|
* See: #25091.
|
|
|
|
*/
|
|
|
|
public function test_inclusive_tax_rounding_on_totals() {
|
|
|
|
update_option( 'woocommerce_prices_include_tax', 'yes' );
|
|
|
|
update_option( 'woocommerce_calc_taxes', 'yes' );
|
2020-05-22 16:38:42 +00:00
|
|
|
update_option( 'woocommerce_tax_round_at_subtotal', 'yes' );
|
2019-11-21 10:28:22 +00:00
|
|
|
|
|
|
|
WC_Tax::_insert_tax_rate(
|
|
|
|
array(
|
|
|
|
'tax_rate_country' => '',
|
|
|
|
'tax_rate_state' => '',
|
|
|
|
'tax_rate' => '20.0000',
|
|
|
|
'tax_rate_name' => 'VAT',
|
|
|
|
'tax_rate_priority' => '1',
|
|
|
|
'tax_rate_compound' => '0',
|
|
|
|
'tax_rate_shipping' => '1',
|
|
|
|
'tax_rate_order' => '1',
|
|
|
|
'tax_rate_class' => '',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
WC_Tax::_insert_tax_rate(
|
|
|
|
array(
|
|
|
|
'tax_rate_country' => '',
|
|
|
|
'tax_rate_state' => '',
|
|
|
|
'tax_rate' => '5.0000',
|
|
|
|
'tax_rate_name' => 'VAT',
|
|
|
|
'tax_rate_priority' => '2',
|
|
|
|
'tax_rate_compound' => '1',
|
|
|
|
'tax_rate_shipping' => '1',
|
|
|
|
'tax_rate_order' => '1',
|
|
|
|
'tax_rate_class' => '',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$product_1 = WC_Helper_Product::create_simple_product();
|
|
|
|
$product_1->set_regular_price( 3.17 );
|
|
|
|
$product_1->save();
|
|
|
|
$product_1 = wc_get_product( $product_1->get_id() );
|
|
|
|
|
|
|
|
$product_2 = WC_Helper_Product::create_simple_product();
|
|
|
|
$product_2->set_regular_price( 6.13 );
|
|
|
|
$product_2->save();
|
|
|
|
$product_2 = wc_get_product( $product_2->get_id() );
|
|
|
|
|
|
|
|
$product_3 = WC_Helper_Product::create_simple_product();
|
|
|
|
$product_3->set_regular_price( 9.53 );
|
|
|
|
$product_3->set_tax_status( 'none' );
|
|
|
|
$product_3->save();
|
|
|
|
$product_3 = wc_get_product( $product_3->get_id() );
|
|
|
|
|
|
|
|
$coupon = new WC_Coupon();
|
|
|
|
$coupon->set_code( 'test-coupon-1' );
|
|
|
|
$coupon->set_amount( 10 );
|
|
|
|
$coupon->set_discount_type( 'percent' );
|
|
|
|
$coupon->save();
|
|
|
|
|
|
|
|
$order = wc_create_order(
|
|
|
|
array(
|
|
|
|
'status' => 'pending',
|
|
|
|
'customer_id' => 1,
|
|
|
|
'customer_note' => '',
|
|
|
|
'total' => '',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$order->add_product( $product_1 );
|
|
|
|
$order->add_product( $product_2 );
|
|
|
|
$order->add_product( $product_3 );
|
|
|
|
|
|
|
|
$order->calculate_totals( true );
|
|
|
|
|
|
|
|
$order->apply_coupon( $coupon->get_code() );
|
|
|
|
|
|
|
|
$applied_coupons = $order->get_items( 'coupon' );
|
|
|
|
|
|
|
|
$this->assertEquals( '16.95', $order->get_total() );
|
|
|
|
$this->assertEquals( '1.73', $order->get_total_tax() );
|
|
|
|
$this->assertEquals( '1.69', $order->get_discount_total() );
|
|
|
|
}
|
2017-08-25 15:15:32 +00:00
|
|
|
}
|