Disable automatic addition of partner as follower in Odoo 10
问题 How can I stop automatic addition of partners as followers in Odoo 10. Whenever I create a new quotation or opportunity, the partner is automatically added to the followers list and an email notification is send to the partner which I don't want. How can I prevent this from happening? 回答1: You can do it using simple method. Ex: class sale_order(models.Model): _inherit="sale.order" @api.model def create(self,vals): res=super(sale_order,self.with_context('mail_create_nosubscribe':True)).create