Set order vat exempt status to that of customer on checkout.

This commit is contained in:
Gerhard 2019-01-15 13:20:07 +02:00
parent 507f67cb38
commit f11613c5e9
1 changed files with 1 additions and 0 deletions

View File

@ -336,6 +336,7 @@ class WC_Checkout {
$order->set_created_via( 'checkout' );
$order->set_cart_hash( $cart_hash );
$order->set_customer_id( apply_filters( 'woocommerce_checkout_customer_id', get_current_user_id() ) );
$order->set_meta( 'is_vat_exempt', WC()->cart->get_customer()->get_is_vat_exempt() );
$order->set_currency( get_woocommerce_currency() );
$order->set_prices_include_tax( 'yes' === get_option( 'woocommerce_prices_include_tax' ) );
$order->set_customer_ip_address( WC_Geolocation::get_ip_address() );