8 lines
154 B
Python
Raw Normal View History

2020-01-16 18:51:19 +05:00
from odoo import fields, models
class CrmLead(models.Model):
_inherit = "crm.lead"
cost_price = fields.Integer(string="Cost Price", default=0)