Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Coopdevs OCB mirror
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coopdevs
Odoo
Coopdevs OCB mirror
Commits
5b7ad277
Commit
5b7ad277
authored
4 years ago
by
Didier (did)
Browse files
Options
Downloads
Patches
Plain Diff
[FIX] im_livechat: partial backport of
543af27c
parent
5e81850e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
addons/im_livechat/models/mail_channel.py
+2
-1
2 additions, 1 deletion
addons/im_livechat/models/mail_channel.py
with
2 additions
and
1 deletion
addons/im_livechat/models/mail_channel.py
+
2
−
1
View file @
5b7ad277
...
...
@@ -2,6 +2,7 @@
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from
odoo
import
api
,
fields
,
models
,
_
from
odoo.tools
import
html_escape
class
ChannelPartner
(
models
.
Model
):
_inherit
=
'
mail.channel.partner
'
...
...
@@ -148,7 +149,7 @@ class MailChannel(models.Model):
def
_send_history_message
(
self
,
pid
,
page_history
):
message_body
=
_
(
'
No history found
'
)
if
page_history
:
html_links
=
[
'
<li><a href=
"
%s
"
target=
"
_blank
"
>%s</a></li>
'
%
(
page
,
page
)
for
page
in
page_history
]
html_links
=
[
'
<li><a href=
"
%s
"
target=
"
_blank
"
>%s</a></li>
'
%
(
html_escape
(
page
)
,
html_escape
(
page
)
)
for
page
in
page_history
]
message_body
=
'
<span class=
"
o_mail_notification
"
><ul>%s</ul></span>
'
%
(
''
.
join
(
html_links
))
self
.
env
[
'
bus.bus
'
].
sendone
((
self
.
_cr
.
dbname
,
'
res.partner
'
,
pid
),
{
'
body
'
:
message_body
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment