You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
725 B
23 lines
725 B
import json
|
|
from odoo import models, fields, api
|
|
|
|
|
|
class ProductTemplate(models.Model):
|
|
_inherit = 'product.template'
|
|
|
|
# technical field used in POS frontend
|
|
supplier_data_json = fields.Char(
|
|
"Supplier data dict", readonly=True,
|
|
compute="_compute_supplier_data_json")
|
|
|
|
@api.multi
|
|
def _compute_supplier_data_json(self):
|
|
for t in self:
|
|
res = []
|
|
for s in t.seller_ids:
|
|
res.append({
|
|
'supplier_name': s.name.display_name,
|
|
'supplier_product_code': s.product_code or '',
|
|
'supplier_product_name': s.product_name or '',
|
|
})
|
|
t.supplier_data_json = json.dumps(res)
|