You are here

function invoice_view_print in Invoice 7

Same name and namespace in other branches
  1. 6 invoice.module \invoice_view_print()

Display the invoice in HTML print format

1 call to invoice_view_print()
_invoice_api_invoice_get in ./invoice_api.inc
Handles GET request for the specified invoice ID
1 string reference to 'invoice_view_print'
invoice_menu in ./invoice.module
Implements hook_menu()

File

./invoice.module, line 1084
Invoice module

Code

function invoice_view_print($invoice_number) {
  echo _invoice_get_html($invoice_number);
}