From de4a6c2c2ce115d169a3a85548ff95c8789e25c8 Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Thu, 23 Feb 2023 11:35:40 +0700 Subject: remove useless column or field in product category --- indoteknik_custom/models/product_public_category.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/indoteknik_custom/models/product_public_category.py b/indoteknik_custom/models/product_public_category.py index f46646d6..91028ae0 100755 --- a/indoteknik_custom/models/product_public_category.py +++ b/indoteknik_custom/models/product_public_category.py @@ -14,10 +14,4 @@ class ProductPublicCategory(models.Model): parent_frontend_id = fields.Many2one('product.public.category', string='Parent Frontend Category', index=True) child_frontend_id = fields.One2many('product.public.category', 'parent_frontend_id', string='Children Frontend Categories') sequence_frontend = fields.Integer(help="Gives the sequence order when displaying a list of product categories.", index=True) - level = fields.Selection([ - ('level1', 'Level 1'), - ('level2', 'Level 2'), - ('level3', 'Level 3'), - ('level4', 'Level 4'), - ]) # check -- cgit v1.2.3