From d5bfdc76b6568348ffcc236fab3a85a51eac2126 Mon Sep 17 00:00:00 2001 From: Houssine BAKKALI Date: Fri, 17 Apr 2020 11:38:57 +0200 Subject: [PATCH] [FIX] fix missing underscore for _inherit --- beesdoo_easy_my_coop/models/product.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beesdoo_easy_my_coop/models/product.py b/beesdoo_easy_my_coop/models/product.py index 2bdeca0..35fc68f 100644 --- a/beesdoo_easy_my_coop/models/product.py +++ b/beesdoo_easy_my_coop/models/product.py @@ -3,6 +3,6 @@ from odoo import models, fields class ProductTemplate(models.Model): - inherit = 'product.template' + _inherit = 'product.template' can_shop = fields.Boolean(string="Is share?")