我想为manfacture组中的每个人发送通知,所以我尝试了这段代码,但它不起作用
manf_categ_ids=self.pool.get('ir.module.category').search(cr,uid,[('name','=','Manufacturing')],context=context)[0]
users=self.pool.get('res.groups').browse(cr, uid, manf_categ_ids , context=context).users
for user in users:
recipient_partners = []
recipient_partners.append(
(4, user.partner_id.id)
)
#user_ids=self.pool.get('res.users').search(cr,uid,[('groups_id','=',manf_categ_ids)],context=context)
post_vars = {'subject': "notification about order",
'body': "Yes inform me as i belong to manfacture group",
'partner_ids': recipient_partners,} # Where "4" adds the ID to the list
# of followers and "3" is the partner ID
thread_pool = self.pool.get('mail.thread')
thread_pool.message_post(
cr, uid, False,
type="notification",
subtype="mt_comment",
context=context,
**post_vars)
2个用户属于制造组的问题,但是用户列表只包含1个元素,当我使用该用户登录时,此代码不发送任何通知
答案 0 :(得分:5)
问题似乎是每次迭代都清除列表。
该行
recipient_partners = []
应该超出for
循环。
答案 1 :(得分:3)
首先,您需要使用合作伙伴 ID,而不是用户 ID。其次,您需要添加所有用户,而不仅仅是第一个用户。
这是一个基于我在项目中使用的代码来创建一个可以用作partner_ids
参数值的数组:
group = self.env['res.groups'].search([('category_id.name', '=', 'Manufacturing')])
recipient_partners = []
for recipient in group.users:
recipient_partners.append(
(4, recipient.partner_id.id)
)
您可以看到the code this is based on here。它以MessageTemplate的send_group
方法开头,并继续进入send
方法。
您似乎目前不使用新的Odoo ORM API。您可以开始使用它(我强烈推荐它!)或者将旧API(cr,uid,context)所需的参数添加到search()
方法,并使用browse()
来获取完整的用户对象。