From 2b7d0e72cd77121e29a97674672826ee489fdcf0 Mon Sep 17 00:00:00 2001 From: Adam Antonioli <132934480+adam-antonioli@users.noreply.github.com> Date: Tue, 26 Mar 2024 15:01:15 -0400 Subject: [PATCH] MBMS-61276 change UUID size and position on pre need form 40-10007 pdf (#16074) --- .../app/services/simple_forms_api/pdf_stamper.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/simple_forms_api/app/services/simple_forms_api/pdf_stamper.rb b/modules/simple_forms_api/app/services/simple_forms_api/pdf_stamper.rb index a0f8d61bcb7..2d4793d0cb2 100644 --- a/modules/simple_forms_api/app/services/simple_forms_api/pdf_stamper.rb +++ b/modules/simple_forms_api/app/services/simple_forms_api/pdf_stamper.rb @@ -168,12 +168,12 @@ def self.stamp2010207(stamped_template_path, form) def self.stamp4010007_uuid(uuid) uuid = "UUID: #{uuid}" stamped_template_path = 'tmp/vba_40_10007-tmp.pdf' - desired_stamps = [[410, 20]] + desired_stamps = [[390, 18]] page_configuration = [ { type: :text, position: desired_stamps[0] } ] - verified_multistamp(stamped_template_path, uuid, page_configuration, 7) + verified_multistamp(stamped_template_path, uuid, page_configuration, 9) end def self.multistamp(stamped_template_path, signature_text, page_configuration, font_size = 16)