콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
1813 화면

in this condition, i want to it keep creating the mail.message records, but NOT sending the email. 


class MailMessage(models.Model):    
​_inherit = 'mail.message'
​@api.model_create_multi
​def create(self, vals_list):
​​for vals in vals_list:
body = vals['body']
if isinstance(body, Markup):
body_text = Markup.unescape(body)
if body_text[:5] == "gpt: ":

please help, i cant find any solution that meet my requirement anywhere. thank you

아바타
취소
작성자 베스트 답변

no solution for this, so i need to revert back to codes that do "message_post" and then send the context like this :

        message_data = thread.message_post(
**{key: value for key, value in post_data.items() if key in self._get_allowed_message_post_params()}
).message_format()[0]

then i need to add context before it

thread = thread.with_context(active_test=True,mail_create_nosubscribe=False,mail_post_autofollow=False)
아바타
취소
관련 게시물 답글 화면 활동
2
2월 18
7180
1
2월 24
6539
6
1월 21
12496
1
7월 25
746
5
5월 25
18172