当我确认销售订单时,会向我的客户发送电子邮件:
“您已被邀请关注SO014。通过我们的客户门户网站访问您的消息和个人文档”。
我想禁用该操作。当我访问基本销售工作流程时,确认销售订单时没有定义操作服务器。
答案 0 :(得分:1)
尝试查找服务器操作Setting -> Actions -> Server Actions
然后找到Sale Orders
并删除其中的操作。
答案 1 :(得分:0)
您可以尝试继承sale.order函数action_confirm并从message_follower_ids中删除所有链接的合作伙伴(和用户)。
@api.multi
def action_confirm(self):
return_value = super(sale_order, self.with_context(mail_create_nosubscribe=True)).action_confirm()
for follower in self['message_follower_ids']:
follower.unlink()
return return_value