summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2023-02-23 11:35:40 +0700
committerstephanchrst <stephanchrst@gmail.com>2023-02-23 11:35:40 +0700
commitde4a6c2c2ce115d169a3a85548ff95c8789e25c8 (patch)
tree5db6a76eb8e37ba76d4f16622d1f7e5c8b9d2482
parentea39d3aaf90aa99f4e845420cf11223dc993aa7f (diff)
remove useless column or field in product category
-rwxr-xr-xindoteknik_custom/models/product_public_category.py6
1 files changed, 0 insertions, 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