Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
3 Відповіді
3809 Переглядів

Hello,

I've got a little problem. I'm currently creating a custom module on Odoo 9 and I want to get an attribute defined in _columns in an inherit of pos_order in another class inherited : account_invoice.


How can I do that ?


Thank you in advance for your help.

Аватар
Відмінити

if you have the order id in invoice, uisng that id you can browse pos_order record to get that attribute right?

Автор

Hi Akhil, I agree with you but the problem is the same with browse. Cause to browse in pos_order, we need to do "self.pool.get('pos.order').browse(cr, uid, ids, context=context)" but we still don't have "cr", "uid", "ids" and "context". Thanks for your help and help me if you find a solution.

Автор

Otherwise, self.reference give us the id of the order linked to the current account_invoice and matches with pos_reference from the order of pos_order.

Автор Найкраща відповідь


Аватар
Відмінити

You should be able to browse pos.order by using self.env['pos.order'].browse(your_id). cr, uid ,ids and context should be set automatically if you use v9 api. If you ever need to used those, you can use self._cr, self._uid and self._context

Автор

Well, thank you for your answer. It's almost working. I'm currently doing "order = self.env['pos.order'].browse(self.reference)" and the result of this is an object that is "{'env': , '_ids': (u'Main/0007',)}" (when I use the "_logger.info" command). And I tried to get my attribute from different way but each time, I'm getting an error so I think, I'm not doing it right... Thanks a lot for you help !

Related Posts Відповіді Переглядів Дія
4
трав. 16
7294
3
жовт. 24
663
2
лип. 20
26362
1
трав. 16
3718
1
бер. 15
5985