5
Como verificar se o endereço de cobrança e entrega é igual?
Estou tentando verificar se o endereço de cobrança e entrega é igual ao criar PDFs de fatura. O que eu tentei até agora foi: $order = $invoice->getOrder(); if( $order->getBillingAddress()->getData() != $order->getShippingAddress()->getData() ) ou $order = $invoice->getOrder(); if( $order->getShippingAddress()->getData('same_as_billing')!='1' ) mas nem funciona. Eu também estava tentando obter a cotação usando$order->getQuote() …