After completing the order, the final page displayed all the order info (items, cost, payment method, delivery method, delivery address, etc), and had a "Print This Page" button on the top of the screen.
Normally, out of habit, I always do a <ctrl>-P to print the final order screen whenever I buy something online (In paper we trust
So, I thought ... How can I do this in Phoenix? Let's see ...
Checkout_Process.php displays ALL of the order info, and it would be simple to add a 'Print This Page' button here. But, this is BEFORE the order is finalized. Probably good enough, right?
On the other hand, Checkout_Success.php is AFTER the order is finalized, but nothing is being shown on the screen, and would require having to re-create the entire order info in order to 'print' the page.
Yes, the customer should get an email with the order info, but ... 'belt and suspenders' (or, 'belts and braces' for you Brits
Thoughts?