We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
while generating pdf my content is not breaking down for a page. It's getting cropped.
def general_ledger_pdf @categories = Category.journal_categories(params[:accounting_business_id], @daterange) render pdf: "#{file_name('General ledger')}", template: "accounting/general_ledger_pdf.html.erb", orientation: 'Landscape', margin: { bottom: 25, top: 20 }, :footer => { :html => { :template => "accounting/accounting_footer.html.erb"}} end
this is my method who's calling pdf view page
<meta charset="utf-8" />
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue description
while generating pdf my content is not breaking down for a page. It's getting cropped.
def general_ledger_pdf
@categories = Category.journal_categories(params[:accounting_business_id], @daterange)
render pdf: "#{file_name('General ledger')}", template: "accounting/general_ledger_pdf.html.erb", orientation: 'Landscape', margin: { bottom: 25, top: 20 }, :footer => { :html => { :template => "accounting/accounting_footer.html.erb"}}
end
this is my method who's calling pdf view page
<title><%= t('model.transaction.balance_sheet') %></title>The text was updated successfully, but these errors were encountered: