fix: replaced lead/deal_owner with assigned_to in default lead/deal list view settings
This commit is contained in:
parent
2bec43244a
commit
783aca5a7c
@ -140,10 +140,9 @@ class CRMDeal(Document):
|
||||
'width': '11rem',
|
||||
},
|
||||
{
|
||||
'label': 'Deal Owner',
|
||||
'type': 'Link',
|
||||
'key': 'deal_owner',
|
||||
'options': 'User',
|
||||
'label': 'Assigned To',
|
||||
'type': 'Text',
|
||||
'key': '_assign',
|
||||
'width': '10rem',
|
||||
},
|
||||
{
|
||||
@ -166,6 +165,7 @@ class CRMDeal(Document):
|
||||
"first_response_time",
|
||||
"first_responded_on",
|
||||
"modified",
|
||||
"_assign",
|
||||
]
|
||||
return {'columns': columns, 'rows': rows}
|
||||
|
||||
|
||||
@ -231,10 +231,9 @@ class CRMLead(Document):
|
||||
'width': '11rem',
|
||||
},
|
||||
{
|
||||
'label': 'Lead Owner',
|
||||
'type': 'Link',
|
||||
'key': 'lead_owner',
|
||||
'options': 'User',
|
||||
'label': 'Assigned To',
|
||||
'type': 'Text',
|
||||
'key': '_assign',
|
||||
'width': '10rem',
|
||||
},
|
||||
{
|
||||
@ -258,6 +257,7 @@ class CRMLead(Document):
|
||||
"first_response_time",
|
||||
"first_responded_on",
|
||||
"modified",
|
||||
"_assign",
|
||||
"image",
|
||||
]
|
||||
return {'columns': columns, 'rows': rows}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user