fix: Made no of employees a select field
This commit is contained in:
parent
483fc420a1
commit
2d226be3c4
@ -277,8 +277,7 @@
|
|||||||
"fieldtype": "Data",
|
"fieldtype": "Data",
|
||||||
"label": "Website",
|
"label": "Website",
|
||||||
"oldfieldname": "website",
|
"oldfieldname": "website",
|
||||||
"oldfieldtype": "Data",
|
"oldfieldtype": "Data"
|
||||||
"options": "URL"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "territory",
|
"fieldname": "territory",
|
||||||
@ -334,8 +333,9 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "no_of_employees",
|
"fieldname": "no_of_employees",
|
||||||
"fieldtype": "Int",
|
"fieldtype": "Select",
|
||||||
"label": "No. of Employees"
|
"label": "No. of Employees",
|
||||||
|
"options": "1-10\n11-20\n21-30\n31-100\n11-50\n51-200\n201-500\n101-500\n500-1000\n501-1000\n>1000\n1000+"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "column_break_22",
|
"fieldname": "column_break_22",
|
||||||
@ -483,7 +483,7 @@
|
|||||||
"idx": 5,
|
"idx": 5,
|
||||||
"image_field": "image",
|
"image_field": "image",
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2022-06-06 18:10:14.494424",
|
"modified": "2022-06-21 15:10:06.613519",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "CRM",
|
"module": "CRM",
|
||||||
"name": "Lead",
|
"name": "Lead",
|
||||||
|
@ -463,8 +463,9 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "no_of_employees",
|
"fieldname": "no_of_employees",
|
||||||
"fieldtype": "Int",
|
"fieldtype": "Select",
|
||||||
"label": "No of Employees"
|
"label": "No of Employees",
|
||||||
|
"options": "1-10\n11-20\n21-30\n31-100\n11-50\n51-200\n201-500\n101-500\n500-1000\n501-1000\n>1000\n1000+"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "annual_revenue",
|
"fieldname": "annual_revenue",
|
||||||
@ -607,7 +608,7 @@
|
|||||||
"icon": "fa fa-info-sign",
|
"icon": "fa fa-info-sign",
|
||||||
"idx": 195,
|
"idx": 195,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2022-06-10 16:19:33.310006",
|
"modified": "2022-06-21 15:04:34.363959",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "CRM",
|
"module": "CRM",
|
||||||
"name": "Opportunity",
|
"name": "Opportunity",
|
||||||
|
@ -80,8 +80,9 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "no_of_employees",
|
"fieldname": "no_of_employees",
|
||||||
"fieldtype": "Int",
|
"fieldtype": "Select",
|
||||||
"label": "No. of Employees"
|
"label": "No. of Employees",
|
||||||
|
"options": "1-10\n11-20\n21-30\n31-100\n11-50\n51-200\n201-500\n101-500\n500-1000\n501-1000\n>1000\n1000+"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "annual_revenue",
|
"fieldname": "annual_revenue",
|
||||||
@ -99,8 +100,7 @@
|
|||||||
{
|
{
|
||||||
"fieldname": "website",
|
"fieldname": "website",
|
||||||
"fieldtype": "Data",
|
"fieldtype": "Data",
|
||||||
"label": "Website",
|
"label": "Website"
|
||||||
"options": "URL"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "prospect_owner",
|
"fieldname": "prospect_owner",
|
||||||
@ -218,7 +218,7 @@
|
|||||||
],
|
],
|
||||||
"index_web_pages_for_search": 1,
|
"index_web_pages_for_search": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2022-06-09 16:58:45.100244",
|
"modified": "2022-06-21 15:10:26.887502",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "CRM",
|
"module": "CRM",
|
||||||
"name": "Prospect",
|
"name": "Prospect",
|
||||||
|
@ -39,7 +39,11 @@
|
|||||||
name="{{tasks[i].name}}" title="{{ __('Mark As Closed') }}">
|
name="{{tasks[i].name}}" title="{{ __('Mark As Closed') }}">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="text-muted ml-1">{%= frappe.datetime.global_date_format(tasks[i].date) %}</div>
|
{% if(tasks[i].date) { %}
|
||||||
|
<div class="text-muted ml-1">
|
||||||
|
{%= frappe.datetime.global_date_format(tasks[i].date) %}
|
||||||
|
</div>
|
||||||
|
{% } %}
|
||||||
{% if(tasks[i].allocated_to) { %}
|
{% if(tasks[i].allocated_to) { %}
|
||||||
<div class="text-muted ml-1">
|
<div class="text-muted ml-1">
|
||||||
{{ __("Allocated To:") }}
|
{{ __("Allocated To:") }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user