diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2023-02-23 11:35:40 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2023-02-23 11:35:40 +0700 |
| commit | de4a6c2c2ce115d169a3a85548ff95c8789e25c8 (patch) | |
| tree | 5db6a76eb8e37ba76d4f16622d1f7e5c8b9d2482 | |
| parent | ea39d3aaf90aa99f4e845420cf11223dc993aa7f (diff) | |
remove useless column or field in product category
| -rwxr-xr-x | indoteknik_custom/models/product_public_category.py | 6 |
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 |
