Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
1 Răspunde
10607 Vizualizări

I have a method schedule_emails that gets called via a server action. In it I'm trying to create an instance of sale.order_email.scheduled_email however it's raising an exceptin saying

old_api() takes at least 3 arguments (2 given)

Looking at openerp/api.py it seems like there's a wrapper that expects self.__dict__ to have a _ids attribute for it to call the new v8 api which presumably would work. It's not clear to me what I've failed to do, to call create on the model. My model:

class sales_order_email_field(osv.Model):
    _name = 'sale.order'
    _inherit = 'sale.order'
    _columns = {
        'email_chain': fields.many2one(
            'sale.order_email.collection',
            'Email Chain',
            required=False
        ),
        'scheduling_done': fields.boolean()
    }

    def schedule_emails(self):
        model = self.pool.get('sale.order_email.scheduled_email')
        model.create({
            'order_id': self.id,
            'send_at': datetime.utcnow(),
            'subject': 'Auto Test',
            'html_body': "HI"
        })

Imagine profil
Abandonează
Autor Cel mai bun răspuns

I was immitating what was being done in the sales.order model with regards to creating new records, but grepping around I noticed the accounts/account_invoice.py uses the newer api.

I needed to change:

model = self.pool.get('sale.order_email.scheduled_email')

into:

model = self.env['sale.order_email.scheduled_email']

Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
0
sept. 19
98
1
iul. 17
4361
4
aug. 16
8570
1
mai 16
5183
1
mar. 16
5216