Skip to content

Commit

Permalink
[ADD] #780370 : Add_module_event_refund
Browse files Browse the repository at this point in the history
  • Loading branch information
73930800 authored and isabellerichard committed Aug 21, 2019
1 parent a4865a2 commit cd5beaa
Show file tree
Hide file tree
Showing 13 changed files with 687 additions and 0 deletions.
7 changes: 7 additions & 0 deletions smile_event_refund_registration/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# -*- coding: utf-8 -*-
# (C) 2019 Smile (<http://www.smile.fr>)
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl).

from . import models
from . import wizard
from . import tests
27 changes: 27 additions & 0 deletions smile_event_refund_registration/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# -*- coding: utf-8 -*-
# (C) 2019 Smile (<http://www.smile.fr>)
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl).
{
'name': "Smile Event Refund Registration",

'description': """
Cancel and Refund event
""",
'author': "Smile",
"license": 'LGPL-3',
'website': "http://www.smile.eu",
'category': 'tools',
'version': '0.1',

'depends': [
'base',
'website_event',
'event_sale',
],

'data': [
'data/email_template.xml',
'wizard/event_refund_view.xml',
'views/event_registration.xml',
],
}
76 changes: 76 additions & 0 deletions smile_event_refund_registration/data/email_template.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<data>
<record id="refund_event_registration" model="mail.template">
<field name="name">Event: Refund Registration</field>
<field name="model_id" ref="event.model_event_registration"/>
<field name="subject">Refund ${object.event_id.name}: ${object.get_date_range_str()}</field>
<field name="email_from">${(object.event_id.organizer_id.email or object.event_id.user_id.email or '')|safe}</field>
<field name="email_to">${('"%s" &lt;%s&gt;' % (object.partner_id.name or object.name, object.partner_id.email or object.email)) | safe}</field>
<field name="reply_to" eval="False"/>
<field name="body_html" type="html">
<table border="0" cellpadding="0" cellspacing="0" width="590" style="padding: 16px; background-color: white; color: #454748; border-collapse:separate;">
<tbody>
<!-- HEADER -->
<tr>
<td align="center" style="min-width: 590px;">
<table width="590" border="0" cellpadding="0" cellspacing="0" style="min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;">
<tr><td valign="middle">
<span style="font-size: 10px;">Your registration(Refunded)</span><br/>
<span style="font-size: 20px; font-weight: bold;">
${object.name}
</span>
</td><td valign="middle" align="right">
<img src="${'/logo.png?company=%s' % object.company_id.id}" style="padding: 0px; margin: 0px; height: auto; width: 80px;" alt="${'%s' % object.company_id.name}"/>
</td></tr>
<tr><td colspan="2" style="text-align:center;">
<hr width="100%" style="background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;"/>
</td></tr>
</table>
</td>
</tr>
<!-- Refund Event Registration-->
<tr>
<td align="center" style="min-width: 590px;">
<table width="590" border="0" cellpadding="0" cellspacing="0" style="min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;">
<tr><td valign="top" style="font-size: 14px;">
<div>
Hello ${object.name},<br/>
We're sorry to inform you that this event
% if 'website_url' in object.event_id and object.event_id.website_url:
<a href="${object.event_id.website_url}" style="color:#875A7B;text-decoration:none;">${object.event_id.name}</a>
% else:
<strong>${object.event_id.name}</strong>
% endif
on <strong>${object.get_date_range_str()}</strong> has been Refund.
</div>
% if 'website_url' in object.event_id and object.event_id.website_url:
<div style="margin: 16px 0px 16px 0px;">
<a href="${object.event_id.website_url}"
style="background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:16px;">View Event</a><br />
</div>
% endif
<div>
Do not hesitate to contact us if you have any question. ,<br/>
<span style="color: #454748;">
-- <br/>
% if object.event_id.organizer_id:
${object.event_id.organizer_id.name}
% else:
The organizers.
% endif
</span>
</div>
</td></tr>
<tr><td style="text-align:center;">
<hr width="100%" style="background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;"/>
</td></tr>
</table>
</td>
</tr>
</tbody>
</table>
</field>
</record>
</data>
</odoo>
Loading

0 comments on commit cd5beaa

Please sign in to comment.