2020-01-20 16:27:34 +05:00

9 lines
257 B
Python

from odoo import fields, models
class CrmLead(models.Model):
_inherit = "crm.lead"
cost_price = fields.Monetary(string="Cost Price", default=0)
currency_id = fields.Many2one(related="company_id.currency_id", string="Currency", readonly=True)