跳至内容
菜单
此问题已终结
4 回复
10519 查看

I'm trying to run a scheduled task on Odoo v8. The task is started correctly without any problem, but the cron method is called using the legacy API.


That means I need to always pass the cr, uid, context vars when calling a method. It also means I don't have access to certains var such as self.env, self,._ds, ...


How does someone create a scheduled task and call it with the new API (v8)?


Here is the cron record

<record id="ir_cron_generate_periodic_invoices" model="ir.cron">
<field name="name">Generate Periodic Invoices from Contract</field>
<field eval="True" name="active"/>
<field name="user_id" ref="base.user_root"/>
<field name="interval_number">1</field>
<field name="interval_type">days</field>
<field name="numbercall">-1</field>
<field name="doall" eval="False"/>
<field name="model">account.analytic.account</field>
<field name="function">_cron_periodic_create_invoice</field>
<field name="args">()</field>
</record>

And here is the object

class account_analytic_account(models.Model):
_inherit = "account.analytic.account"

def _cron_periodic_create_invoice(self,cr, uid, context=None):
self._periodic_create_invoice()

def _periodic_create_invoice(self):
# Do something here ...
形象
丢弃
最佳答案

Hi,

You may try like this:

class account_analytic_account(models.Model):
_inherit = "account.analytic.account"

@api.model
def _cron_periodic_create_invoice(self):
self._periodic_create_invoice()

@api.multi
def _periodic_create_invoice(self):
# Do something here ...

Hope this helps

形象
丢弃

using @api.model works

最佳答案

For me below code is working

@api.model

def _cron_periodic_create_invoice(self):

self.search([])._periodic_create_invoice()

@api.multi

def _periodic_create_invoice()

Best Thanks,

Ankit H  Gandhi.

形象
丢弃
相关帖文 回复 查看 活动
2
1月 20
15662
2
4月 24
24357
0
3月 15
2989
1
2月 18
10819
0
6月 16
4148