summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFIN-IT_AndriFP <andrifebriyadiputra@gmail.com>2026-01-15 19:31:43 +0700
committerFIN-IT_AndriFP <andrifebriyadiputra@gmail.com>2026-01-15 19:31:43 +0700
commita571ac15c0cf643542acaf7051ccc8db6976c9d6 (patch)
treeb0b09a9a9d4433c39220586542719e97df0db9bd
parent4e28776562e9916556a920a6b42ec61f93a2a15f (diff)
field has magento & attribute set
-rwxr-xr-xindoteknik_custom/models/product_template.py21
-rwxr-xr-xindoteknik_custom/views/product_template.xml8
2 files changed, 15 insertions, 14 deletions
diff --git a/indoteknik_custom/models/product_template.py b/indoteknik_custom/models/product_template.py
index 4ff2dffa..2c798f43 100755
--- a/indoteknik_custom/models/product_template.py
+++ b/indoteknik_custom/models/product_template.py
@@ -15,15 +15,16 @@ _logger = logging.getLogger(__name__)
class ProductTemplate(models.Model):
_inherit = "product.template"
- # 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"
- # )
+ x_attribute_set_id = fields.Integer(
+ string="Magento Attribute Set ID",
+ help="Attribute Set ID dari Magento",
+ readonly=True
+ )
+ x_attribute_set_name = fields.Char(
+ string="Magento Attribute Set Name",
+ help="Attribute Set Name dari Magento",
+ readonly=True
+ )
image_carousel_lines = fields.One2many(
comodel_name="image.carousel",
@@ -938,7 +939,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, readonly=True)
+ 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', [])
diff --git a/indoteknik_custom/views/product_template.xml b/indoteknik_custom/views/product_template.xml
index 3643c25f..9fbf007a 100755
--- a/indoteknik_custom/views/product_template.xml
+++ b/indoteknik_custom/views/product_template.xml
@@ -78,7 +78,7 @@
<field name="inherit_id" ref="product.product_normal_form_view"/>
<field name="arch" type="xml">
<field name="last_update_solr" position="after">
- <!-- <field name="has_magento"/> -->
+ <field name="has_magento"/>
<field name="barcode_box" />
<field name="qty_pcs_box" />
<field name="clean_website_description" />
@@ -113,8 +113,8 @@
<field name="virtual_rating"/>
<field name="search_rank"/>
<field name="solr_flag"/>
- <!-- <field name="x_attribute_set_id"/> -->
- <!-- <field name="x_attribute_set_name"/> -->
+ <field name="x_attribute_set_id"/>
+ <field name="x_attribute_set_name"/>
<!-- <field name="has_magento"/> -->
</field>
</field>
@@ -129,7 +129,7 @@
<field name="usage"/>
<field name="specification"/>
<field name="material"/>
- <!-- <field name="has_magento" /> -->
+ <field name="has_magento" />
</field>
</field>
</record>