是否可以在 Odoo V13 及更高版本中通过自动操作发送短信?
Is it possible to send SMS through automated action in Odoo V13 and above?
我正在使用 Odoo Enterprise V13。我正在尝试创建一个自动操作,以便在创建潜在客户后立即使用特定的手机 phone 号码向销售经理发送短信。我发现了一些类似的东西 here 并尝试将其作为服务器操作中的 python 代码来模拟。
env['sms.composer'].action_send_sms({'numbers':'1386xxxxxxx', 'body':'New lead has been created in Odoo'})
- 但是报错
action_send_sms() takes 1 positional argument but 2 were given
。
- 正确的语法是什么,或者有其他发送短信的方式吗?
通过自动操作和 python 代码?
我无法测试。但首先,创建 sms.composer
对象,然后发送它。
目前,您正在调用一个不带参数的函数。
my_sms = env['sms.composer'].create({'numbers':'1386xxxxxxx', 'body':'New lead has been created in Odoo'})
my_sms.action_send_sms()
我正在使用 Odoo Enterprise V13。我正在尝试创建一个自动操作,以便在创建潜在客户后立即使用特定的手机 phone 号码向销售经理发送短信。我发现了一些类似的东西 here 并尝试将其作为服务器操作中的 python 代码来模拟。
env['sms.composer'].action_send_sms({'numbers':'1386xxxxxxx', 'body':'New lead has been created in Odoo'})
- 但是报错
action_send_sms() takes 1 positional argument but 2 were given
。 - 正确的语法是什么,或者有其他发送短信的方式吗? 通过自动操作和 python 代码?
我无法测试。但首先,创建 sms.composer
对象,然后发送它。
目前,您正在调用一个不带参数的函数。
my_sms = env['sms.composer'].create({'numbers':'1386xxxxxxx', 'body':'New lead has been created in Odoo'})
my_sms.action_send_sms()