diff --git a/event_mail/README.rst b/event_management_mail/README.rst similarity index 61% rename from event_mail/README.rst rename to event_management_mail/README.rst index 844d1641a..2f4f0e5c1 100644 --- a/event_mail/README.rst +++ b/event_management_mail/README.rst @@ -1,6 +1,6 @@ -============== +======================== Event Mail v10 -============== +======================== Event mail adds the functionality to send email notification to the customer at the time of event order confirmation. Features @@ -9,25 +9,15 @@ Features * Default template for order confirmation. * 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 -============ +======= * Avinash Nk Maintainer -========== +======= 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 \ No newline at end of file diff --git a/event_mail/__init__.py b/event_management_mail/__init__.py similarity index 93% rename from event_mail/__init__.py rename to event_management_mail/__init__.py index ed7da4c8c..18b219312 100644 --- a/event_mail/__init__.py +++ b/event_management_mail/__init__.py @@ -2,7 +2,7 @@ ################################################################################### # # Cybrosys Technologies Pvt. Ltd. -# Copyright (C) 2018-TODAY Cybrosys Technologies(). +# Copyright (C) 2017-TODAY Cybrosys Technologies(). # Author: Avinash Nk() # # This program is free software: you can modify diff --git a/event_mail/__manifest__.py b/event_management_mail/__manifest__.py similarity index 96% rename from event_mail/__manifest__.py rename to event_management_mail/__manifest__.py index 62b402070..1ffcd9de7 100644 --- a/event_mail/__manifest__.py +++ b/event_management_mail/__manifest__.py @@ -2,7 +2,7 @@ ################################################################################### # # Cybrosys Technologies Pvt. Ltd. -# Copyright (C) 2018-TODAY Cybrosys Technologies(). +# Copyright (C) 2017-TODAY Cybrosys Technologies(). # Author: Avinash Nk() # # This program is free software: you can modify diff --git a/event_mail/data/event_mail_template.xml b/event_management_mail/data/event_mail_template.xml similarity index 100% rename from event_mail/data/event_mail_template.xml rename to event_management_mail/data/event_mail_template.xml diff --git a/event_mail/models/__init__.py b/event_management_mail/models/__init__.py similarity index 93% rename from event_mail/models/__init__.py rename to event_management_mail/models/__init__.py index e54269ead..e6aa2471f 100644 --- a/event_mail/models/__init__.py +++ b/event_management_mail/models/__init__.py @@ -2,7 +2,7 @@ ################################################################################### # # Cybrosys Technologies Pvt. Ltd. -# Copyright (C) 2018-TODAY Cybrosys Technologies(). +# Copyright (C) 2017-TODAY Cybrosys Technologies(). # Author: Avinash Nk() # # This program is free software: you can modify diff --git a/event_mail/models/event_mail.py b/event_management_mail/models/event_mail.py similarity index 91% rename from event_mail/models/event_mail.py rename to event_management_mail/models/event_mail.py index c9ba65c39..f0fbe6a35 100644 --- a/event_mail/models/event_mail.py +++ b/event_management_mail/models/event_mail.py @@ -2,7 +2,7 @@ ################################################################################### # # Cybrosys Technologies Pvt. Ltd. -# Copyright (C) 2018-TODAY Cybrosys Technologies(). +# Copyright (C) 2017-TODAY Cybrosys Technologies(). # Author: Avinash Nk() # # This program is free software: you can modify @@ -33,7 +33,7 @@ class EventManagementMail(models.Model): message loaded by default """ 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) ctx = dict( default_model='event.management', @@ -42,7 +42,7 @@ class EventManagementMail(models.Model): default_template_id=template and template.id or False, default_composition_mode='comment', mark_invoice_as_sent=True, - custom_layout="event_mail.mail_template_event_confirmation" + custom_layout="event_management_mail.mail_template_event_confirmation" ) return { 'name': _('Compose Email'), diff --git a/event_mail/static/description/banner.jpg b/event_management_mail/static/description/banner.jpg similarity index 100% rename from event_mail/static/description/banner.jpg rename to event_management_mail/static/description/banner.jpg diff --git a/event_mail/static/description/cybro_logo.png b/event_management_mail/static/description/cybro_logo.png similarity index 100% rename from event_mail/static/description/cybro_logo.png rename to event_management_mail/static/description/cybro_logo.png diff --git a/event_mail/static/description/event_mail_button.png b/event_management_mail/static/description/event_mail_button.png similarity index 100% rename from event_mail/static/description/event_mail_button.png rename to event_management_mail/static/description/event_mail_button.png diff --git a/event_mail/static/description/event_mail_wizard.png b/event_management_mail/static/description/event_mail_wizard.png similarity index 100% rename from event_mail/static/description/event_mail_wizard.png rename to event_management_mail/static/description/event_mail_wizard.png diff --git a/event_mail/static/src/img/icon.png b/event_management_mail/static/description/icon.png similarity index 100% rename from event_mail/static/src/img/icon.png rename to event_management_mail/static/description/icon.png diff --git a/event_mail/static/description/index.html b/event_management_mail/static/description/index.html similarity index 100% rename from event_mail/static/description/index.html rename to event_management_mail/static/description/index.html diff --git a/event_mail/views/event_mail.xml b/event_management_mail/views/event_mail.xml similarity index 100% rename from event_mail/views/event_mail.xml rename to event_management_mail/views/event_mail.xml