crm lead extra fields added
This commit is contained in:
parent
855346a8e5
commit
54e7317925
|
@ -8,3 +8,7 @@ class Lead(models.Model):
|
|||
_inherit = 'crm.lead'
|
||||
|
||||
lead_no = fields.Char(string='Lead ID')
|
||||
professional_support = fields.Char(string='Professional Support')
|
||||
ref_summary_status = fields.Char(string='Referral Summary status')
|
||||
project_scope = fields.Char(string='The scope of the project')
|
||||
client_folder = fields.Char(string='Client Folder')
|
||||
|
|
|
@ -9,6 +9,12 @@
|
|||
<xpath expr="//field[@name='partner_id']" position="before">
|
||||
<field name="lead_no"/>
|
||||
</xpath>
|
||||
<xpath expr="//group[@name='Misc']//field[@name='referred']" position="after">
|
||||
<field name="professional_support"/>
|
||||
<field name="ref_summary_status"/>
|
||||
<field name="project_scope"/>
|
||||
<field name="client_folder"/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
|
|
Loading…
Reference in New Issue