Browse Source

[UPTD] Technical Name Changed

pull/78/head
Sreejith 7 years ago
parent
commit
e655840b71
  1. 20
      event_management_mail/README.rst
  2. 2
      event_management_mail/__init__.py
  3. 2
      event_management_mail/__manifest__.py
  4. 0
      event_management_mail/data/event_mail_template.xml
  5. 2
      event_management_mail/models/__init__.py
  6. 6
      event_management_mail/models/event_mail.py
  7. 0
      event_management_mail/static/description/banner.jpg
  8. 0
      event_management_mail/static/description/cybro_logo.png
  9. 0
      event_management_mail/static/description/event_mail_button.png
  10. 0
      event_management_mail/static/description/event_mail_wizard.png
  11. 0
      event_management_mail/static/description/icon.png
  12. 0
      event_management_mail/static/description/index.html
  13. 0
      event_management_mail/views/event_mail.xml

20
event_mail/README.rst → event_management_mail/README.rst

@ -1,6 +1,6 @@
============== ========================
Event Mail v10 Event Mail v10
============== ========================
Event mail adds the functionality to send email notification to the customer at the time of event order confirmation. Event mail adds the functionality to send email notification to the customer at the time of event order confirmation.
Features Features
@ -9,25 +9,15 @@ Features
* Default template for order confirmation. * Default template for order confirmation.
* Send notification email to customer when an event order is confirmed. * Send notification email to customer when an event order is confirmed.
License
=======
GNU LESSER GENERAL PUBLIC LICENSE, Version 3 (LGPLv3)
(http://www.gnu.org/licenses/agpl.html)
Bug Tracker
===========
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported.
Contributors Contributors
============ =======
* Avinash Nk <avinash@cybrosys.in> * Avinash Nk <avinash@cybrosys.in>
Maintainer Maintainer
========== =======
This module is maintained by Cybrosys Technologies. This module is maintained by Cybrosys Technologies.
For support and more information, please visit https://www.cybrosys.com For support and more information, please visit https://www.cybrosys.com

2
event_mail/__init__.py → event_management_mail/__init__.py

@ -2,7 +2,7 @@
################################################################################### ###################################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# Copyright (C) 2018-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Avinash Nk(<avinash@cybrosys.in>) # Author: Avinash Nk(<avinash@cybrosys.in>)
# #
# This program is free software: you can modify # This program is free software: you can modify

2
event_mail/__manifest__.py → event_management_mail/__manifest__.py

@ -2,7 +2,7 @@
################################################################################### ###################################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# Copyright (C) 2018-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Avinash Nk(<avinash@cybrosys.in>) # Author: Avinash Nk(<avinash@cybrosys.in>)
# #
# This program is free software: you can modify # This program is free software: you can modify

0
event_mail/data/event_mail_template.xml → event_management_mail/data/event_mail_template.xml

2
event_mail/models/__init__.py → event_management_mail/models/__init__.py

@ -2,7 +2,7 @@
################################################################################### ###################################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# Copyright (C) 2018-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Avinash Nk(<avinash@cybrosys.in>) # Author: Avinash Nk(<avinash@cybrosys.in>)
# #
# This program is free software: you can modify # This program is free software: you can modify

6
event_mail/models/event_mail.py → event_management_mail/models/event_mail.py

@ -2,7 +2,7 @@
################################################################################### ###################################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# Copyright (C) 2018-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Avinash Nk(<avinash@cybrosys.in>) # Author: Avinash Nk(<avinash@cybrosys.in>)
# #
# This program is free software: you can modify # This program is free software: you can modify
@ -33,7 +33,7 @@ class EventManagementMail(models.Model):
message loaded by default message loaded by default
""" """
self.ensure_one() self.ensure_one()
template = self.env.ref('event_mail.email_template_event', False) template = self.env.ref('event_management_mail.email_template_event', False)
compose_form = self.env.ref('mail.email_compose_message_wizard_form', False) compose_form = self.env.ref('mail.email_compose_message_wizard_form', False)
ctx = dict( ctx = dict(
default_model='event.management', default_model='event.management',
@ -42,7 +42,7 @@ class EventManagementMail(models.Model):
default_template_id=template and template.id or False, default_template_id=template and template.id or False,
default_composition_mode='comment', default_composition_mode='comment',
mark_invoice_as_sent=True, mark_invoice_as_sent=True,
custom_layout="event_mail.mail_template_event_confirmation" custom_layout="event_management_mail.mail_template_event_confirmation"
) )
return { return {
'name': _('Compose Email'), 'name': _('Compose Email'),

0
event_mail/static/description/banner.jpg → event_management_mail/static/description/banner.jpg

Before

Width:  |  Height:  |  Size: 79 KiB

After

Width:  |  Height:  |  Size: 79 KiB

0
event_mail/static/description/cybro_logo.png → event_management_mail/static/description/cybro_logo.png

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 50 KiB

0
event_mail/static/description/event_mail_button.png → event_management_mail/static/description/event_mail_button.png

Before

Width:  |  Height:  |  Size: 82 KiB

After

Width:  |  Height:  |  Size: 82 KiB

0
event_mail/static/description/event_mail_wizard.png → event_management_mail/static/description/event_mail_wizard.png

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 81 KiB

0
event_mail/static/src/img/icon.png → event_management_mail/static/description/icon.png

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB

0
event_mail/static/description/index.html → event_management_mail/static/description/index.html

0
event_mail/views/event_mail.xml → event_management_mail/views/event_mail.xml

Loading…
Cancel
Save