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

Hi,
I'm trying to search table product_product and create a scheduled action which prints product attributes to console.

Since the model for scheduled action has to be product.template,

I'm trying to add to it product.product and use it's method for search.

I'm getting following error: 

Error: The _name attribute Product_template_custom is not valid.


please help me solve this, I supposed it's easy, but I'm not sure how should I solve the inheritance issue. Tx

Awatar
Odrzuć
Najlepsza odpowiedź

Hi,

Just modify the code as follows:


Class ProductTemplate(models.Model):
_inherit = 'product.template'


and in get_all_products function as:

products = self.env['product.product'].search([])


Thanks

Awatar
Odrzuć
Autor

You saved my Monday :)
Thank you!