diff options
| author | IT Fixcomart <it@fixcomart.co.id> | 2022-07-29 17:36:54 +0700 |
|---|---|---|
| committer | IT Fixcomart <it@fixcomart.co.id> | 2022-07-29 17:36:54 +0700 |
| commit | 38e43997754a6f2c7eadacd5bf09d8481f82bccc (patch) | |
| tree | a96811475686ac9c8243742ab760456cd24be673 /indoteknik_custom/models/crm_lead.py | |
| parent | ca84cc359ed7535474aafac877843374baac5414 (diff) | |
Tambah field html_description dan view di crm.lead
Diffstat (limited to 'indoteknik_custom/models/crm_lead.py')
| -rw-r--r-- | indoteknik_custom/models/crm_lead.py | 8 |
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") + |
