Hi, I'm considering getting a list of pricelist on the contacts view
The price list table has several rows. And I want to show that row as a selection list
Is there anyone who can help with this?
== Models ==
from odoo import models, fields
class myclass(models.Model):
_inherit = 'res.partner'
pricelist = fields.Reference([('product.pricelist', 'name')])
== View ==
field name="pricelist" string="Pricelist"