summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models
diff options
context:
space:
mode:
authorFIN-IT_AndriFP <andrifebriyadiputra@gmail.com>2026-01-15 16:16:04 +0700
committerFIN-IT_AndriFP <andrifebriyadiputra@gmail.com>2026-01-15 16:16:04 +0700
commite42aee6c9af962edad71603eaaaeceea8589dc7a (patch)
tree9085e552ed994e57011c681c9776fe662d860a91 /indoteknik_custom/models
parent74b5caa2ff4c30c824b243a8c621df590eab90e6 (diff)
fix invalid field
Diffstat (limited to 'indoteknik_custom/models')
-rwxr-xr-xindoteknik_custom/models/product_template.py21
1 files changed, 10 insertions, 11 deletions
diff --git a/indoteknik_custom/models/product_template.py b/indoteknik_custom/models/product_template.py
index 5730b08b..4ff2dffa 100755
--- a/indoteknik_custom/models/product_template.py
+++ b/indoteknik_custom/models/product_template.py
@@ -15,16 +15,15 @@ _logger = logging.getLogger(__name__)
class ProductTemplate(models.Model):
_inherit = "product.template"
- x_attribute_set_id = fields.Integer(
- string="Magento Attribute Set ID",
- default=0,
- index=True,
- help="Attribute Set ID dari Magento"
- )
- x_attribute_set_name = fields.Char(
- string="Magento Attribute Set Name",
- help="Attribute Set Name dari Magento"
- )
+ # x_attribute_set_id = fields.Integer(
+ # string="Magento Attribute Set ID",
+ # default=0,
+ # help="Attribute Set ID dari Magento"
+ # )
+ # x_attribute_set_name = fields.Char(
+ # string="Magento Attribute Set Name",
+ # help="Attribute Set Name dari Magento"
+ # )
image_carousel_lines = fields.One2many(
comodel_name="image.carousel",
@@ -939,7 +938,7 @@ class ProductProduct(models.Model):
qty_pcs_box = fields.Float("Pcs Box")
barcode_box = fields.Char("Barcode Box")
- has_magento = fields.Boolean(string='Has Magento?', default=False)
+ # has_magento = fields.Boolean(string='Has Magento?', default=False, readonly=True)
def generate_product_sla(self):
product_variant_ids = self.env.context.get('active_ids', [])