summaryrefslogtreecommitdiff
path: root/indoteknik_api/models/product_template.py
diff options
context:
space:
mode:
authorIT Fixcomart <it@fixcomart.co.id>2022-10-13 09:50:34 +0000
committerIT Fixcomart <it@fixcomart.co.id>2022-10-13 09:50:34 +0000
commit6668257b1c892fdcf366a446587c0aaf31f42651 (patch)
tree49557e0332571ecc7db0d42af215476eee880cf2 /indoteknik_api/models/product_template.py
parent6029c9e3a0b42a6faef373e6dd2f5bf57cef17a0 (diff)
parent867e718b83282fdc7f4a7e77eb386b9b6014d8af (diff)
Merged in feature/rest-api (pull request #9)
Feature/rest api
Diffstat (limited to 'indoteknik_api/models/product_template.py')
-rw-r--r--indoteknik_api/models/product_template.py63
1 files changed, 63 insertions, 0 deletions
diff --git a/indoteknik_api/models/product_template.py b/indoteknik_api/models/product_template.py
index e69de29b..aa35d922 100644
--- a/indoteknik_api/models/product_template.py
+++ b/indoteknik_api/models/product_template.py
@@ -0,0 +1,63 @@
+from odoo import models, fields
+
+
+class ProductTemplate(models.Model):
+ _inherit = 'product.template'
+
+ def api_single_response(self, product_template, with_detail=False):
+ base_url = self.env['ir.config_parameter'].get_param('web.base.url')
+ product_pricelist_default = self.env['ir.config_parameter'].get_param('product.pricelist.default')
+ product_pricelist_default = int(product_pricelist_default)
+ data = {
+ 'id': product_template.id,
+ 'image': base_url + 'api/image/product.template/image_128/' + str(product_template.id) if product_template.image_128 else '',
+ 'code': product_template.default_code or '',
+ 'name': product_template.name,
+ 'lowest_price': self.env['product.pricelist'].get_lowest_product_variant_price(product_template, product_pricelist_default),
+ 'variant_total': len(product_template.product_variant_ids),
+ 'stock_total': product_template.qty_stock_vendor,
+ 'weight': product_template.weight,
+ 'manufacture': self.api_manufacture(product_template),
+ 'categories': self.api_categories(product_template),
+ }
+ if with_detail:
+ detail_data = {
+ 'image': base_url + 'api/image/product.template/image_512/' + str(product_template.id) if product_template.image_512 else '',
+ 'variants': [],
+ 'description': product_template.website_description or '',
+ }
+ for variant in product_template.product_variant_ids:
+ detail_data['variants'].append({
+ 'id': variant.id,
+ 'code': variant.default_code or '',
+ 'name': variant.display_name,
+ 'price': self.env['product.pricelist'].compute_price(product_pricelist_default, variant.id),
+ 'stock': variant.qty_stock_vendor,
+ 'weight': variant.weight,
+ })
+ data.update(detail_data)
+ return data
+
+ def api_manufacture(self, product_template):
+ base_url = self.env['ir.config_parameter'].get_param('web.base.url')
+ if product_template.x_manufacture:
+ manufacture = product_template.x_manufacture
+ return {
+ 'id': manufacture.id,
+ 'name': manufacture.x_name,
+ 'image_promotion_1': base_url + 'api/image/x_manufactures/image_promotion_1/' + str(manufacture.id) if manufacture.image_promotion_1 else '',
+ 'image_promotion_2': base_url + 'api/image/x_manufactures/image_promotion_2/' + str(manufacture.id) if manufacture.image_promotion_2 else '',
+ }
+ return {}
+
+ def api_categories(self, product_template):
+ if product_template.public_categ_ids:
+ categories = []
+ for category in product_template.public_categ_ids:
+ categories.append({
+ 'id': category.id,
+ 'name': category.name
+ })
+ return categories
+ return []
+ \ No newline at end of file