Question:Which of the following will display a customer's TAX/VAT number?
A $taxvat = $order['customer_taxvat'];
B $order->getData('customer_taxvat');
C $order->getQuote()->getCustomerTaxvat();
D $order->getData()->getCustomerTaxvat();
+ AnswerA B
+ Report