From 5ac500b28a7f1d86919e8eaefba9687388025053 Mon Sep 17 00:00:00 2001 From: Adam Antonioli Date: Mon, 25 Mar 2024 15:19:21 -0400 Subject: [PATCH] MBMS-61276 change UUID size and position on pre need form 40-10007 pdf --- .../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 26999cb00c3..e704ac4ce5f 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] } ] - multistamp(stamped_template_path, uuid, page_configuration, 7) + multistamp(stamped_template_path, uuid, page_configuration, 9) end def self.multistamp(stamped_template_path, signature_text, page_configuration, font_size = 16)