for example,my string python expression is:
res = ''
for item in object.order_line:res = res + item.product_id.name + ','result = res[:-1]
so i want to get the value of product_id.name while execute my python expression,
for example,my string python expression is:
res = ''
for item in object.order_line:res = res + item.product_id.name + ','result = res[:-1]
so i want to get the value of product_id.name while execute my python expression,
Copyright © 2021 Jogjafile Inc.
res = res + item['product_id']['name'] + ','