Skip to content
New issue

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

feat(dunning): Generate PDF files for payment request invoices #2500

Merged
merged 1 commit into from
Aug 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions app/mailers/payment_request_mailer.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# frozen_string_literal: true

class PaymentRequestMailer < ApplicationMailer
before_action :ensure_invoices_pdf

def requested
@payment_request = params[:payment_request]
@organization = @payment_request.organization
Expand All @@ -19,4 +21,12 @@ def requested
)
end
end

private

def ensure_invoices_pdf
params[:payment_request].invoices.each do |invoice|
Invoices::GeneratePdfService.new(invoice:).call
end
end
end