Skip to content

Commit 97456e7

Browse files
committedJan 20, 2020
Add order meta is_vat_exempt with unique meta key.
1 parent 1ca791f commit 97456e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎includes/class-wc-checkout.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ public function create_order( $data ) {
371371
$order->set_cart_hash( $cart_hash );
372372
$order->set_customer_id( apply_filters( 'woocommerce_checkout_customer_id', get_current_user_id() ) );
373373
$order_vat_exempt = WC()->cart->get_customer()->get_is_vat_exempt() ? 'yes' : 'no';
374-
$order->add_meta_data( 'is_vat_exempt', $order_vat_exempt );
374+
$order->add_meta_data( 'is_vat_exempt', $order_vat_exempt, true );
375375
$order->set_currency( get_woocommerce_currency() );
376376
$order->set_prices_include_tax( 'yes' === get_option( 'woocommerce_prices_include_tax' ) );
377377
$order->set_customer_ip_address( WC_Geolocation::get_ip_address() );

0 commit comments

Comments
 (0)
Please sign in to comment.