@ -0,0 +1,52 @@ |
|||
.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg |
|||
:target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html |
|||
:alt: License: LGPL-3 |
|||
|
|||
Odoo Advanced Chatter |
|||
===================== |
|||
* In this module, we are able to schedule log notes and send messages through chatter. |
|||
|
|||
Configuration |
|||
============= |
|||
* No additional configurations needed |
|||
|
|||
Company |
|||
------- |
|||
* `Cybrosys Techno Solutions <https://cybrosys.com/>`__ |
|||
|
|||
License |
|||
------- |
|||
General Public License, Version 3 (LGPL v3). |
|||
(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) |
|||
|
|||
Credits |
|||
------- |
|||
* Developers: |
|||
(V15) Anjhana A K, |
|||
(V16) Nihala K P, |
|||
(V17) Nihala K P, |
|||
Contact: odoo@cybrosys.com |
|||
|
|||
Contacts |
|||
-------- |
|||
* Mail Contact : odoo@cybrosys.com |
|||
* Website : https://cybrosys.com |
|||
|
|||
Bug Tracker |
|||
----------- |
|||
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. |
|||
|
|||
Maintainer |
|||
========== |
|||
|
|||
|
|||
This module is maintained by Cybrosys Technologies. |
|||
|
|||
For support and more information, please visit `Our Website <https://cybrosys.com/>`__ |
|||
|
|||
.. image:: https://cybrosys.com/images/logo.png |
|||
:target: https://cybrosys.com |
|||
|
|||
Further information |
|||
=================== |
|||
HTML Description: `<static/description/index.html>`__ |
@ -0,0 +1,23 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Anjhana A K (odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU LESSER |
|||
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE |
|||
# (LGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
from . import models |
|||
from . import wizard |
@ -0,0 +1,57 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Anjhana A K (odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU LESSER |
|||
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE |
|||
# (LGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
{ |
|||
"name": "Odoo Advanced Chatter", |
|||
"version": "15.0.1.0.0", |
|||
"category": "Discuss", |
|||
"summary": "Schedule Log note and Send Message in Chatter", |
|||
"description": """We have the capability to schedule log notes and send |
|||
messages within Chatter.Additionally, followers can be managed both from |
|||
the followers list and directly within the Schedule form.""", |
|||
"author": "Cybrosys Techno Solutions", |
|||
"company": "Cybrosys Techno Solutions", |
|||
"maintainer": "Cybrosys Techno Solutions", |
|||
"website": "https://www.cybrosys.com", |
|||
"depends": ["web", "mail"], |
|||
"data": [ |
|||
"security/ir.model.access.csv", |
|||
"data/ir_cron_data.xml", |
|||
"views/schedule_log_views.xml", |
|||
'wizard/mail_wizard_recipients_views.xml' |
|||
], |
|||
"assets": { |
|||
"web.assets_backend": [ |
|||
"odoo_advanced_chatter/static/src/js/composer.js", |
|||
"odoo_advanced_chatter/static/src/js/follower.js", |
|||
], |
|||
"web.assets_qweb": [ |
|||
"odoo_advanced_chatter/static/src/xml/composer_template.xml", |
|||
"odoo_advanced_chatter/static/src/xml/follower_template.xml", |
|||
'odoo_advanced_chatter/static/src/xml/chatter.xml' |
|||
] |
|||
}, |
|||
"images": ["static/description/banner.jpg"], |
|||
"license": "LGPL-3", |
|||
"installable": True, |
|||
"auto_install": False, |
|||
"application": False, |
|||
} |
@ -0,0 +1,16 @@ |
|||
<?xml version="1.0" encoding = "utf-8"?> |
|||
<odoo> |
|||
<!-- Create scheduled action for scheduled log notes and messages --> |
|||
<data noupdate="1"> |
|||
<record id="ir_cron_scheduler_scheduler_log" model="ir.cron"> |
|||
<field name="name">Schedule Log Note</field> |
|||
<field name="model_id" ref="model_schedule_log"/> |
|||
<field name="state">code</field> |
|||
<field name="code">model.schedule()</field> |
|||
<field name="user_id" ref="base.user_root"/> |
|||
<field name="interval_number">1</field> |
|||
<field name="interval_type">minutes</field> |
|||
<field name="numbercall">-1</field> |
|||
</record> |
|||
</data> |
|||
</odoo> |
@ -0,0 +1,6 @@ |
|||
## Module <odoo_advanced_chatter> |
|||
|
|||
#### 06.08.2024 |
|||
#### Version 15.0.1.0.0 |
|||
#### ADD |
|||
- Initial Commit for Odoo Advanced Chatter |
@ -0,0 +1,23 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Anjhana A K (odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU LESSER |
|||
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE |
|||
# (LGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
from . import mail_message |
|||
from . import schedule_log |
@ -0,0 +1,51 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
|||
# |
|||
# You can modify it under the terms of the GNU LESSER |
|||
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE |
|||
# (LGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
from odoo import api, models |
|||
|
|||
|
|||
class MailMessage(models.Model): |
|||
"""This class inherits from the `mail.message` model and extends its functionality |
|||
to customize the 'reply-to' email address based on specific conditions.""" |
|||
_inherit = "mail.message" |
|||
|
|||
@api.model |
|||
def _get_reply_to(self, values): |
|||
""" Return a specific reply_to for the document """ |
|||
model = values.get('model', self._context.get('default_model')) |
|||
res_id = values.get('res_id', |
|||
self._context.get('default_res_id')) or False |
|||
email_from = values.get('email_from') |
|||
reply_to_id = self.env['ir.config_parameter'].get_param('reply_to') |
|||
author1 = self.env['res.users'].browse(int(reply_to_id)) |
|||
self.env['ir.config_parameter'].set_param('reply_to', self.env.user.id) |
|||
email_from1 = author1.email_formatted |
|||
message_type = values.get('message_type') |
|||
records = None |
|||
if self.is_thread_message({'model': model, 'res_id': res_id, |
|||
'message_type': message_type}): |
|||
records = self.env[model].browse([res_id]) |
|||
else: |
|||
records = self.env[model] if model else self.env['mail.thread'] |
|||
if author1.id == self.env.user: |
|||
return records._notify_get_reply_to(default=email_from)[res_id] |
|||
else: |
|||
return records._notify_get_reply_to(default=email_from1)[res_id] |
@ -0,0 +1,153 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Anjhana A K (odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU LESSER |
|||
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE |
|||
# (LGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
import datetime |
|||
from odoo import fields, models |
|||
|
|||
|
|||
class ScheduleLog(models.Model): |
|||
"""To schedule the log note""" |
|||
_name = "schedule.log" |
|||
_description = "Schedule log note in chatter" |
|||
|
|||
body = fields.Html(string="Body", help="Content of the log", required="1") |
|||
partner_ids = fields.Many2many( |
|||
"res.partner", string="Recipients", help="To whom the log is Mentioned") |
|||
time = fields.Datetime(string="Scheduled Time", required="1", |
|||
help="Time at which the log is scheduled") |
|||
attachment_ids = fields.Many2many( |
|||
comodel_name="ir.attachment", string="Attachments", help="attachments") |
|||
is_log = fields.Boolean(string="Is Log", default=False, |
|||
help="to check whether it is log note or" |
|||
" send messages",) |
|||
model = fields.Char(string="Related Model", help="Related Model") |
|||
model_reference = fields.Integer(string="Related Document Id") |
|||
status = fields.Selection( |
|||
[("draft", "Schedule"), ("post", "Post")], |
|||
string="Status", |
|||
default="draft", |
|||
help="status of the message", |
|||
) |
|||
|
|||
def action_save(self): |
|||
"""Display notification when messages are scheduled""" |
|||
if self.body: |
|||
current_time = fields.Datetime.now().replace(second=0) |
|||
scheduled_time = fields.Datetime.from_string(self.time).replace( |
|||
second=0) |
|||
time_difference = abs( |
|||
(current_time - scheduled_time).total_seconds()) |
|||
acceptable_difference = 5 |
|||
if time_difference <= acceptable_difference: |
|||
user_id = self.env.user.commercial_partner_id |
|||
partner_ids = self.partner_ids.ids |
|||
if user_id.id in self.partner_ids.ids: |
|||
partner_ids.remove(user_id.id) |
|||
model = self.env[self.model].sudo().browse(self.model_reference) |
|||
if not self.is_log: |
|||
message = model.message_post( |
|||
author_id=self.create_uid.partner_id.id, |
|||
email_from=self.create_uid.partner_id.email, |
|||
body=self.body, |
|||
attachment_ids=self.attachment_ids.ids, |
|||
) |
|||
for mail in message.mail_ids: |
|||
mail.send() |
|||
self.status = "post" |
|||
else: |
|||
message = model.message_post( |
|||
author_id=self.create_uid.partner_id.id, |
|||
email_from=self.create_uid.partner_id.email, |
|||
body=self.body, |
|||
partner_ids=partner_ids, |
|||
attachment_ids=self.attachment_ids.ids, |
|||
message_type="comment", |
|||
subtype_xmlid="mail.mt_comment", |
|||
notify_by_email=True |
|||
) |
|||
message.notification_ids = [fields.Command.clear()] |
|||
message.notification_ids = [ |
|||
fields.Command.create( |
|||
{"res_partner_id": pid, |
|||
"notification_type": "email" if self.is_log |
|||
else "inbox"}) |
|||
for pid in partner_ids |
|||
] |
|||
self.status = "post" |
|||
else: |
|||
return { |
|||
"type": "ir.actions.client", |
|||
"tag": "display_notification", |
|||
"params": { |
|||
"title": "Title", |
|||
"message": "Message scheduled successfully.", |
|||
"sticky": True, |
|||
"next": {"type": "ir.actions.act_window_close"}, |
|||
}, |
|||
} |
|||
|
|||
def schedule(self): |
|||
"""To schedule the log note""" |
|||
date = datetime.datetime.now() |
|||
date_sec = date.replace(second=0).strftime("%Y-%m-%d %H:%M:%S") |
|||
date_max = date.replace(second=59).strftime("%Y-%m-%d %H:%M:%S") |
|||
scheduled_lognotes = self.env["schedule.log"].search( |
|||
[ |
|||
("time", ">=", date_sec), |
|||
("time", "<=", date_max), |
|||
("status", "=", "draft"), |
|||
] |
|||
) |
|||
for rec in scheduled_lognotes: |
|||
user_id = rec.env.user.commercial_partner_id |
|||
partner_ids = rec.partner_ids.ids |
|||
if user_id.id in rec.partner_ids.ids: |
|||
partner_ids.remove(user_id.id) |
|||
model = self.env[rec.model].sudo().browse(rec.model_reference) |
|||
if not rec.is_log: |
|||
message = model.message_post( |
|||
author_id=rec.create_uid.partner_id.id, |
|||
email_from=rec.create_uid.partner_id.email, |
|||
body=rec.body, |
|||
attachment_ids=rec.attachment_ids.ids, |
|||
) |
|||
for mail in message.mail_ids: |
|||
mail.send() |
|||
rec.status = "post" |
|||
else: |
|||
message = model.message_post( |
|||
author_id=rec.create_uid.partner_id.id, |
|||
email_from=rec.create_uid.partner_id.email, |
|||
body=rec.body, |
|||
partner_ids=partner_ids, |
|||
attachment_ids=rec.attachment_ids.ids, |
|||
message_type="comment", |
|||
subtype_xmlid="mail.mt_comment", |
|||
) |
|||
message.notification_ids = [fields.Command.clear()] |
|||
message.notification_ids = [ |
|||
fields.Command.create( |
|||
{"res_partner_id": pid, |
|||
"notification_type": "email" if self.is_log |
|||
else "inbox"}) |
|||
for pid in partner_ids |
|||
] |
|||
rec.status = "post" |
|
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 310 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 576 B |
After Width: | Height: | Size: 733 B |
After Width: | Height: | Size: 911 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 673 B |
After Width: | Height: | Size: 878 B |
After Width: | Height: | Size: 653 B |
After Width: | Height: | Size: 905 B |
After Width: | Height: | Size: 839 B |
After Width: | Height: | Size: 427 B |
After Width: | Height: | Size: 627 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 988 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 589 B |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 967 B |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 538 KiB |
After Width: | Height: | Size: 59 KiB |
After Width: | Height: | Size: 65 KiB |
After Width: | Height: | Size: 62 KiB |
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 59 KiB |
After Width: | Height: | Size: 141 KiB |
After Width: | Height: | Size: 127 KiB |
After Width: | Height: | Size: 81 KiB |
After Width: | Height: | Size: 61 KiB |
After Width: | Height: | Size: 89 KiB |
After Width: | Height: | Size: 71 KiB |
After Width: | Height: | Size: 141 KiB |
After Width: | Height: | Size: 169 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 148 KiB |
After Width: | Height: | Size: 138 KiB |
After Width: | Height: | Size: 147 KiB |
After Width: | Height: | Size: 144 KiB |
After Width: | Height: | Size: 158 KiB |
After Width: | Height: | Size: 190 KiB |
After Width: | Height: | Size: 153 KiB |
After Width: | Height: | Size: 513 KiB |
After Width: | Height: | Size: 82 KiB |
After Width: | Height: | Size: 8.2 KiB |
@ -0,0 +1,637 @@ |
|||
<div style="background-color: #714B67; height: 810px; width: 100%; padding: 15px; position: relative;"> |
|||
<!-- TITLE BAR --> |
|||
<div class="d-flex align-items-center justify-content-between" |
|||
style="border-bottom: 1px solid #875A7B; padding: 15px; display: flex; justify-content: space-between; align-items: center;"> |
|||
<img src="assets/misc/cybrosys-logo.png" width="42" height="42" |
|||
style="width: 42px; height: 42px;"/> |
|||
<div> |
|||
<div style="color: #7C7BAD; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: bold; background-color: white; display: inline-block; padding: 3px 10px; border-radius: 50px;" |
|||
class="mr-2"> |
|||
<i class="fa fa-check mr-1"></i>Community |
|||
</div> |
|||
<div style="color: #875A7B; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: bold; background-color: white; display: inline-block; padding: 3px 10px; border-radius: 50px;" |
|||
class="mr-2"> |
|||
<i class="fa fa-check mr-1"></i>Enterprise |
|||
</div> |
|||
<div style="color: #017E84; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: bold; background-color: white; display: inline-block; padding: 3px 10px; border-radius: 50px;" |
|||
class="mr-2"> |
|||
<i class="fa fa-check mr-1"></i>Odoo.sh |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- END OF TITLE BAR --> |
|||
<div class="container"> |
|||
<div class="row"> |
|||
<div class="col-sm-12 col-md-12 col-lg-12"> |
|||
<!-- APP HERO --> |
|||
<h1 style="color: #FFFFFF; font-weight: bolder; font-size: 50px; text-align: center; margin-top: 50px;"> |
|||
Odoo Advanced Chatter</h1> |
|||
<p style="color:#FFFFFF; padding: 8px 15px; text-align: center; font-size: 24px;"> |
|||
In This Module, We Are Able To Schedule Log Notes And Send |
|||
Messages Through Chatter.</p> |
|||
<!-- END OF APP HERO --> |
|||
<img src="assets/screenshots/v15-hero.gif" |
|||
class="img-responsive" |
|||
style="width: 100%; margin-left: auto; margin-right: auto;"/> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- NAVIGATION SECTION --> |
|||
<div class="d-flex align-items-center" |
|||
style="border-bottom: 2px solid #714B67; padding: 15px 0px; margin-top: 300px;"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/compass.png"/> |
|||
</div> |
|||
<h2 class="mt-2" |
|||
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
|||
Explore This Module</h2> |
|||
</div> |
|||
<div class="row my-4" style="font-family: 'Montserrat', sans-serif;"> |
|||
<div class="col-sm-12 col-md-6 my-3"> |
|||
<a href="#overview"> |
|||
<div class="d-flex justify-content-between align-items-center" |
|||
style="background-color: #f5f5f5; padding: 30px; width: 100%;"> |
|||
<div> |
|||
<span style="color: #714B67; font-size: 24px; font-weight: 500; display: block;">Overview</span> |
|||
<span style="color: #714B67; font-size: 16px; font-weight: 400; color:#282F33; display: block;">Learn more about this module</span> |
|||
</div> |
|||
<img src="assets/misc/right-arrow.png" width="36" height="36"/> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-sm-12 col-md-6 my-3"> |
|||
<a href="#features"> |
|||
<div class="d-flex justify-content-between align-items-center" |
|||
style="background-color: #f5f5f5; padding: 30px; width: 100%;"> |
|||
<div> |
|||
<span style="color: #714B67; font-size: 24px; font-weight: 500; display: block;">Features</span> |
|||
<span style="color: #714B67; font-size: 16px; font-weight: 400; color:#282F33; display: block;">View features of this module</span> |
|||
</div> |
|||
<img src="assets/misc/right-arrow.png" width="36" height="36"/> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-sm-12 col-md-6 my-3"> |
|||
<a href="#screenshots"> |
|||
<div class="d-flex justify-content-between align-items-center" |
|||
style="background-color: #f5f5f5; padding: 30px; width: 100%;"> |
|||
<div> |
|||
<span style="color: #714B67; font-size: 24px; font-weight: 500; display: block;">Screenshots</span> |
|||
<span style="color: #714B67; font-size: 16px; font-weight: 400; color:#282F33; display: block;">View screenshots for this module</span> |
|||
</div> |
|||
<img src="assets/misc/right-arrow.png" width="36" height="36"/> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
<!-- END OF NAVIGATION SECTION --> |
|||
|
|||
<!-- OVERVIEW SECTION --> |
|||
<div class="d-flex align-items-center" |
|||
style="border-bottom: 2px solid #714B67; padding: 15px 0px;" id="overview"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/pie-chart.png"/> |
|||
</div> |
|||
<h2 class="mt-2" |
|||
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
|||
Overview</h2> |
|||
</div> |
|||
<div class="row" |
|||
style="font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 14px; line-height: 200%;"> |
|||
<div class="col-sm-12 py-4"> |
|||
We will get new features which will make our working easily. |
|||
</div> |
|||
</div> |
|||
<!-- END OF OVERVIEW SECTION --> |
|||
|
|||
<!-- FEATURES SECTION --> |
|||
<div class="d-flex align-items-center" |
|||
style="border-bottom: 2px solid #714B67; padding: 15px 0px;" id="features"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/features.png"/> |
|||
</div> |
|||
<h2 class="mt-2" |
|||
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
|||
Features |
|||
</h2> |
|||
</div> |
|||
<div class="row" |
|||
style="font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 14px; line-height: 200%;"> |
|||
<div class="col-sm-12 col-md-6"> |
|||
<div class="d-flex align-items-center" |
|||
style="margin-top: 30px; margin-bottom: 30px"> |
|||
<img src="assets/misc/check-box.png" class="mr-2"/> |
|||
<span style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">We can schedule the Log note and Messages</span> |
|||
</div> |
|||
<div class="d-flex align-items-center" |
|||
style="margin-top: 30px; margin-bottom: 30px"> |
|||
<img src="assets/misc/check-box.png" class="mr-2"/> |
|||
<span style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">We can manage Recipients from the follower's list </span> |
|||
</div> |
|||
<div class="d-flex align-items-center" |
|||
style="margin-top: 30px; margin-bottom: 30px"> |
|||
<img src="assets/misc/check-box.png" class="mr-2"/> |
|||
<span style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">We can manage Recipients in the Reply Mail. </span> |
|||
</div> |
|||
|
|||
|
|||
</div> |
|||
</div> |
|||
<!-- END OF FEATURES SECTION --> |
|||
|
|||
<!-- SCREENSHOTS SECTION --> |
|||
<div class="d-flex align-items-center" |
|||
style="border-bottom: 2px solid #714B67; padding: 15px 0px;" |
|||
id="screenshots"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/pictures.png"/> |
|||
</div> |
|||
<h2 class="mt-2" |
|||
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
|||
Screenshots |
|||
</h2> |
|||
</div> |
|||
<div class="row"> |
|||
<div class="col-sm-12"> |
|||
|
|||
<div style="display: block; margin: 30px auto;"> |
|||
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
|||
An icon has been added next to the attachment icon for |
|||
scheduling messages. |
|||
</h3> |
|||
<img src="assets/screenshots/screenshot1.png" class="img-thumbnail"> |
|||
</div> |
|||
|
|||
<div style="display: block; margin: 30px auto;"> |
|||
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
|||
We have the capability to schedule messages and choose |
|||
recipients. |
|||
</h3> |
|||
|
|||
<img src="assets/screenshots/screenshot2.png" class="img-thumbnail"> |
|||
</div> |
|||
|
|||
<div style="display: block; margin: 30px auto;"> |
|||
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
|||
When the message is scheduled, we will receive a notification |
|||
confirming that the message has been |
|||
successfully scheduled. |
|||
</h3> |
|||
<img src="assets/screenshots/screenshot3.png" class="img-thumbnail"> |
|||
</div> |
|||
|
|||
<div style="display: block; margin: 30px auto;"> |
|||
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
|||
|
|||
Here, we can observe that the message has been sent at the |
|||
scheduled time, and the recipients are the |
|||
same as those selected in the wizard. |
|||
</h3> |
|||
<img src="assets/screenshots/screenshot4.png" class="img-thumbnail"> |
|||
</div> |
|||
|
|||
<div style="display: block; margin: 30px auto;"> |
|||
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
|||
When clicking the icon within the log note, we can schedule the |
|||
log note for future action. |
|||
</h3> |
|||
<img src="assets/screenshots/screenshot5.png" class="img-thumbnail"> |
|||
<img src="assets/screenshots/screenshot6.png" class="img-thumbnail"> |
|||
</div> |
|||
|
|||
|
|||
<div style="display: block; margin: 30px auto;"> |
|||
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
|||
The scheduled log note can be viewed here. |
|||
</h3> |
|||
<img src="assets/screenshots/screenshot7.png" class="img-thumbnail"> |
|||
</div> |
|||
|
|||
<div style="display: block; margin: 30px auto;"> |
|||
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
|||
|
|||
Here, we have the option to manage followers. If we prefer not |
|||
to notify all followers, we can customize |
|||
the notification settings accordingly. |
|||
</h3> |
|||
<img src="assets/screenshots/screenshot8.png" class="img-thumbnail"> |
|||
</div> |
|||
<div style="display: block; margin: 30px auto;"> |
|||
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
|||
In the recipient list, only the selected followers are visible. |
|||
</h3> |
|||
<img src="assets/screenshots/screenshot9.png" class="img-thumbnail"> |
|||
</div> |
|||
<div style="display: block; margin: 30px auto;"> |
|||
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
|||
The message is only sent to the recipients listed in the |
|||
recipient list. |
|||
</h3> |
|||
<img src="assets/screenshots/screenshot10.png" |
|||
class="img-thumbnail"> |
|||
</div> |
|||
<div style="display: block; margin: 30px auto;"> |
|||
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
|||
Added new icon in the chatter to select the recipient to which |
|||
the reply mail is sent. |
|||
</h3> |
|||
<img src="assets/screenshots/11.png" class="img-thumbnail"> |
|||
</div> |
|||
<div style="display: block; margin: 30px auto;"> |
|||
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
|||
A wizard is opened to select the recipient, After selecting the |
|||
mail we can sent the mail. |
|||
</h3> |
|||
<img src="assets/screenshots/12.png" class="img-thumbnail"> |
|||
</div> |
|||
<div style="display: block; margin: 30px auto;"> |
|||
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
|||
Navigate to Settings -> Technical -> Messages. Here, you can |
|||
view the messages you have sent. When you open a message, the |
|||
recipient you selected will appear in the reply-to field. |
|||
</h3> |
|||
<img src="assets/screenshots/13.png" class="img-thumbnail"> |
|||
</div> |
|||
|
|||
|
|||
</div> |
|||
</div> |
|||
|
|||
<!-- RELATED PRODUCTS --> |
|||
<div class="d-flex align-items-center" |
|||
style="border-bottom: 2px solid #714B67; padding: 15px 0px;"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/categories.png"/> |
|||
</div> |
|||
<h2 class="mt-2" |
|||
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
|||
Related Products</h2> |
|||
</div> |
|||
<div class="row"> |
|||
<div class="col-sm-12"> |
|||
<div id="demo1" class="row carousel slide" data-ride="carousel"> |
|||
<!-- The slideshow --> |
|||
<div class="carousel-inner" style="padding: 30px;"> |
|||
<div class="carousel-item" style="min-height: 198.656px;"> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
|||
style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/auto_database_backup/" |
|||
target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-radius: 0px;" |
|||
src="assets/modules/1.gif"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
|||
style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/hide_menu_user/#" |
|||
target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-radius: 0px;" |
|||
src="assets/modules/2.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
|||
style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/odoo_dynamic_dashboard/" |
|||
target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-radius: 0px;" |
|||
src="assets/modules/3.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
<div class="carousel-item active" |
|||
style="min-height: 198.656px;"> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
|||
style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/whatsapp_redirect/" |
|||
target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-radius: 0px;" |
|||
src="assets/modules/4.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
|||
style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/field_timepicker/" |
|||
target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-radius: 0px;" |
|||
src="assets/modules/5.jpg"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
|||
style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/custom_list_view/#" |
|||
target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-radius: 0px;" |
|||
src="assets/modules/6.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- Left and right controls --> |
|||
<a class="carousel-control-prev" href="#demo1" data-slide="prev" |
|||
style="width:35px; color:#000"> <span |
|||
class="carousel-control-prev-icon"><i |
|||
class="fa fa-chevron-left" |
|||
style="font-size:24px"></i></span> |
|||
</a> <a class="carousel-control-next" href="#demo1" |
|||
data-slide="next" style="width:35px; color:#000"> |
|||
<span class="carousel-control-next-icon"><i |
|||
class="fa fa-chevron-right" |
|||
style="font-size:24px"></i></span></a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- END OF RELATED PRODUCTS --> |
|||
|
|||
<!-- OUR SERVICES --> |
|||
<div class="d-flex align-items-center" |
|||
style="border-bottom: 2px solid #714B67; padding: 15px 0px;"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/star.png"/> |
|||
</div> |
|||
<h2 class="mt-2" |
|||
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
|||
Our Services</h2> |
|||
</div> |
|||
<div class="container my-5"> |
|||
<div class="row"> |
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #1dd1a1 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/cogs.png" class="img-responsive" |
|||
height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" |
|||
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo Customization</h6> |
|||
</div> |
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #ff6b6b !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/wrench.png" class="img-responsive" |
|||
height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" |
|||
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo Implementation</h6> |
|||
</div> |
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #6462CD !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/lifebuoy.png" class="img-responsive" |
|||
height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" |
|||
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo Support</h6> |
|||
</div> |
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #ffa801 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/user.png" class="img-responsive" |
|||
height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" |
|||
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Hire Odoo Developer</h6> |
|||
</div> |
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #54a0ff !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/puzzle.png" class="img-responsive" |
|||
height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" |
|||
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo Integration</h6> |
|||
</div> |
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #6d7680 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/update.png" class="img-responsive" |
|||
height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" |
|||
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo Migration</h6> |
|||
</div> |
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #786fa6 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/consultation.png" class="img-responsive" |
|||
height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" |
|||
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo Consultancy</h6> |
|||
</div> |
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #f8a5c2 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/training.png" class="img-responsive" |
|||
height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" |
|||
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo Implementation</h6> |
|||
</div> |
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #e6be26 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/license.png" class="img-responsive" |
|||
height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" |
|||
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo Licensing Consultancy</h6> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- END OF OUR SERVICES --> |
|||
|
|||
<!-- OUR INDUSTRIES --> |
|||
<div class="d-flex align-items-center" |
|||
style="border-bottom: 2px solid #714B67; padding: 15px 0px;"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/corporate.png"/> |
|||
</div> |
|||
<h2 class="mt-2" |
|||
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
|||
Our Industries</h2> |
|||
</div> |
|||
<div class="container my-5"> |
|||
<div class="row"> |
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/trading-black.png" |
|||
class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Trading</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Easily procure and sell your products</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/pos-black.png" |
|||
class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
POS</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Easy configuration and convivial experience</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/education-black.png" |
|||
class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Education</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
A platform for educational management</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/manufacturing-black.png" |
|||
class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Manufacturing</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Plan, track and schedule your operations</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/ecom-black.png" |
|||
class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
E-commerce & Website</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Mobile friendly, awe-inspiring product pages</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/service-black.png" |
|||
class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Service Management</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Keep track of services and invoice</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/restaurant-black.png" |
|||
class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Restaurant</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Run your bar or restaurant methodically</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/hotel-black.png" |
|||
class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Hotel Management</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
An all-inclusive hotel management application</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- END OF OUR INDUSTRIES --> |
|||
|
|||
<!-- SUPPORT --> |
|||
<div class="d-flex align-items-center" |
|||
style="border-bottom: 2px solid #714B67; padding: 15px 0px;"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/customer-support.png"/> |
|||
</div> |
|||
<h2 class="mt-2" |
|||
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
|||
Support</h2> |
|||
</div> |
|||
<div class="container mt-5"> |
|||
<div class="row"> |
|||
<div class="col-sm-12 col-md-6"> |
|||
<div style="background-color: #F6F8F9; padding: 30px; display: flex; align-items: center;"> |
|||
<div class="mr-4 d-flex justify-content-center align-items-center" |
|||
style="background-color: #714B67; display: inline-block; height: 70px; width: 70px; display: flex; align-items: center; justify-content: center;"> |
|||
<img src="assets/misc/support.png" height="48" width="48" |
|||
style="width: 42px; height: 42px;"/> |
|||
</div> |
|||
<div> |
|||
<h4>Need Help?</h4> |
|||
<p style="line-height: 100%;">Got questions or need help? |
|||
Get in touch.</p> |
|||
<a href="mailto:odoo@cybrosys.com"> |
|||
<p style="font-weight: 400; font-size: 28px; line-height: 80%; color: #714B67;"> |
|||
odoo@cybrosys.com</p> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-sm-12 col-md-6"> |
|||
<div style="background-color: #F6F8F9; padding: 30px; display: flex; align-items: center;"> |
|||
<div class="mr-4 d-flex justify-content-center align-items-center" |
|||
style="background-color: #2AC44D; display: inline-block; height: 70px; width: 70px; display: flex; align-items: center; justify-content: center;"> |
|||
<img src="assets/misc/whatsapp.png" height="52" width="52" |
|||
style="width: 52px; height: 52px;"/> |
|||
</div> |
|||
<div> |
|||
<h4>WhatsApp</h4> |
|||
<p style="line-height: 100%;">Say hi to us on WhatsApp!</p> |
|||
<a href="https://api.whatsapp.com/send?phone=918606827707"> |
|||
<p style="font-weight: 400; font-size: 28px; line-height: 80%; color: #714B67;"> |
|||
+91 86068 27707</p> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="row"> |
|||
<div class="col-sm-12 my-5 d-flex justify-content-center align-items-center"> |
|||
<img src="assets/misc/logo.png" width="144" height="31" |
|||
style="width:144px; height: 31px; margin-top: 40px;"/> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- END OF SUPPORT --> |
@ -0,0 +1,90 @@ |
|||
/** @odoo-module **/ |
|||
import { patch } from 'web.utils'; |
|||
import { Composer } from '@mail/components/composer/composer'; |
|||
import { _t } from 'web.core'; |
|||
import { useService } from "@web/core/utils/hooks"; |
|||
|
|||
|
|||
patch(Composer.prototype, 'odoo_advanced_chatter/static/src/js/schedule_mail.js', { |
|||
setup() { |
|||
this._super(); |
|||
this.env.services.rpc({ |
|||
model: 'mail.wizard.recipient', |
|||
method: 'get_user', |
|||
args: [this.env.session.user_id[0]] |
|||
}); |
|||
}, |
|||
async _scheduleLogNote(){ |
|||
//----To manage schedule note
|
|||
const composer = this.composerView.composer |
|||
const postData = this.composerView._getMessageData() |
|||
const recipient = composer.check |
|||
var followers_list=[] |
|||
$.each(composer.activeThread.followers,(index,follower) => {followers_list.push(follower.partner.id)}); |
|||
if (recipient){ |
|||
recipient.forEach(item=>{ |
|||
const index = followers_list.indexOf(item); |
|||
if (index !== -1) { |
|||
followers_list.splice(index, 1); |
|||
} |
|||
}) |
|||
} |
|||
|
|||
if (!composer.isLog){ |
|||
const action = { |
|||
type: 'ir.actions.act_window', |
|||
res_model:'schedule.log', |
|||
domain: [], |
|||
views: [ [false, "form"],[false, "list"],], |
|||
name: this.env._t("Schedule Message"), |
|||
target: 'new', |
|||
context: { |
|||
default_body:postData.body, |
|||
default_attachment_ids:postData.attachment_ids, |
|||
default_is_log:1, |
|||
default_partner_ids:followers_list, |
|||
default_model:composer.thread.model, |
|||
default_model_reference:composer.thread.id, |
|||
}, |
|||
}; |
|||
await this.env.bus.trigger('do-action', { action }); |
|||
} |
|||
else{ |
|||
const action = { |
|||
type: 'ir.actions.act_window', |
|||
res_model:'schedule.log', |
|||
domain: [], |
|||
views: [ [false, "form"],[false, "list"],], |
|||
name: this.env._t("Schedule Log"), |
|||
target: 'new', |
|||
context: { |
|||
default_body:postData.body, |
|||
default_attachment_ids:postData.attachment_ids, |
|||
default_partner_ids:followers_list, |
|||
default_is_log:0, |
|||
default_model:composer.thread.model, |
|||
default_model_reference:composer.thread.id, |
|||
}, |
|||
}; |
|||
await this.env.bus.trigger('do-action', { action }); |
|||
} |
|||
composer._reset(); |
|||
this.composerView.delete() |
|||
}, |
|||
replyTo() { |
|||
//---To manage recipients in the followers list
|
|||
var userId = this.env.session.user_id[0] |
|||
const action = { |
|||
type: "ir.actions.act_window", |
|||
res_model: "mail.wizard.recipient", |
|||
view_mode: "form", |
|||
views: [[false, "form"]], |
|||
name: _t("Reply To"), |
|||
target: "new", |
|||
context: { |
|||
default_partner_id:userId, |
|||
}, |
|||
} |
|||
this.env.bus.trigger('do-action', { action }) |
|||
} |
|||
}) |
@ -0,0 +1,18 @@ |
|||
/** @odoo-module **/ |
|||
import { patch } from 'web.utils'; |
|||
import { Follower } from '@mail/components/follower/follower'; |
|||
const message_list = []; |
|||
patch(Follower.prototype, 'odoo_advanced_chatter/static/src/js/schedule_mail.js', { |
|||
// Method to handle the checkbox click event
|
|||
Check(event) { |
|||
const followerId = this.follower.partner.id; |
|||
const index = message_list.indexOf(followerId); |
|||
if (index !== -1) { |
|||
message_list.splice(index, 1); |
|||
} else { |
|||
message_list.push(followerId); |
|||
} |
|||
const shouldBeChecked = message_list.length > 0; |
|||
this.follower.followedThread.composer.check = shouldBeChecked ? message_list.slice() : false; |
|||
} |
|||
}); |
@ -0,0 +1,15 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<templates xml:space="preserve"> |
|||
<!-- Extending the chatter to add the reply icon--> |
|||
<t name="chatter_recipients" t-inherit="mail.Composer" |
|||
t-inherit-mode="extension" owl="1"> |
|||
<xpath expr="//small[hasclass('o_Composer_followers')]" |
|||
position="after"> |
|||
<button title="Reply To" type="button" |
|||
class="btn btn-primary btn-sm am-control-btn-left oe_button_control_new" |
|||
t-on-click="replyTo"> |
|||
<i class="fa fa-reply"/> |
|||
</button> |
|||
</xpath> |
|||
</t> |
|||
</templates> |
@ -0,0 +1,12 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<templates xml:space="preserve"> |
|||
<!--Added Mail icon in composer--> |
|||
<t t-inherit="mail.Composer" t-inherit-mode="extension"> |
|||
<xpath expr="//*[hasclass('o_Composer_buttonAttachment')]" position="after"> |
|||
<button class="o_Composer_button o_Composer_buttonAttachment o_Composer_toolButton btn btn-light fa fa-envelope-o border-0 rounded-pill" |
|||
t-att-class="{ 'o-isDeviceSmall': messaging.device.isSmall }" |
|||
t-attf-class="{{ composerView.messageViewInEditing ? 'my-1' : 'mx-1' }}" |
|||
title="Schedule Mail" aria-label="Schedule Log" type="button" t-on-click="_scheduleLogNote"/> |
|||
</xpath> |
|||
</t> |
|||
</templates> |
@ -0,0 +1,10 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<templates xml:space="preserve"> |
|||
<!--Added checkbox icon in followerlist--> |
|||
<t t-name="mail.followCheck" t-inherit="mail.Follower" t-inherit-mode="extension"> |
|||
<xpath expr="//*[hasclass('o_Follower_editButton')]" position="after"> |
|||
<input type="checkbox" id="oe_import_tracking" checked="checked" title="Send Notification" |
|||
t-ref="check" t-on-click.stop="Check"/> |
|||
</xpath> |
|||
</t> |
|||
</templates> |
@ -0,0 +1,31 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<!-- Schedule Log Note Form View --> |
|||
<record id="schedule_log_view_form" model="ir.ui.view"> |
|||
<field name="name">schedule.log.view.form</field> |
|||
<field name="model">schedule.log</field> |
|||
<field name="arch" type="xml"> |
|||
<form> |
|||
<sheet> |
|||
<group> |
|||
<field name="body"/> |
|||
<field name="partner_ids" widget="many2many_tags" attrs="{'invisible':[('is_log','=', False)]}"/> |
|||
<field name="is_log" invisible="1" /> |
|||
<field name="time"/> |
|||
<field name="attachment_ids" widget="many2many_binary" string="Attach a file" nolabel="1" |
|||
colspan="2" can_create="true" can_write="true"/> |
|||
</group> |
|||
<footer> |
|||
<button name="action_save" type="object" string="Schedule" class="oe_highlight"/> |
|||
<button string="cancel" special="cancel" class="btn-primary"/> |
|||
</footer> |
|||
</sheet> |
|||
</form> |
|||
</field> |
|||
</record> |
|||
<record id="schedule_log_action" model="ir.actions.act_window"> |
|||
<field name="name">schedule_log</field> |
|||
<field name="res_model">schedule.log</field> |
|||
<field name="view_mode">form</field> |
|||
</record> |
|||
</odoo> |
@ -0,0 +1,22 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
|||
# |
|||
# You can modify it under the terms of the GNU LESSER |
|||
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE |
|||
# (LGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
from . import mail_wizard_recipient |
@ -0,0 +1,48 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
|||
# |
|||
# You can modify it under the terms of the GNU LESSER |
|||
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE |
|||
# (LGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
from odoo import api, fields, models |
|||
|
|||
|
|||
class AddRecipient(models.TransientModel): |
|||
"""To add more recipients in the chatter""" |
|||
_name = 'mail.wizard.recipient' |
|||
_description = 'Add more Recipients' |
|||
|
|||
partner_id = fields.Many2one('res.users', string='Recipients', |
|||
help="Choose the user to whom we have to " |
|||
"sent the reply mail") |
|||
model = fields.Char(string='Related Model', help="Related Model") |
|||
model_reference = fields.Integer(string="Related Document Id", |
|||
help="Related Document Id") |
|||
message_id = fields.Many2one('mail.message') |
|||
|
|||
def add_recipients(self): |
|||
"""On selecting the user to whom the mail is sent, the user is then |
|||
added to config parameters""" |
|||
self.env['ir.config_parameter'].set_param('reply_to', |
|||
self.partner_id.id) |
|||
|
|||
@api.model |
|||
def get_user(self, user_id): |
|||
"""if reply mail is sent to the person who sent the mail, |
|||
then default person will be set in config parameters""" |
|||
self.env['ir.config_parameter'].set_param('reply_to', user_id) |
@ -0,0 +1,25 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<!-- wizard view --> |
|||
<record model="ir.ui.view" id="mail_wizard_recipient_form"> |
|||
<field name="name">Add Recipients</field> |
|||
<field name="model">mail.wizard.recipient</field> |
|||
<field name="arch" type="xml"> |
|||
<form string="Add Followers"> |
|||
<group> |
|||
<field name="partner_id" |
|||
placeholder="Add contacts to notify..." |
|||
options="{'no_quick_create': True}" |
|||
context="{'show_email': True, 'form_view_ref': 'base.view_partner_simple_form'}"/> |
|||
</group> |
|||
<footer> |
|||
<button string="Add Recipients" |
|||
name="add_recipients" type="object" |
|||
class="btn-primary" data-hotkey="q"/> |
|||
<button string="Cancel" class="btn-secondary" |
|||
special="cancel" data-hotkey="x"/> |
|||
</footer> |
|||
</form> |
|||
</field> |
|||
</record> |
|||
</odoo> |