Employer form mostly working with persist to db

This commit is contained in:
Jason Jordan
2025-12-10 13:22:33 -05:00
parent 78ce415b94
commit 0464ba8929
68 changed files with 3071 additions and 365 deletions
@@ -0,0 +1,21 @@
module SampleCard
class JasperPdfGenerator
def initialize(jasper_url)
@jasper_url = jasper_url
end
def call
response = HTTParty.get(@jasper_url)
card_pdf = CombinePDF.parse(response.body)
# todays_date = Date.today.strftime("%m-%d-%Y")
# card_pdf.save("tmp/service_test_member_id_card_#{todays_date}.pdf")
card_pdf
end
end
end