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

I need to call Python function of mrp class in delivery slip report in stock.picking. It works if function is in stock_picking class. 

Any help is appreciatable! 

Аватар
Отменить

From the stock.move you can access the manufacturing order using the field: raw_material_production_id or production_id

Автор

Couldn't get you? I need to call Python function which is in mrp class in qweb delivery slip report.

Лучший ответ

You just need a recordset of the "mrp.production" object to call the method.

Ex:

production = self.env['mrp.production'].browse(mrp_production_id)
production.mrp_method()


Аватар
Отменить
Автор

How must i give it in qweb in t-call method?

You can call the method in qweb as well.

Ex:

<t t-set="method_data" t-value="o.env['mrp.production'].browse(mrp_production_id).mrp_method()"/>

Now, you can use this method_data as a variable.

Автор

It doesn't work. I don't understand what is the use of mrp_production_id?

Related Posts Ответы Просмотры Активность
0
авг. 25
106
1
авг. 25
2054
1
июл. 25
2584
2
июл. 25
8022
2
июл. 25
4473