I'd like to get credit card processing AVS and CSC results (pass/no pass, yes/no, etc.) printed on our invoice PDF, but I have no idea if they are available from Magento at all. I don't see it on the backend admin section under the sales orders.
I'm working on this file for the PDF invoice:
/var/www/html/app/code/local/Mage/Sales/Model/Order/Pdf/Abstract.php
Is it along the lines of $order->getPayment()->...
?
* UPDATE: *
Payment gateway: Payflow Pro (by Paypal) - this is different from Paypal Express Checkout, where the buyer goes to paypal.com to make a payment.
Magento Enterprise 1.11.2.0
$order
when I'm printing to a PDF? I supposed I could printarray_keys()
one by one to the PDF and find out which keys have which information, but is there an easier way to do this (like an arbitrary page I could load up with the order number, so I could justprint_r()
to the browser)? – musicliftsme