fe 0.0.4 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +16 -36
- data/app/assets/javascripts/fe/admin.js +0 -1
- data/app/assets/javascripts/fe/fe.admin.js +40 -16
- data/app/assets/javascripts/fe/fe.common.js +48 -14
- data/app/assets/javascripts/fe/fe.public.js +1 -414
- data/app/assets/javascripts/fe/fe.public.nojquery.js +450 -0
- data/app/assets/javascripts/fe/jquery.validate.pack.js +3 -15
- data/app/assets/stylesheets/360front.css +0 -0
- data/app/assets/stylesheets/fe/fe.screen.css.scss.erb +69 -10
- data/app/controllers/fe/admin/elements_controller.rb +64 -48
- data/app/controllers/fe/admin/email_templates_controller.rb +2 -2
- data/app/controllers/fe/admin/question_pages_controller.rb +1 -1
- data/app/controllers/fe/admin/question_sheets_controller.rb +2 -103
- data/app/controllers/fe/concerns/admin/question_sheets_controller_concern.rb +112 -0
- data/app/controllers/fe/concerns/answer_pages_controller_concern.rb +2 -1
- data/app/controllers/fe/concerns/answer_sheets_controller_concern.rb +1 -1
- data/app/controllers/fe/concerns/application_controller_concern.rb +13 -0
- data/app/controllers/fe/reference_sheets_controller.rb +2 -0
- data/app/controllers/fe/references_controller.rb +1 -0
- data/app/helpers/fe/application_helper.rb +5 -0
- data/app/mailers/fe/notifier.rb +11 -4
- data/app/models/answer_sheet.rb +2 -0
- data/app/models/fe/application.rb +2 -1
- data/app/models/fe/concerns/answer_pages_presenter_concern.rb +10 -1
- data/app/models/fe/concerns/answer_sheet_concern.rb +38 -8
- data/app/models/fe/concerns/choice_field_concern.rb +17 -10
- data/app/models/fe/date_field.rb +1 -1
- data/app/models/fe/element.rb +105 -31
- data/app/models/fe/page.rb +52 -20
- data/app/models/fe/page_element.rb +6 -1
- data/app/models/fe/page_link.rb +6 -3
- data/app/models/fe/person.rb +11 -8
- data/app/models/fe/question.rb +2 -6
- data/app/models/fe/question_grid.rb +1 -1
- data/app/models/fe/question_grid_with_total.rb +15 -0
- data/app/models/fe/question_set.rb +1 -1
- data/app/models/fe/question_sheet.rb +15 -13
- data/app/models/fe/reference_question.rb +0 -10
- data/app/models/fe/reference_sheet.rb +17 -13
- data/app/models/staff.rb +2 -0
- data/app/validators/email_validator.rb +11 -0
- data/app/views/fe/admin/elements/create.js.erb +1 -0
- data/app/views/fe/admin/elements/drop.js.erb +1 -0
- data/app/views/fe/admin/elements/duplicate.js.erb +1 -0
- data/app/views/fe/admin/panels/_advanced_options.html.erb +9 -3
- data/app/views/fe/admin/panels/_common_fields.html.erb +19 -5
- data/app/views/fe/admin/panels/_page.html.erb +1 -1
- data/app/views/fe/admin/panels/_prop_choice_field.html.erb +20 -11
- data/app/views/fe/admin/panels/_prop_element.html.erb +2 -9
- data/app/views/fe/admin/panels/_prop_page.html.erb +8 -3
- data/app/views/fe/admin/panels/_prop_paragraph.html.erb +38 -24
- data/app/views/fe/admin/panels/_prop_section.html.erb +8 -2
- data/app/views/fe/admin/panels/_prop_sheet.html.erb +4 -1
- data/app/views/fe/admin/question_pages/_element.html.erb +11 -1
- data/app/views/fe/answer_pages/_answer_page.html.erb +9 -8
- data/app/views/fe/answer_pages/_element.html.erb +6 -7
- data/app/views/fe/answer_pages/_page_name.html.erb +1 -0
- data/app/views/fe/answer_pages/update.js.erb +3 -3
- data/app/views/fe/answer_sheets/_answer_sheet.html.erb +3 -3
- data/app/views/fe/answer_sheets/_element.html.erb +52 -34
- data/app/views/fe/answer_sheets/_incomplete.html.erb +1 -1
- data/app/views/fe/answer_sheets/_page_link.html.erb +2 -2
- data/app/views/fe/answer_sheets/_pages_list.html.erb +3 -3
- data/app/views/fe/answer_sheets/_submit_to.html.erb +1 -0
- data/app/views/fe/answer_sheets/edit.html.erb +14 -14
- data/app/views/fe/answer_sheets/incomplete.js.erb +3 -0
- data/app/views/fe/answer_sheets/index.html.erb +3 -3
- data/app/views/fe/answer_sheets/show.html.erb +1 -1
- data/app/views/fe/applications/_logout.html.erb +1 -0
- data/app/views/fe/applications/show.html.erb +1 -0
- data/app/views/fe/questions/fe/_acceptance.html.erb +3 -3
- data/app/views/fe/questions/fe/_attachment_field.html.erb +7 -3
- data/app/views/fe/questions/fe/_checkbox_field.html.erb +26 -24
- data/app/views/fe/questions/fe/_date_field.html.erb +1 -2
- data/app/views/fe/questions/fe/_date_field_mmyy.html.erb +2 -2
- data/app/views/fe/questions/fe/_drop_down_field.html.erb +3 -2
- data/app/views/fe/questions/fe/_paragraph.html.erb +1 -1
- data/app/views/fe/questions/fe/_question_grid.html.erb +14 -9
- data/app/views/fe/questions/fe/_question_grid_with_total.html.erb +21 -14
- data/app/views/fe/questions/fe/_questions.html.erb +2 -2
- data/app/views/fe/questions/fe/_radio_button_field.html.erb +12 -11
- data/app/views/fe/questions/fe/_rating.html.erb +9 -8
- data/app/views/fe/questions/fe/_reference_discipler.html.erb +1 -1
- data/app/views/fe/questions/fe/_reference_friend.html.erb +1 -1
- data/app/views/fe/questions/fe/_reference_parent.html.erb +1 -1
- data/app/views/fe/questions/fe/_reference_peer.html.erb +1 -1
- data/app/views/fe/questions/fe/_reference_question.html.erb +22 -15
- data/app/views/fe/questions/fe/_reference_roommate.html.erb +1 -1
- data/app/views/fe/questions/fe/_reference_spiritual.html.erb +1 -1
- data/app/views/fe/questions/fe/_reference_staff.html.erb +1 -1
- data/app/views/fe/questions/fe/_section.html.erb +1 -1
- data/app/views/fe/questions/fe/_text_area_field.html.erb +10 -3
- data/app/views/fe/questions/fe/_text_field.html.erb +1 -1
- data/app/views/fe/questions/fe/_yes_no_field.erb +3 -3
- data/app/views/fe/reference_pages/_reference.html.erb +11 -11
- data/app/views/fe/reference_pages/edit.html.erb +7 -7
- data/app/views/fe/reference_sheets/done.html.erb +2 -2
- data/app/views/fe/reference_sheets/not_found.html.erb +4 -4
- data/app/views/fe/references/edit.html.erb +6 -6
- data/app/views/fe/references/show.html.erb +7 -7
- data/app/views/fe/references/submit.js.erb +1 -1
- data/app/views/fe/submit_pages/_thankyou.html.erb +1 -1
- data/app/views/fe/submit_pages/edit.html.erb +9 -9
- data/app/views/layouts/fe/_error_messages_for.html.erb +7 -0
- data/app/views/layouts/fe/application.html.erb +1 -1
- data/config/routes.rb +0 -36
- data/db/migrate/20131003044250_create_reference_sheets.rb +1 -0
- data/db/migrate/20140623153424_create_fe_people.rb +1 -1
- data/db/migrate/20140624180246_create_fe_addresses.rb +1 -1
- data/db/migrate/20140624182216_create_fe_phone_numbers.rb +16 -0
- data/db/migrate/20140625160545_create_fe_users.rb +1 -1
- data/db/migrate/20150504221439_add_all_element_ids_to_pages.rb +5 -0
- data/db/migrate/20150713022326_add_locale_columns.rb +9 -0
- data/db/migrate/20150714220730_add_locale_to_answer_sheet.rb +5 -0
- data/db/migrate/20150928085325_change_pages_all_element_ids_to_text.rb +5 -0
- data/db/migrate/20150930191538_add_locale_to_reference_sheets.rb +5 -0
- data/lib/access_key_generator.rb +12 -0
- data/lib/distinct_distinct_patch.rb +20 -0
- data/lib/fe.rb +4 -0
- data/lib/fe/engine.rb +16 -4
- data/lib/fe/version.rb +1 -1
- data/spec/controllers/fe/admin/elements_controller_spec.rb +201 -1
- data/spec/controllers/fe/admin/email_templates_controller_spec.rb +26 -1
- data/spec/controllers/fe/admin/question_pages_controller_spec.rb +8 -1
- data/spec/controllers/fe/admin/question_sheets_controller_spec.rb +48 -1
- data/spec/controllers/fe/answer_pages_controller_spec.rb +73 -1
- data/spec/controllers/fe/answer_sheets_controller_spec.rb +80 -1
- data/spec/controllers/fe/reference_pages_controller.rb +4 -0
- data/spec/controllers/fe/references_controller_spec.rb +4 -0
- data/spec/controllers/fe/submit_pages_controller_spec.rb +4 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/helpers/application_helper.rb +9 -0
- data/spec/dummy/app/models/application.rb +3 -0
- data/spec/dummy/app/models/person.rb +11 -0
- data/spec/dummy/app/models/user.rb +3 -0
- data/spec/dummy/config/application.rb +2 -1
- data/spec/dummy/config/database.yml +20 -17
- data/spec/dummy/config/environments/production.rb +1 -5
- data/spec/dummy/config/environments/test.rb +3 -1
- data/spec/dummy/config/initializers/fast_gettext.rb +5 -0
- data/spec/dummy/config/secrets.yml +2 -2
- data/spec/dummy/db/migrate/20141203214017_core.fe_engine.rb +92 -0
- data/spec/dummy/db/migrate/20141203214018_create_reference_sheets.fe_engine.rb +25 -0
- data/spec/dummy/db/migrate/20141203214019_add_element_and_answer_fields.fe_engine.rb +11 -0
- data/spec/dummy/db/migrate/20141203214020_create_email_templates.fe_engine.rb +18 -0
- data/spec/dummy/db/migrate/20141203214021_add_max_lengths.fe_engine.rb +9 -0
- data/spec/dummy/db/migrate/20141203214022_create_join_table.fe_engine.rb +12 -0
- data/spec/dummy/db/migrate/20141203214023_remove_question_id_from_element.fe_engine.rb +10 -0
- data/spec/dummy/db/migrate/20141203214024_create_fe_people.fe_engine.rb +13 -0
- data/spec/dummy/db/migrate/20141203214025_create_fe_addresses.fe_engine.rb +21 -0
- data/{db/migrate/20140624182216_create_create_fe_phone_numbers.rb → spec/dummy/db/migrate/20141203214026_create_create_fe_phone_numbers.fe_engine.rb} +1 -0
- data/spec/dummy/db/migrate/20141203214027_create_fe_users.fe_engine.rb +13 -0
- data/spec/dummy/db/migrate/20141203214028_add_conditional_type_to_elements.fe_engine.rb +6 -0
- data/spec/dummy/db/migrate/20141203214029_add_conditional_answer_to_elements.fe_engine.rb +6 -0
- data/spec/dummy/db/migrate/20141203214030_remove_short_value_column.fe_engine.rb +6 -0
- data/spec/dummy/db/migrate/20141203214031_move_conditional_ids_used_for_choice_field_to_their_own_column.fe_engine.rb +8 -0
- data/spec/dummy/db/migrate/20150123215803_create_users.rb +9 -0
- data/spec/dummy/db/migrate/20150504222619_add_all_element_ids_to_pages.fe_engine.rb +6 -0
- data/spec/dummy/db/migrate/20150930190001_create_fe_phone_numbers.fe_engine.rb +20 -0
- data/spec/dummy/db/migrate/20150930190002_add_locale_columns.fe_engine.rb +10 -0
- data/spec/dummy/db/migrate/20150930190003_add_locale_to_answer_sheet.fe_engine.rb +6 -0
- data/spec/dummy/db/migrate/20150930190004_change_pages_all_element_ids_to_text.fe_engine.rb +6 -0
- data/spec/dummy/db/migrate/20150930191756_add_locale_to_reference_sheets.fe_engine.rb +6 -0
- data/spec/dummy/db/schema.rb +50 -20
- data/spec/dummy/log/development.log +5 -0
- data/spec/factories/applications.rb +0 -1
- data/spec/factories/dummy_applications.rb +6 -0
- data/spec/factories/dummy_people.rb +6 -0
- data/spec/factories/dummy_users.rb +6 -0
- data/spec/factories/elements.rb +28 -3
- data/spec/factories/email_templates.rb +5 -0
- data/spec/factories/fe_email_templates.rb +9 -0
- data/spec/factories/fe_people.rb +0 -2
- data/spec/factories/fe_user.rb +6 -0
- data/spec/factories/question_sheet.rb +1 -1
- data/spec/factories/reference_sheets.rb +9 -0
- data/spec/mailers/fe/notifier_spec.rb +39 -0
- data/spec/models/fe/choice_field_spec.rb +20 -0
- data/spec/models/fe/element_spec.rb +185 -0
- data/spec/models/fe/page_spec.rb +112 -0
- data/spec/models/fe/question_sheet_spec.rb +106 -0
- data/spec/models/fe/reference_sheet_spec.rb +20 -0
- data/spec/rails_helper.rb +41 -13
- data/spec/support/choices.xml +6 -0
- metadata +136 -48
- data/app/assets/javascripts/fe/rails.extra.js +0 -6
- data/app/controllers/fe/applications_controller.rb +0 -183
- data/app/controllers/fe/payments_controller.rb +0 -184
- data/app/models/fe/payment.rb +0 -77
- data/app/models/fe/payment_question.rb +0 -22
- data/app/views/fe/admin/panels/_prop_payment_question.html.erb +0 -1
- data/app/views/fe/application/_logout.html.erb +0 -1
- data/app/views/fe/payment_pages/_credit.html.erb +0 -47
- data/app/views/fe/payment_pages/_mail.html.erb +0 -27
- data/app/views/fe/payment_pages/_payment.html.erb +0 -6
- data/app/views/fe/payment_pages/_staff.html.erb +0 -25
- data/app/views/fe/payment_pages/_staff_results.html.erb +0 -17
- data/app/views/fe/payment_pages/edit.html.erb +0 -75
- data/app/views/fe/payment_pages/staff_search.js.erb +0 -2
- data/app/views/fe/payments/_credit.html.erb +0 -47
- data/app/views/fe/payments/_errors.html.erb +0 -1
- data/app/views/fe/payments/_payment.html.erb +0 -13
- data/app/views/fe/payments/_staff.html.erb +0 -21
- data/app/views/fe/payments/_staff_results.html.erb +0 -18
- data/app/views/fe/payments/approve.js.erb +0 -3
- data/app/views/fe/payments/create.js.erb +0 -19
- data/app/views/fe/payments/destroy.js.erb +0 -7
- data/app/views/fe/payments/edit.html.erb +0 -56
- data/app/views/fe/payments/error.js.erb +0 -3
- data/app/views/fe/payments/no_access.html.erb +0 -7
- data/app/views/fe/payments/staff_search.js.erb +0 -1
- data/app/views/fe/payments/update.html.erb +0 -24
- data/app/views/fe/questions/fe/_payment_question.html.erb +0 -70
- data/db/migrate/20140828045339_create_payments.rb +0 -13
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/factories/payments.rb +0 -7
- data/spec/models/fe/payment_question_spec.rb +0 -65
@@ -1 +0,0 @@
|
|
1
|
-
$('#staff_results').html('<%= escape_javascript(render('staff_results')) %>')
|
@@ -1,24 +0,0 @@
|
|
1
|
-
<% @title = "Receive Payments" %>
|
2
|
-
|
3
|
-
<div id="controls">
|
4
|
-
<div id="panel">
|
5
|
-
<div class="panel">
|
6
|
-
<p>Thank you.</p>
|
7
|
-
</div>
|
8
|
-
</div>
|
9
|
-
</div>
|
10
|
-
|
11
|
-
|
12
|
-
<div id="preview">
|
13
|
-
<h2>Staff Account Transfer Payment</h2>
|
14
|
-
<div class="page" style="padding: 18px;">
|
15
|
-
<% if @payment.approved? -%>
|
16
|
-
Thank you for paying the application fee for <%= @person.informal_full_name %>'s applcation.
|
17
|
-
<% else -%>
|
18
|
-
Thank you for taking the time to deny <%= @person.informal_full_name %>'s
|
19
|
-
scholarship request.
|
20
|
-
<% end -%>
|
21
|
-
<br /><br />
|
22
|
-
You may close this window now.
|
23
|
-
</div>
|
24
|
-
</div>
|
@@ -1,70 +0,0 @@
|
|
1
|
-
<% @payment = Fe::Payment.new %>
|
2
|
-
<% @application = @answer_sheet %>
|
3
|
-
<div id="<%= dom_id(payment_question) %>" class="payment_question <%= 'required' if payment_question.required? %>">
|
4
|
-
<h2>
|
5
|
-
Payment
|
6
|
-
</h2>
|
7
|
-
<% if @application %>
|
8
|
-
<p class="appfee">
|
9
|
-
Application Fee: <%= number_to_currency(Fe::Application::COST) %>
|
10
|
-
</p>
|
11
|
-
<p class="currpayments">
|
12
|
-
Current payments:
|
13
|
-
</p>
|
14
|
-
<table cellspacing="0" class="list" style="margin-bottom: 27px; width: 100%;">
|
15
|
-
<thead>
|
16
|
-
<tr>
|
17
|
-
<th>
|
18
|
-
Payment Type
|
19
|
-
</th>
|
20
|
-
<th>
|
21
|
-
Payment Date
|
22
|
-
</th>
|
23
|
-
<th>
|
24
|
-
Amount Paid
|
25
|
-
</th>
|
26
|
-
<th>
|
27
|
-
|
28
|
-
</th>
|
29
|
-
</tr>
|
30
|
-
</thead>
|
31
|
-
<tbody id="payment_table">
|
32
|
-
<% if @application.payments.empty? %>
|
33
|
-
<tr>
|
34
|
-
<td colspan="4" id="no-payments" <% if @application.payments.length > 0 -%> style="display: none;" <% end -%>>
|
35
|
-
You have not yet applied any payments to this application.
|
36
|
-
</td>
|
37
|
-
</tr>
|
38
|
-
<% else %>
|
39
|
-
<% @application.payments.each do |payment| -%><%= render :partial => 'fe/payments/payment', :locals => {:payment => payment}%><% end -%>
|
40
|
-
<% end %>
|
41
|
-
</tbody>
|
42
|
-
</table>
|
43
|
-
<div id="payment_choices" style="<%= 'display:none' unless @application.payments.non_denied.empty? %>">
|
44
|
-
<p>
|
45
|
-
Please select one of the following three options for paying your application fee.
|
46
|
-
</p>
|
47
|
-
<div id="payment_errors">
|
48
|
-
<%= render :partial => "fe/payments/errors", :locals => {:payment => @payment} %>
|
49
|
-
</div>
|
50
|
-
<ul class="list-choices">
|
51
|
-
<li>
|
52
|
-
<div class="field field_check">
|
53
|
-
<%= radio_button :payment, :payment_type, "Credit Card", {:onclick => "swapPayment('credit');"} %><label for="payment_payment_type_credit_card">Credit/Debit Card (Fastest - Processed immediately online)</label>
|
54
|
-
<div id="pay_credit" class="pay_view" <% unless @payment.payment_type == "Credit Card" -%> style="display: none;" <% end -%>>
|
55
|
-
<%= render :partial => 'fe/payments/credit' %>
|
56
|
-
</div>
|
57
|
-
</div>
|
58
|
-
</li>
|
59
|
-
<li>
|
60
|
-
<div class="field field_check">
|
61
|
-
<%= radio_button :payment, :payment_type, "Staff", {:onclick => "swapPayment('staff');"} %><label for="payment_payment_type_staff">Transfer from a Staff/Project/Scholarship Fund</label>
|
62
|
-
<div id="pay_staff" class="pay_view" <% unless @payment.payment_type == "Staff" -%> style="display: none;" <% end -%>>
|
63
|
-
<%= render :partial => 'fe/payments/staff' %>
|
64
|
-
</div>
|
65
|
-
</div>
|
66
|
-
</li>
|
67
|
-
</ul>
|
68
|
-
</div>
|
69
|
-
<% end -%>
|
70
|
-
</div>
|
@@ -1,13 +0,0 @@
|
|
1
|
-
class CreatePayments < ActiveRecord::Migration
|
2
|
-
def change
|
3
|
-
create_table Fe::Payment.table_name do |t|
|
4
|
-
t.timestamps
|
5
|
-
t.integer "application_id"
|
6
|
-
t.string "payment_type"
|
7
|
-
t.string "amount"
|
8
|
-
t.string "payment_account_no"
|
9
|
-
t.string "auth_code"
|
10
|
-
t.string "status"
|
11
|
-
end
|
12
|
-
end
|
13
|
-
end
|
data/spec/dummy/db/test.sqlite3
DELETED
Binary file
|
data/spec/factories/payments.rb
DELETED
@@ -1,65 +0,0 @@
|
|
1
|
-
require 'rails_helper'
|
2
|
-
|
3
|
-
describe Fe::PaymentQuestion do
|
4
|
-
before(:all) do
|
5
|
-
@person = create(:fe_person)
|
6
|
-
@application = create(:application, applicant: @person)
|
7
|
-
@payment_question = Fe::PaymentQuestion.new
|
8
|
-
end
|
9
|
-
|
10
|
-
describe "when calling 'response' function" do
|
11
|
-
it 'returns a new payment if no application specified' do
|
12
|
-
response = @payment_question.send(:response)
|
13
|
-
expect(response.new_record?).to be_truthy
|
14
|
-
end
|
15
|
-
it 'returns the existing application payment if the application already have payments' do
|
16
|
-
payment = create(:payment, application: @application)
|
17
|
-
response = @payment_question.send(:response, @application).first
|
18
|
-
expect(response.id).to be payment.id
|
19
|
-
end
|
20
|
-
it 'returns a new application payment if the application do not have payments yet' do
|
21
|
-
response = @payment_question.send(:response, @application)
|
22
|
-
expect(response).not_to be nil
|
23
|
-
end
|
24
|
-
end
|
25
|
-
|
26
|
-
describe "when calling 'display_response' function" do
|
27
|
-
it 'returns a blank string if no application specified' do
|
28
|
-
expect(@payment_question).to receive(:response)
|
29
|
-
response = @payment_question.send(:display_response)
|
30
|
-
expect(response).to eq('')
|
31
|
-
end
|
32
|
-
it 'returns an existing application payment string if the application already have payments' do
|
33
|
-
payment = create(:payment, application: @application)
|
34
|
-
expect(@payment_question).to receive(:response).with(@application).and_return(payment)
|
35
|
-
response = @payment_question.send(:display_response, @application)
|
36
|
-
expect(response).not_to be_blank
|
37
|
-
end
|
38
|
-
it 'returns a blank string if the application do not have payments yet' do
|
39
|
-
expect(@payment_question).to receive(:response).with(@application)
|
40
|
-
response = @payment_question.send(:display_response, @application)
|
41
|
-
expect(response).to eq('')
|
42
|
-
end
|
43
|
-
end
|
44
|
-
|
45
|
-
#describe "when calling 'has_response' function" do
|
46
|
-
#before(:each) do
|
47
|
-
#question_sheet = create(:question_sheet)
|
48
|
-
#answer_sheet = create(:answer_sheet)
|
49
|
-
#answer_sheet_question_sheet = create(:answer_sheet_question_sheet, answer_sheet: answer_sheet, question_sheet: question_sheet)
|
50
|
-
#end
|
51
|
-
#it "returns a boolean 'false' if no application specified" do
|
52
|
-
#response = @payment_question.send(:has_response?)
|
53
|
-
#response.should be false
|
54
|
-
#end
|
55
|
-
#it "returns a boolean 'true' if the application already have payments" do
|
56
|
-
#payment = create(:payment, application: @application)
|
57
|
-
#response = @payment_question.send(:has_response?, @application)
|
58
|
-
#response.should be true
|
59
|
-
#end
|
60
|
-
#it "returns a boolean 'false' if the application do not have payments yet" do
|
61
|
-
#response = @payment_question.send(:has_response?, @application)
|
62
|
-
#response.should be false
|
63
|
-
#end
|
64
|
-
#end
|
65
|
-
end
|