Skip to content

Commit

Permalink
Fix signature in 20-10207
Browse files Browse the repository at this point in the history
  • Loading branch information
Thrillberg committed Apr 15, 2024
1 parent 9fbe39d commit a856ced
Showing 1 changed file with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,14 +144,12 @@ def self.stamp210966(stamped_template_path, form)
end

def self.stamp2010207(stamped_template_path, form)
desired_stamps = if form.data['preparer_type'] == 'veteran'
[[50, 690]]
desired_stamps = if %w[veteran non-veteran].include? form.data['preparer_type']
[[50, 685]]
elsif form.data['third_party_type'] == 'power-of-attorney'
[[50, 445]]
elsif form.data['preparer_type'] == 'third-party-veteran' ||
form.data['preparer_type'] == 'third-party-non-veteran' ||
form.data['preparer_type'] == 'non-veteran'
[[50, 570]]
[[50, 440]]
elsif %w[third-party-veteran third-party-non-veteran].include? form.data['preparer_type']
[[50, 565]]
end
signature_text = form.data['statement_of_truth_signature']
page_configuration = [
Expand Down

0 comments on commit a856ced

Please sign in to comment.