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/views | |
| parent | ca84cc359ed7535474aafac877843374baac5414 (diff) | |
Tambah field html_description dan view di crm.lead
Diffstat (limited to 'indoteknik_custom/views')
| -rw-r--r-- | indoteknik_custom/views/crm_lead.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/indoteknik_custom/views/crm_lead.xml b/indoteknik_custom/views/crm_lead.xml new file mode 100644 index 00000000..1d3a04fc --- /dev/null +++ b/indoteknik_custom/views/crm_lead.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<odoo> + <data> + <record id="crm_lead_form_view_inherit" model="ir.ui.view"> + <field name="name">CRM Lead</field> + <field name="model">crm.lead</field> + <field name="inherit_id" ref="crm.crm_lead_view_form"/> + <field name="arch" type="xml"> + <page name="lead" position="after"> + <page string="Description" name="description"> + <field name="html_description"/> + </page> + </page> + </field> + </record> + </data> +</odoo>
\ No newline at end of file |
