crm lead extra fields added

This commit is contained in:
projectsodoo 2020-12-15 15:06:09 +05:30
parent 855346a8e5
commit 54e7317925
2 changed files with 10 additions and 0 deletions

View File

@ -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')

View File

@ -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>