mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2025-11-08 17:04:23 -05:00
Update invoice_controller.rb
Added Document Number to filename
This commit is contained in:
@@ -15,7 +15,8 @@ class InvoiceController < ApplicationController
|
|||||||
#
|
#
|
||||||
def show
|
def show
|
||||||
base = QboInvoice.get_base.service
|
base = QboInvoice.get_base.service
|
||||||
@pdf = base.pdf(base.fetch_by_id(params[:id]))
|
invoice = base.fetch_by_id(params[:id])
|
||||||
send_data @pdf, filename: "invoice.pdf", :disposition => 'inline', :type => "application/pdf"
|
@pdf = base.pdf(invoice)
|
||||||
|
send_data @pdf, filename: "invoice #{invoice.doc_number}.pdf", :disposition => 'inline', :type => "application/pdf"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user