class Reporting::Accounting::TransactionReportJob < Reporting::Job
  def process
    @tmp_file = Pdf::Accounting::TransactionReportService.call(@school, @params)
    @filename = "Accounting_Transaction_Report_#{timestamp}.pdf"
    save_to_user
    send_report
  end
end
