Module: InvoicePrinter
- Defined in:
- lib/invoice_printer.rb,
lib/invoice_printer/version.rb,
lib/invoice_printer/document.rb,
lib/invoice_printer/pdf_document.rb,
lib/invoice_printer/document/item.rb
Overview
Create PDF versions of invoices or receipts using Prawn
Example:
invoice = InvoicePrinter::Document.new(...)
InvoicePrinter.print(
document: invoice,
font: 'path-to-font-file.ttf',
stamp: 'stamp.jpg',
logo: 'logo.jpg',
file_name: 'invoice.pdf'
)
Defined Under Namespace
Classes: Document, PDFDocument
Constant Summary collapse
- VERSION =
'0.0.6'
Class Method Summary collapse
- .labels ⇒ Object
-
.labels=(labels) ⇒ Object
Override default English labels with a given hash.
-
.print(document:, file_name:, labels: {}, font: nil, stamp: nil, logo: nil) ⇒ Object
Print the given InvoicePrinter::Document to PDF file named
file_name. -
.render(document:, labels: {}, font: nil, stamp: nil, logo: nil) ⇒ Object
Render the PDF document InvoicePrinter::Document to PDF directly.
Class Method Details
.labels ⇒ Object
45 46 47 |
# File 'lib/invoice_printer.rb', line 45 def self.labels PDFDocument.labels end |
.labels=(labels) ⇒ Object
Override default English labels with a given hash
Example:
InvoicePrinter.labels = {
name: 'Invoice',
number: '201604030001'
provider: 'Provider',
purchaser: 'Purchaser',
payment: 'Payment',
payment_by_transfer: 'Payment by bank transfer on the account below:',
payment_in_cash: 'Payment in cash',
account_number: 'Account NO:',
swift: 'SWIFT:',
iban: 'IBAN:',
issue_date: 'Issue date:',
due_date: 'Due date:',
item: 'Item',
quantity: 'Quantity',
unit: 'Unit',
price_per_item: 'Price per item',
amount: 'Amount'
}
41 42 43 |
# File 'lib/invoice_printer.rb', line 41 def self.labels=(labels) PDFDocument.labels = labels end |
.print(document:, file_name:, labels: {}, font: nil, stamp: nil, logo: nil) ⇒ Object
Print the given InvoicePrinter::Document to PDF file named file_name
document - InvoicePrinter::Document object file_name - output file labels - labels to override font - font file to use stamp - stamp & signature (image) logo - logotype (image)
57 58 59 60 61 62 63 64 65 |
# File 'lib/invoice_printer.rb', line 57 def self.print(document:, file_name:, labels: {}, font: nil, stamp: nil, logo: nil) PDFDocument.new( document: document, labels: labels, font: font, stamp: stamp, logo: logo, ).print(file_name) end |
.render(document:, labels: {}, font: nil, stamp: nil, logo: nil) ⇒ Object
Render the PDF document InvoicePrinter::Document to PDF directly
document - InvoicePrinter::Document object labels - labels to override font - font file to use stamp - stamp & signature (image) logo - logotype (image)
74 75 76 77 78 79 80 81 82 |
# File 'lib/invoice_printer.rb', line 74 def self.render(document:, labels: {}, font: nil, stamp: nil, logo: nil) PDFDocument.new( document: document, labels: labels, font: font, stamp: stamp, logo: logo ).render end |