summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models/crm_lead.py
diff options
context:
space:
mode:
Diffstat (limited to 'indoteknik_custom/models/crm_lead.py')
-rw-r--r--indoteknik_custom/models/crm_lead.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/indoteknik_custom/models/crm_lead.py b/indoteknik_custom/models/crm_lead.py
new file mode 100644
index 00000000..0c53bb69
--- /dev/null
+++ b/indoteknik_custom/models/crm_lead.py
@@ -0,0 +1,8 @@
+from odoo import fields, models
+
+
+class CrmLead(models.Model):
+ _inherit = "crm.lead"
+
+ html_description = fields.Html(string="Descriptions")
+