fix: created exotel agent doctype to store user and mobile no

This commit is contained in:
Shariq Ansari 2025-01-11 16:33:40 +05:30
parent 5c2aa522fc
commit e085d4bc30
5 changed files with 119 additions and 0 deletions

View File

@ -0,0 +1,8 @@
// Copyright (c) 2025, Frappe Technologies Pvt. Ltd. and contributors
// For license information, please see license.txt
// frappe.ui.form.on("CRM Exotel Agent", {
// refresh(frm) {
// },
// });

View File

@ -0,0 +1,72 @@
{
"actions": [],
"allow_rename": 1,
"autoname": "field:mobile_no",
"creation": "2025-01-11 16:12:46.602782",
"doctype": "DocType",
"engine": "InnoDB",
"field_order": [
"user",
"user_name",
"column_break_hdec",
"mobile_no"
],
"fields": [
{
"fieldname": "user",
"fieldtype": "Link",
"in_list_view": 1,
"in_standard_filter": 1,
"label": "User",
"options": "User",
"reqd": 1
},
{
"fieldname": "column_break_hdec",
"fieldtype": "Column Break"
},
{
"fieldname": "mobile_no",
"fieldtype": "Data",
"in_list_view": 1,
"in_standard_filter": 1,
"label": "Mobile No.",
"reqd": 1,
"unique": 1
},
{
"fetch_from": "user.full_name",
"fieldname": "user_name",
"fieldtype": "Data",
"in_list_view": 1,
"in_standard_filter": 1,
"label": "User Name"
}
],
"index_web_pages_for_search": 1,
"links": [],
"modified": "2025-01-11 16:20:21.877873",
"modified_by": "Administrator",
"module": "FCRM",
"name": "CRM Exotel Agent",
"naming_rule": "By fieldname",
"owner": "Administrator",
"permissions": [
{
"create": 1,
"delete": 1,
"email": 1,
"export": 1,
"print": 1,
"read": 1,
"report": 1,
"role": "System Manager",
"share": 1,
"write": 1
}
],
"sort_field": "creation",
"sort_order": "DESC",
"states": [],
"title_field": "user_name"
}

View File

@ -0,0 +1,9 @@
# Copyright (c) 2025, Frappe Technologies Pvt. Ltd. and contributors
# For license information, please see license.txt
# import frappe
from frappe.model.document import Document
class CRMExotelAgent(Document):
pass

View File

@ -0,0 +1,30 @@
# Copyright (c) 2025, Frappe Technologies Pvt. Ltd. and Contributors
# See license.txt
# import frappe
from frappe.tests import IntegrationTestCase, UnitTestCase
# On IntegrationTestCase, the doctype test records and all
# link-field test record dependencies are recursively loaded
# Use these module variables to add/remove to/from that list
EXTRA_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"]
IGNORE_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"]
class UnitTestCRMExotelAgent(UnitTestCase):
"""
Unit tests for CRMExotelAgent.
Use this class for testing individual functions and methods.
"""
pass
class IntegrationTestCRMExotelAgent(IntegrationTestCase):
"""
Integration tests for CRMExotelAgent.
Use this class for testing interactions between multiple components.
"""
pass