-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy path_fees.govspeak.erb
90 lines (68 loc) · 2.46 KB
/
_fees.govspeak.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<% if %w(thailand turkey vietnam).include?(calculator.ceremony_country) %>
##Fees
Service | Fee
-|-
Affidavit for marriage | £55
<% elsif %w(south-korea).include?(calculator.ceremony_country) %>
##Fees
Service | Fee
-|-
Affidavit for marriage | £55
<% elsif %w(belgium ecuador macao morocco norway).include?(calculator.ceremony_country) %>
<%= render partial: 'fee_table_affirmation_55.govspeak.erb' %>
<% elsif calculator.ceremony_country == 'finland' %>
##Fees
Service | Fee
-|-
Affirmation for marriage | £55
<% elsif %w(philippines united-arab-emirates).include?(calculator.ceremony_country) %>
##Fees
Service | Fee
-|-
Affirmation for freedom to marry in English | £55
Affirmation for freedom to marry in any other language | £70
<% elsif calculator.ceremony_country == 'qatar' %>
<%= render partial: 'fee_table_45_70_55.govspeak.erb' %>
<% elsif calculator.ceremony_country == 'egypt' %>
##Fees
Service | Fee
-|-
Marriage declaration | £55
Making an oath | £55
<% elsif calculator.ceremony_country == 'china' %>
##Fees
Service | Fee
-|-
Affirmation or affidavit for freedom to marry in English & Chinese | £55
<% elsif calculator.ceremony_country == 'peru' %>
##Fees
Service | Fee
-|-
Affirmation or affidavit for freedom to marry | £55
<% else %>
##Fees
Service | Fee
-|-
Affirmation for freedom to marry in English | £55
Affirmation for freedom to marry in any other language | £70
<% end %>
<% unless calculator.country_without_consular_facilities? %>
<% if calculator.ceremony_country == 'vietnam' %>
<%= render partial: 'consular_fees_in_cash_visa_master.govspeak.erb',
locals: { calculator: calculator } -%>
<% else %>
<%= render partial: 'link_to_consular_fees.govspeak.erb',
locals: { calculator: calculator } %>
<% end %>
<% if calculator.ceremony_country == 'finland' %>
<%= render partial: 'pay_in_euros_or_visa_electron.govspeak.erb' %>
<% elsif calculator.ceremony_country == 'philippines' %>
You can pay in cash or by cheque issued by a bank.
<% elsif calculator.ceremony_country == 'norway' %>
<%= render partial: 'pay_by_visas_or_mastercard.govspeak.erb' %>
<% elsif calculator.ceremony_country == 'south-korea' %>
You can pay by cash in the local currency or by credit card, but not by personal cheque.
<% else %>
<%= render partial: 'pay_by_cash_or_credit_card_no_cheque.govspeak.erb' %>
<% end %>
<% end %>