Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
4 Odpowiedzi
10557 Widoki

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 ...
Awatar
Odrzuć
Najlepsza odpowiedź

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

Awatar
Odrzuć

using @api.model works

Najlepsza odpowiedź

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.

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
2
sty 20
15672
2
kwi 24
24366
0
mar 15
3024
1
lut 18
10831
0
cze 16
4156