From 2d5c32fb9b879065402728852366a41642405e3b Mon Sep 17 00:00:00 2001
From: dcruz
Date: Thu, 11 Apr 2024 12:07:09 +0200
Subject: [PATCH] T1061 Migrate group_visit data into website_switzerland
module
---
__init__.py | 0
.../migrations/14.0.1.1.0/pre-migrate.py | 22 +
website_switzerland/__manifest__.py | 7 +
.../data/communication_config.xml | 226 ++++++
.../data/event_registration_stage.xml | 63 ++
.../data/event_registration_task.xml | 51 ++
website_switzerland/data/event_type.xml | 18 +
website_switzerland/data/event_type_mail.xml | 72 ++
.../data/group_visit_emails.xml | 751 ++++++++++++++++++
website_switzerland/data/survey.xml | 260 ++++++
website_switzerland/models/__init__.py | 1 +
.../models/partner_communication_job.py | 75 ++
.../src/doc/medical_discharge_de_DE.docx | Bin 0 -> 20769 bytes
.../src/doc/medical_discharge_en_US.docx | Bin 0 -> 20769 bytes
.../src/doc/medical_discharge_fr_CH.docx | Bin 0 -> 20769 bytes
.../src/doc/medical_discharge_it_IT.docx | Bin 0 -> 20769 bytes
website_switzerland/templates/contact_us.xml | 270 +++++--
website_switzerland/templates/footer.xml | 8 +-
18 files changed, 1769 insertions(+), 55 deletions(-)
create mode 100644 __init__.py
create mode 100644 website_event_compassion/migrations/14.0.1.1.0/pre-migrate.py
create mode 100644 website_switzerland/data/communication_config.xml
create mode 100644 website_switzerland/data/event_registration_stage.xml
create mode 100644 website_switzerland/data/event_registration_task.xml
create mode 100644 website_switzerland/data/event_type.xml
create mode 100644 website_switzerland/data/event_type_mail.xml
create mode 100644 website_switzerland/data/group_visit_emails.xml
create mode 100644 website_switzerland/data/survey.xml
create mode 100644 website_switzerland/models/partner_communication_job.py
create mode 100644 website_switzerland/static/src/doc/medical_discharge_de_DE.docx
create mode 100644 website_switzerland/static/src/doc/medical_discharge_en_US.docx
create mode 100644 website_switzerland/static/src/doc/medical_discharge_fr_CH.docx
create mode 100644 website_switzerland/static/src/doc/medical_discharge_it_IT.docx
diff --git a/__init__.py b/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/website_event_compassion/migrations/14.0.1.1.0/pre-migrate.py b/website_event_compassion/migrations/14.0.1.1.0/pre-migrate.py
new file mode 100644
index 0000000..1de363a
--- /dev/null
+++ b/website_event_compassion/migrations/14.0.1.1.0/pre-migrate.py
@@ -0,0 +1,22 @@
+def migrate(cr, version):
+ cr.execute(
+ """
+ UPDATE ir_model_data
+ SET module= 'website_switzerland'
+ WHERE module = 'website_event_compassion'
+ AND (model IN ('mail.template', 'partner.communication.config',
+ 'event.registration.task', 'event.type.mail')
+ OR name like 'stage_group_%'
+ OR name = 'event_type_group_visit'
+ OR model like 'survey.%'
+ )
+ """
+ )
+ # Force module install
+ cr.execute(
+ """
+ UPDATE ir_module_module
+ SET state = 'to install'
+ WHERE name = 'website_switzerland'
+ """
+ )
diff --git a/website_switzerland/__manifest__.py b/website_switzerland/__manifest__.py
index 7088ec5..8ec9db1 100644
--- a/website_switzerland/__manifest__.py
+++ b/website_switzerland/__manifest__.py
@@ -20,8 +20,15 @@
"theme_compassion",
"partner_communication_switzerland",
"website_crm_request",
+ "website_event_compassion",
],
"data": [
+ "data/group_visit_emails.xml",
+ "data/communication_config.xml",
+ "data/event_type_mail.xml",
+ "data/event_registration_stage.xml",
+ "data/event_registration_task.xml",
+ "data/survey.xml",
"data/res_lang.xml",
"data/website_rewrite.xml",
"templates/footer.xml",
diff --git a/website_switzerland/data/communication_config.xml b/website_switzerland/data/communication_config.xml
new file mode 100644
index 0000000..6be1e83
--- /dev/null
+++ b/website_switzerland/data/communication_config.xml
@@ -0,0 +1,226 @@
+
+
+
+
+ Group visit: step1 registration confirmation
+ auto_digital
+
+
+
+
+
+
+ Group visit: step2 confirmation
+ auto_digital
+
+
+
+
+ get_trip_down_payment_attachment
+
+
+ Group visit: step3 confirmation
+ auto_digital
+
+
+
+
+
+
+ Group visit: medical survey invitation
+ auto_digital
+
+
+
+
+
+
+ Group visit: medical discharge request
+ digital
+
+
+
+
+
+
+ Group visit: travel documents request
+ auto_digital
+
+
+
+
+ get_trip_payment_attachment
+
+
+ Group visit: info day invitation
+ auto_digital
+
+
+
+
+
+
+ Group visit: after trip party invitation
+ auto_digital
+
+
+
+
+
+
+ Group visit: detailed information
+ auto_digital
+
+
+
+
+
+
+ Group visit: before trip sharing information
+ auto_digital
+
+
+
+
+
+
+ Group visit: after trip feedback
+ auto_digital
+
+
+
+
+
+
+
diff --git a/website_switzerland/data/event_registration_stage.xml b/website_switzerland/data/event_registration_stage.xml
new file mode 100644
index 0000000..023c666
--- /dev/null
+++ b/website_switzerland/data/event_registration_stage.xml
@@ -0,0 +1,63 @@
+
+
+
+
+
+ Sign Agreements
+ 1
+ 7
+
+ * Sign child protection agreement
+ * Sign travel agreement
+ * Send a passport copy
+ * Send certificate of criminal record
+
+
+
+
+ Down payment
+ 2
+ 7
+
+ * Pay registration down payment fee
+
+
+
+
+ Medical survey
+ 3
+ 7
+
+ * Fill medical survey
+ * Sign medical discharge if needed
+
+
+
+
+ Payment
+ 4
+ 7
+
+ * Fill urgency contact information
+ * Pay the whole trip fees
+
+
+
+
+
diff --git a/website_switzerland/data/event_registration_task.xml b/website_switzerland/data/event_registration_task.xml
new file mode 100644
index 0000000..ea4cf7f
--- /dev/null
+++ b/website_switzerland/data/event_registration_task.xml
@@ -0,0 +1,51 @@
+
+
+
+
+
+ Sign child protection agreement
+ 0
+
+
+
+ Sign travel agreement
+ 1
+
+
+
+ Send a passport copy
+ 2
+
+
+
+ Send certificate of criminal record
+ 3
+
+
+
+ Fill urgency contact information
+ 1
+
+
+
+ Pay fees
+ 0
+
+
+
+ Fill medical survey
+ 0
+
+
+
+ Sign medical discharge
+ 1
+
+
+
+ Pay the trip
+ 2
+
+
+
+
diff --git a/website_switzerland/data/event_type.xml b/website_switzerland/data/event_type.xml
new file mode 100644
index 0000000..1a1a6b3
--- /dev/null
+++ b/website_switzerland/data/event_type.xml
@@ -0,0 +1,18 @@
+
+
+
+ Group visit
+
+ 30
+
+
+
+
+ group_visit
+
+
+
+
diff --git a/website_switzerland/data/event_type_mail.xml b/website_switzerland/data/event_type_mail.xml
new file mode 100644
index 0000000..a03fadc
--- /dev/null
+++ b/website_switzerland/data/event_type_mail.xml
@@ -0,0 +1,72 @@
+
+
+
+
+ communication
+
+ after_sub
+ now
+
+
+
+ communication
+
+ after_stage
+
+ now
+
+
+
+ communication
+
+ after_stage
+
+ now
+
+
+
+ communication
+
+ after_stage
+
+ days
+ 10
+
+
+
+ communication
+
+ before_event
+ days
+ 75
+
+
+
+ communication
+
+ before_event
+ months
+ 1
+
+
+
+ communication
+
+ after_event
+ days
+ 3
+
+
+
diff --git a/website_switzerland/data/group_visit_emails.xml b/website_switzerland/data/group_visit_emails.xml
new file mode 100644
index 0000000..ce1fc6a
--- /dev/null
+++ b/website_switzerland/data/group_visit_emails.xml
@@ -0,0 +1,751 @@
+
+
+
+ Group visit: step1 registration confirmation
+
+ "${object.user_id.company_id.name}" <compassion@compassion.ch>
+ info@compassion.ch
+
+ Your trip to ${object.get_objects().compassion_event_id.country_id.name} with Compassion
+
+
+ % set partner = object.partner_id
+ % set registration = object.get_objects()
+ % set event = registration.compassion_event_id
+ % set base_url = object.env['ir.config_parameter'].sudo().get_param('web.external.url')
+
+
+ ${partner.salutation}
+
+
+ Thank you very much for your interest in Compassion's work to free more children from poverty every day, for a dignified and meaningful life.
+
+
+ We look forward to showing you the conditions of extreme poverty in which 385 million children still live today. We are convinced you will be able to witness the transformation that a sponsorship brings to the life of a child and his or her family.
+
+
+ We hereby confirm your registration for the ${event.name}. There are only two steps left for your registration to be validated and a place reserved for you on this trip.
+
+
+ Next step: when you have about ten minutes to spare, please read Compassion's child protection guidelines.
+
+
+
+
+
+ Here you will find (click here) the main questions asked by people interested in travelling with Compassion. You can also send us an email at rreber@compassion.ch if you can't find an answer to your question.
+
+
+ Once again, thank you for your commitment to children in need.
+
+
+ Receive our warmest greetings.
+
+
+ Rose-Marie Reber
+
+ Sponsor and donor service
+
+ Compassion Switzerland
+
+
+
+
+
+ Group visit: step2 confirmation
+
+ "${object.user_id.company_id.name}" <compassion@compassion.ch>
+ info@compassion.ch
+
+ Only one step left to validate your registration to your trip with Compassion
+
+
+ % set partner = object.partner_id
+ % set registration = object.get_objects()
+ % set event = registration.compassion_event_id
+ % set base_url = object.env['ir.config_parameter'].sudo().get_param('web.external.url')
+
+
+ ${partner.salutation}
+
+
+ Your registration for the ${event.name} is progressing well. Thank you very much for your interest in Compassion's work to free more children from poverty every day, for a dignified and meaningful life.
+
+
+ To confirm your registration, you only need to pay a deposit of ${object.user_id.company_id.currency_id.symbol} ${'%d' |format(registration.event_ticket_id.price)}.- You have the choice to make this payment:
+
+
+ -
+ Online by Credit card or Postfinance card
+
+
+
+
+ - By paying using the payment slip attached to this email
+
+
+ We thank you in advance for making this payment today or in the coming days.
+
+
+ The next step will be to prepare for the trip. Here again, you will receive the information you need to know in time to make this trip an enriching and unforgettable experience for you.
+
+
+ Here you will find (click here) the main questions asked by people interested in travelling with Compassion. You can also send us an email at rreber@compassion.ch if you can't find an answer to your question.
+
+
+ Once again, thank you for your commitment to children in need.
+
+
+ Receive our warmest greetings.
+
+
+ Rose-Marie Reber
+
+ Sponsor and donor service
+
+ Compassion Switzerland
+
+
+
+
+
+ Group visit: step3 confirmation
+
+ "${object.user_id.company_id.name}" <compassion@compassion.ch>
+ info@compassion.ch
+
+ Your registration to the trip with Compassion is confirmed
+
+
+ % set partner = object.partner_id
+ % set registration = object.get_objects()
+ % set event = registration.compassion_event_id
+ % set base_url = object.env['ir.config_parameter'].sudo().get_param('web.external.url')
+
+
+ ${partner.salutation}
+
+
+ We have received the documents and the payment of the deposit required for the registration for the ${event.name}. Thank you very much!
+
+
+ In the coming weeks, you will be guided through the preparations for your trip. What can you expect in concrete terms?
+
+
+ - Health information
+ - Information on travel and insurance documents
+ - Information on the information and preparation meeting
+ - Information on the country and climate
+ - Information about Compassion's work and meeting your sponsored child
+
+
+ Here you will find (click here) the main questions asked by people interested in travelling with Compassion. You can also send us an email at rreber@compassion.ch if you can't find an answer to your question.
+
+
+ Once again, thank you for your commitment to children in need.
+
+
+ Receive our warmest greetings.
+
+
+ Rose-Marie Reber
+
+ Sponsor and donor service
+
+ Compassion Switzerland
+
+
+
+
+
+ Group visit: medical survey invitation
+
+ "${object.user_id.company_id.name}" <compassion@compassion.ch>
+ info@compassion.ch
+
+ Your trip with Compassion - Medical information
+
+
+ % set partner = object.partner_id
+ % set registration = object.get_objects()
+ % set event = registration.compassion_event_id
+ % set base_url = object.env['ir.config_parameter'].sudo().get_param('web.external.url')
+
+
+ ${partner.salutation}
+
+
+ Once again, thank you for your interest in Compassionate work for the benefit of children living in extreme poverty. We look forward to your journey ${event.country_id.preposition} ${event.country_id.name}. Thank you very much!
+
+
+ It is time to prepare the trip in terms of health. The stay that awaits you will be interesting. It can also be challenging: long international flights, jet lag, altitude changes, travel on rough roads, hiking on rough terrain and long days will be possible.
+
+
+ Because we know that every individual is different, we collect health information from each registrant to be aware of their limitations and specific needs.
+
+
+ Click here to review the checklist and make sure you are well prepared for this trip in terms of health:
+
+
+
+
+
+ Here you will find (click here) the main questions asked by people interested in travelling with Compassion. You can also send us an email at rreber@compassion.ch if you can't find an answer to your question.
+
+
+ Thank you for your commitment to children in need.
+
+
+ Receive our warmest greetings.
+
+
+ Rose-Marie Reber
+
+ Sponsor and donor service
+
+ Compassion Switzerland
+
+
+
+
+
+ Group visit: medical discharge request
+
+ "${object.user_id.company_id.name}" <compassion@compassion.ch>
+ info@compassion.ch
+
+ Your trip with Compassion - Medical information
+
+
+ % set partner = object.partner_id
+ % set registration = object.get_objects()
+ % set event = registration.compassion_event_id
+ % set base_url = object.env['ir.config_parameter'].sudo().get_param('web.external.url')
+
+
+ ${partner.salutation}
+
+
+ We received your answers to the medical survey and we thank you for taking the time to complete it.
+
+
+ Based on your answers, it seems you are undergoing on a medical treatment. For that purpose we need a medical discharge from your doctor, confirming us that your medical status still allows you to travel to ${event.country_id.name}.
+
+
+ Please find attached a template letter that you can fill with your information, print and give it to your doctor to sign. You can then send us back the signed letter at our postal addres or directly online by clicking here.
+
+
+ Receive our warmest greetings.
+
+
+ Rose-Marie Reber
+
+ Sponsor and donor service
+
+ Compassion Switzerland
+
+
+
+
+
+ Group visit: travel documents request
+
+ "${object.user_id.company_id.name}" <compassion@compassion.ch>
+ info@compassion.ch
+
+ Your trip with Compassion - travel documents and payment
+
+
+ % set partner = object.partner_id
+ % set registration = object.get_objects()
+ % set event = registration.event_id
+ % set base_url = object.env['ir.config_parameter'].sudo().get_param('web.external.url')
+
+
+ ${partner.salutation}
+
+
+ Thank you for your commitment to Compassion for the benefit of children living in extreme poverty. We look forward to your journey ${event.country_id.preposition} ${event.country_id.name}.
+
+
+ It is time to prepare the trip administratively. This step should take you 10 to 30 minutes. Would you be able to do it within the next 15 days?
+
+
+
1. Payment of the trip
+
+ Attached, you will find the invoice for this trip. Please pay it within 30 days. You can pay directly by credit card or Postfinance card or using the attached payment slip. If you do not have the possibility to pay for this trip in one go, please contact me in advance to find a solution together (rreber@compassion.ch).
+
+
+
+
+
+ 2. Travel documents
+
+
+ 2.1. Passport
+ Please check that your passport will be valid six months after the date of your planned return to Switzerland. If this is not the case, we ask you to renew your passport in order to guarantee you a worry-free trip.
+
+
+ 2.2. Insurance
+ Compassion does not have comprehensive insurance for participants on sponsor trips. We recommend that you check your health and accident insurance coverage. Trip cancellation insurance is strongly recommended. Indeed, once the flight ticket has been purchased and in the event of cancellation, you will be responsible for the costs. Do you have the ETI World TCS booklet (click here)? This is a good insurance that covers international travel and cancellations.
+
+
+ % if event.visa_needed:
+ 2.3. Visa
+ This trip will require a visa. To apply for a visa, go to the website of the "visa application" country or to https://www.dfae.admin.ch to find the necessary information. For ${event.country_id.name}, it is best to make the request ${event.months_needed_for_a_visa} months before your departure.
+
+
+ % endif
+ 2.4. Emergency contact
+ Please make sure you informed your emergency contact about the trip. Here is the the emergency person you chose:
+
+
+
+ - Name: ${registration.emergency_name}
+ - Phone: ${registration.emergency_phone}
+
+
+
+ Here you will find (click here) the main questions asked by people interested in travelling with Compassion. You can also send us an email at rreber@compassion.ch if you can't find an answer to your question.
+
+
+ Once again, thank you for your commitment to children in need.
+
+
+ Receive our warmest greetings.
+
+
+ Rose-Marie Reber
+
+ Sponsor and donor service
+
+ Compassion Switzerland
+
+
+
+
+
+ Group visit: info day invitation
+
+ "${object.user_id.company_id.name}" <compassion@compassion.ch>
+ info@compassion.ch
+
+ Invitation to the ${object.get_objects().compassion_event_id.name} preparation meeting
+
+
+ % set partner = object.partner_id
+ % set registration = object.get_objects()
+ % set event = registration.compassion_event_id
+ % set meeting = registration.event_id
+ % set user = meeting.user_id
+ % set url = registration.env['ir.config_parameter'].sudo().get_param('web.external.url') + '/event/' + registration.uuid + '/meeting_invitation'
+
+
+ ${partner.salutation}
+
+
+ Your journey ${event.country_id.preposition} ${event.country_id.name} is fast approaching.
+
+
+ An unforgettable experience is being prepared. In this perspective, Compassion invites you to a meeting of the participants in ${meeting.address_id.city} on ${meeting.get_date('date_begin')} at ${meeting.get_date('date_begin', '%H:%M')}.
+
+
+ On this occasion, we will present you the work of Compassion ${event.country_id.preposition} ${event.country_id.name} as well as the detailed program of the trip. There will also be a time for Questions & Answers and an aperitif to get to know each other.
+
+
+ Please confirm your participation by clicking here:.
+
+
+
+
+
+ We look forward to meeting you (or seeing you again) on this occasion.
+
+
+ Receive our warmest greetings.
+
+
+ ${user.preferred_name} ${user.lastname}
+
+ ${user.employee_ids.department_id.name}
+
+ Compassion Switzerland
+
+
+
+
+
+
+ Group visit: after trip party invitation
+
+ "${object.user_id.company_id.name}" <compassion@compassion.ch>
+ info@compassion.ch
+
+ ${object.get_objects().compassion_event_id.name} - Invitation to an after party
+
+
+ % set partner = object.partner_id
+ % set registration = object.get_objects()
+ % set event = registration.compassion_event_id
+ % set meeting = registration.event_id
+ % set user = meeting.user_id
+ % set url = registration.env['ir.config_parameter'].sudo().get_param('web.external.url') + '/event/' + registration.uuid + '/after_party'
+
+
+ ${partner.salutation}
+
+
+ We hope that your journey ${event.country_id.preposition} ${event.country_id.name} has been an enriching experience for you.
+
+
+ Compassion invites you to an after party, where the participants can meet once again in order to spend some more time together and share our feedback. The party will take place in ${meeting.address_id.city} on ${meeting.get_date('date_begin')} at ${meeting.get_date('date_begin', '%H:%M')}.
+
+
+ Please confirm your participation by clicking here:.
+
+
+
+
+
+ We look forward to seeing you again on this occasion.
+
+
+ Receive our warmest greetings.
+
+
+ ${user.preferred_name} ${user.lastname}
+
+ ${user.employee_ids.department_id.name}
+
+ Compassion Switzerland
+
+
+
+
+
+
+ Group visit: detailed information
+
+ "${object.user_id.company_id.name}" <compassion@compassion.ch>
+ info@compassion.ch
+
+ Your trip with Compassion - practical information
+
+
+ % set partner = object.partner_id
+ % set registration = object.get_objects()
+ % set event = registration.compassion_event_id
+ % set base_url = object.env['ir.config_parameter'].sudo().get_param('web.external.url')
+
+
+ ${partner.salutation}
+
+
+ This is the final stretch: it's time to prepare your luggage for Compassion's trip. To make it easier for you, we have provided a small folder to read as soon as you have a moment. It contains information about:
+
+
+ - the meeting with your sponsored child
+ - Compassion Programs
+ - the country, the climate, the customs
+ - your luggage and the little gifts you could take with you
+
+
+ Keep this email carefully to access the information. To find out more, simply click here:.
+
+
+
+
+
+ If you still have questions, you will find here the main questions asked by people interested in travelling with Compassion. You can also send us an email at rreber@compassion.ch if you can't find an answer to your question.
+
+
+ Thank you for your commitment to children in need.
+
+
+ Receive our warmest greetings.
+
+
+ Rose-Marie Reber
+
+ Sponsor and donor service
+
+ Compassion Switzerland
+
+
+
+
+
+ Group visit: before trip sharing information
+
+ "${object.user_id.company_id.name}" <compassion@compassion.ch>
+ info@compassion.ch
+
+ Did you speak about your trip with Compassion?
+
+
+ % set partner = object.partner_id
+ % set registration = object.get_objects()
+ % set event = registration.compassion_event_id
+
+
+ ${partner.salutation}
+
+
+ Thank you for investing time for the ${event.name}. You will help to change the lives of children living in extreme poverty.
+
+
+ Did you know that? Your trip can have an even greater impact. To do this, simply tell your friends and share your sponsorship experience.
+
+
+ For example, some of your loved ones may imitate you and in turn transform a child's life by committing to sponsor a child.
+
+
+ Encourage them to sponsor a child by sending the message "1 child" by SMS to 959 (free) or directly on www.compassion.ch.
+
+
+ Feel free to contact us if you would like to be advised on how to organize a small meeting with your friends at home and/or to receive material for this purpose. We are available by phone on 031 552 21 25 or by email at events@compassion.ch.
+
+
+ At Compassion, we believe that it is possible to change the world, one child at a time. Even if extreme poverty declines - and this is good news - there are still 385 million children living in extreme poverty.
+
+
+ Thank you very much for your commitment to working with us to transform the lives of as many of these children as possible.
+
+
+ Receive our warmest greetings.
+
+
+ Rose-Marie Reber
+
+ Sponsor and donor service
+
+ Compassion Switzerland
+
+
+
+
+
+ Group visit: after trip feedback
+
+ "${object.user_id.company_id.name}" <compassion@compassion.ch>
+ info@compassion.ch
+
+ How did your trip with Compassion go?
+
+
+ % set partner = object.partner_id
+ % set registration = object.get_objects()
+ % set event = registration.compassion_event_id
+
+
+ ${partner.salutation}
+
+
+ We hope that you have returned from your journey with Compassion and that this experience has enriched you in every way.
+
+
+ Would you be able to take 3 minutes to share your thoughts on this trip with us?
+
+
+
+
+
+ Did you know that? Your trip can have an even greater impact. To do this, simply tell your friends and share your sponsorship experience.
+
+
+ In this way, some of your loved ones could imitate you and in turn transform a child's life, by committing to sponsor a child.
+
+
+ Encourage them to sponsor a child by sending the message "1 child" by SMS to 959 (free) or directly on www.compassion.ch.
+
+
+ Feel free to contact us if you would like to be advised on how to organize a small meeting with your friends at home and/or to receive material for this purpose. We are available by phone on 031 552 21 25 or by email at events@compassion.ch.
+
+
+ At Compassion, we believe that it is possible to change the world, one child at a time. Even if extreme poverty declines - and this is good news - there are still 385 million children living in extreme poverty.
+
+
+ Thank you very much for your commitment to working with us to transform the lives of as many of these children as possible.
+
+
+ Receive our warmest greetings.
+
+
+ Rose-Marie Reber
+
+ Sponsor and donor service
+
+ Compassion Switzerland
+
+
+
+
+
diff --git a/website_switzerland/data/survey.xml b/website_switzerland/data/survey.xml
new file mode 100644
index 0000000..dc1d103
--- /dev/null
+++ b/website_switzerland/data/survey.xml
@@ -0,0 +1,260 @@
+
+
+
+
+ Medical survey
+
+
+ Your health
+
+
+ 1
+
+
+
+ Please indicate any known health issue you have:
+ multiple_choice
+ 1
+ 1
+
+
+
+ I have respiratory problems
+
+
+
+ I have heart problems
+
+
+
+ I have back problems
+
+
+
+ I have sleep problems
+
+
+
+ I suffer from the following allergies:
+ text_box
+
+
+
+ I am on a special diet:
+ text_box
+
+
+
+ I am under treatment:
+ leave the field empty!]]>
+ text_box
+
+
+
+
+
+ Group visit feedback survey
+
+
+ Return from travel
+
+
+ 1
+
+
+
+ Assistance in preparing the trip:
+ simple_choice
+
+
+
+
+ Bad
+
+
+
+ Unconvincing
+
+
+
+ Average
+
+
+
+ Fairly good
+
+
+
+ Excellent
+
+
+
+ Contacts with Compassion employees in the country:
+ simple_choice
+
+
+
+
+ Bad
+
+
+
+ Unconvincing
+
+
+
+ Average
+
+
+
+ Fairly good
+
+
+
+ Excellent
+
+
+
+ Overview of the Ministry of Compassion in the country:
+ simple_choice
+
+
+
+
+ Bad
+
+
+
+ Unconvincing
+
+
+
+ Average
+
+
+
+ Fairly good
+
+
+
+ Excellent
+
+
+
+ Meeting with your sponsored child:
+ simple_choice
+
+
+
+
+ Bad
+
+
+
+ Unconvincing
+
+
+
+ Average
+
+
+
+ Fairly good
+
+
+
+ Excellent
+
+
+
+ Accommodations:
+ simple_choice
+
+
+
+
+ Bad
+
+
+
+ Unconvincing
+
+
+
+ Average
+
+
+
+ Fairly good
+
+
+
+ Excellent
+
+
+
+ Food:
+ simple_choice
+
+
+
+
+ Bad
+
+
+
+ Unconvincing
+
+
+
+ Average
+
+
+
+ Fairly good
+
+
+
+ Excellent
+
+
+
+ Transport:
+ simple_choice
+
+
+
+
+ Bad
+
+
+
+ Unconvincing
+
+
+
+ Average
+
+
+
+ Fairly good
+
+
+
+ Excellent
+
+
+
+ Suggestions for improvement:
+ text_box
+
+
+
diff --git a/website_switzerland/models/__init__.py b/website_switzerland/models/__init__.py
index 4bb2612..1d2ccd6 100644
--- a/website_switzerland/models/__init__.py
+++ b/website_switzerland/models/__init__.py
@@ -1 +1,2 @@
from . import theme_compassion
+from . import partner_communication_job
diff --git a/website_switzerland/models/partner_communication_job.py b/website_switzerland/models/partner_communication_job.py
new file mode 100644
index 0000000..c4652c8
--- /dev/null
+++ b/website_switzerland/models/partner_communication_job.py
@@ -0,0 +1,75 @@
+##############################################################################
+#
+# Copyright (C) 2018 Compassion CH (http://www.compassion.ch)
+# @author: Emanuel Cino
+#
+# The licence is in the file __manifest__.py
+#
+##############################################################################
+import base64
+
+from odoo import _, models
+
+
+class CommunicationJob(models.Model):
+ _inherit = "partner.communication.job"
+
+ def get_trip_down_payment_attachment(self):
+ """
+ :return: dict {attachment_name: [report_name, pdf_data]}
+ """
+ self.ensure_one()
+ registration = self.get_objects()
+ product = registration.event_ticket_id.product_id
+ report_vals = {
+ "doc_ids": registration.partner_id.ids,
+ "product_id": product.id,
+ "background": True,
+ "preprinted": False,
+ "amount": registration.event_ticket_id.price,
+ }
+
+ report_name = "report_compassion.bvr_fund"
+ report_ref = self.env.ref("report_compassion.report_bvr_fund")
+
+ pdf_data = base64.encodebytes(
+ report_ref.render_qweb_pdf(registration.partner_id.ids, report_vals)[0]
+ )
+
+ return {_("down_payment.pdf"): [report_name, pdf_data]}
+
+ def get_trip_payment_attachment(self):
+ """
+ :return: dict {attachment_name: [report_name, pdf_data]}
+ """
+ self.ensure_one()
+ registration = self.get_objects()
+ invoice = registration.group_visit_invoice_id
+ product = self.env["product.product"].search(
+ [
+ (
+ "product_tmpl_id",
+ "=",
+ self.env.ref(
+ "website_event_compassion.product_template_trip_price"
+ ).id,
+ )
+ ]
+ )
+ event_name = registration.compassion_event_id.name
+ report_vals = {
+ "doc_ids": registration.partner_id.ids,
+ "product_id": product.id,
+ "background": True,
+ "preprinted": False,
+ "amount": invoice.amount_total,
+ "communication": event_name,
+ }
+ report_name = "report_compassion.bvr_fund"
+ report = self.env.ref("report_compassion.report_bvr_fund")
+ pdf_data = base64.b64encode(
+ report.with_context(must_skip_send_to_printer=True).render_qweb_pdf(
+ registration.partner_id.ids, data=report_vals
+ )[0]
+ )
+ return {event_name + ".pdf": [report_name, pdf_data]}
diff --git a/website_switzerland/static/src/doc/medical_discharge_de_DE.docx b/website_switzerland/static/src/doc/medical_discharge_de_DE.docx
new file mode 100644
index 0000000000000000000000000000000000000000..4fc0bc64273975b7781fe0416c4141a990858897
GIT binary patch
literal 20769
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
N0wyL&$^1O}e*k6zi=6-f
literal 0
HcmV?d00001
diff --git a/website_switzerland/static/src/doc/medical_discharge_en_US.docx b/website_switzerland/static/src/doc/medical_discharge_en_US.docx
new file mode 100644
index 0000000000000000000000000000000000000000..4fc0bc64273975b7781fe0416c4141a990858897
GIT binary patch
literal 20769
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
N0wyL&$^1O}e*k6zi=6-f
literal 0
HcmV?d00001
diff --git a/website_switzerland/static/src/doc/medical_discharge_fr_CH.docx b/website_switzerland/static/src/doc/medical_discharge_fr_CH.docx
new file mode 100644
index 0000000000000000000000000000000000000000..4fc0bc64273975b7781fe0416c4141a990858897
GIT binary patch
literal 20769
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