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',
|
'width': '11rem',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'label': 'Deal Owner',
|
'label': 'Assigned To',
|
||||||
'type': 'Link',
|
'type': 'Text',
|
||||||
'key': 'deal_owner',
|
'key': '_assign',
|
||||||
'options': 'User',
|
|
||||||
'width': '10rem',
|
'width': '10rem',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -166,6 +165,7 @@ class CRMDeal(Document):
|
|||||||
"first_response_time",
|
"first_response_time",
|
||||||
"first_responded_on",
|
"first_responded_on",
|
||||||
"modified",
|
"modified",
|
||||||
|
"_assign",
|
||||||
]
|
]
|
||||||
return {'columns': columns, 'rows': rows}
|
return {'columns': columns, 'rows': rows}
|
||||||
|
|
||||||
|
|||||||
@ -231,10 +231,9 @@ class CRMLead(Document):
|
|||||||
'width': '11rem',
|
'width': '11rem',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'label': 'Lead Owner',
|
'label': 'Assigned To',
|
||||||
'type': 'Link',
|
'type': 'Text',
|
||||||
'key': 'lead_owner',
|
'key': '_assign',
|
||||||
'options': 'User',
|
|
||||||
'width': '10rem',
|
'width': '10rem',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -258,6 +257,7 @@ class CRMLead(Document):
|
|||||||
"first_response_time",
|
"first_response_time",
|
||||||
"first_responded_on",
|
"first_responded_on",
|
||||||
"modified",
|
"modified",
|
||||||
|
"_assign",
|
||||||
"image",
|
"image",
|
||||||
]
|
]
|
||||||
return {'columns': columns, 'rows': rows}
|
return {'columns': columns, 'rows': rows}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user