2018-03-25 16:15:39 +00:00
|
|
|
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
2018-03-25 17:30:42 +00:00
|
|
|
module MockHelpers
|
|
|
|
def self.payment_export_headers()
|
2018-10-25 21:56:02 +00:00
|
|
|
["Date",'Gross Amount', 'Fee Total', 'Net Amount','Type', 'Last Name', 'First Name','Full Name', 'Organization', 'Email', 'Phone', 'Address', 'City', 'State', 'Postal Code', 'Country', 'Anonymous?', 'Supporter Id', 'Designation', "Dedication Type",
|
|
|
|
"Dedicated To: Name",
|
|
|
|
"Dedicated To: Supporter Id",
|
|
|
|
"Dedicated To: Email",
|
|
|
|
"Dedicated To: Phone",
|
|
|
|
"Dedicated To: Address",
|
|
|
|
"Dedicated To: Note", 'Anonymous','Comment','Campaign', 'Campaign Gift Level', 'Event Name', 'Payment', 'Check Number', 'Donation Note']
|
2018-03-25 17:30:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.recurring_donation_export_headers()
|
|
|
|
["Created At","Amount","Interval","Total Contributed","Campaign Name","Supporter Name","Supporter Email","Phone","Address","City","State","Zip Code","Card Name","Recurring Donation Id","Donation Id", "Cancelled","Failed", "Cancelled At", "Donation Management Url"]
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.generate_expected_rd_management_url(root_url, rd)
|
|
|
|
"#{root_url}/recurring_donations/#{rd.id}/edit?t=#{rd.edit_token}"
|
|
|
|
end
|
|
|
|
end
|