diff --git a/crm/fcrm/doctype/crm_call_log/crm_call_log.json b/crm/fcrm/doctype/crm_call_log/crm_call_log.json index cb7f91c2..cecd46c6 100644 --- a/crm/fcrm/doctype/crm_call_log/crm_call_log.json +++ b/crm/fcrm/doctype/crm_call_log/crm_call_log.json @@ -41,13 +41,15 @@ "fieldname": "from", "fieldtype": "Data", "in_list_view": 1, - "label": "From" + "label": "From", + "reqd": 1 }, { "fieldname": "status", "fieldtype": "Select", "label": "Status", - "options": "Initiated\nRinging\nIn Progress\nCompleted\nFailed\nBusy\nNo Answer\nQueued\nCanceled" + "options": "Initiated\nRinging\nIn Progress\nCompleted\nFailed\nBusy\nNo Answer\nQueued\nCanceled", + "reqd": 1 }, { "fieldname": "start_time", @@ -69,13 +71,15 @@ "in_list_view": 1, "in_standard_filter": 1, "label": "Type", - "options": "Incoming\nOutgoing" + "options": "Incoming\nOutgoing", + "reqd": 1 }, { "fieldname": "to", "fieldtype": "Data", "in_list_view": 1, - "label": "To" + "label": "To", + "reqd": 1 }, { "description": "Call duration in seconds", @@ -153,7 +157,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2025-01-22 17:57:59.289548", + "modified": "2025-04-01 16:01:54.479309", "modified_by": "Administrator", "module": "FCRM", "name": "CRM Call Log", diff --git a/crm/fcrm/doctype/fcrm_note/fcrm_note.json b/crm/fcrm/doctype/fcrm_note/fcrm_note.json index fc458fec..02477326 100644 --- a/crm/fcrm/doctype/fcrm_note/fcrm_note.json +++ b/crm/fcrm/doctype/fcrm_note/fcrm_note.json @@ -19,7 +19,8 @@ "fieldtype": "Data", "in_list_view": 1, "in_standard_filter": 1, - "label": "Title" + "label": "Title", + "reqd": 1 }, { "fieldname": "content", @@ -49,7 +50,7 @@ "link_fieldname": "note" } ], - "modified": "2024-01-19 21:56:30.123334", + "modified": "2025-04-01 15:30:14.742001", "modified_by": "Administrator", "module": "FCRM", "name": "FCRM Note", diff --git a/frontend/src/components/Modals/CallLogModal.vue b/frontend/src/components/Modals/CallLogModal.vue index b578f679..fbd0000f 100644 --- a/frontend/src/components/Modals/CallLogModal.vue +++ b/frontend/src/components/Modals/CallLogModal.vue @@ -1,55 +1,36 @@