Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
1 Ответить
10608 Представления

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"
        })

Аватар
Отменить
Автор Лучший ответ

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']

Аватар
Отменить
Related Posts Ответы Просмотры Активность
0
сент. 19
98
1
июл. 17
4361
4
авг. 16
8570
1
мая 16
5183
1
мар. 16
5216