From f4864dae63241045d284459656af7567bea5af62 Mon Sep 17 00:00:00 2001 From: Casey Date: Wed, 18 Feb 2026 19:19:15 -0600 Subject: [PATCH] add doctype --- .../doctype/address_customer_link/__init__.py | 0 .../address_customer_link.json | 63 +++++++++++++++++++ 2 files changed, 63 insertions(+) create mode 100644 custom_ui/custom_ui/doctype/address_customer_link/__init__.py create mode 100644 custom_ui/custom_ui/doctype/address_customer_link/address_customer_link.json diff --git a/custom_ui/custom_ui/doctype/address_customer_link/__init__.py b/custom_ui/custom_ui/doctype/address_customer_link/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/custom_ui/custom_ui/doctype/address_customer_link/address_customer_link.json b/custom_ui/custom_ui/doctype/address_customer_link/address_customer_link.json new file mode 100644 index 0000000..04c62c1 --- /dev/null +++ b/custom_ui/custom_ui/doctype/address_customer_link/address_customer_link.json @@ -0,0 +1,63 @@ +{ + "actions": [], + "allow_rename": 1, + "creation": "2026-02-18 05:53:10.533385", + "custom": 1, + "doctype": "DocType", + "editable_grid": 1, + "engine": "InnoDB", + "field_order": [ + "customer_type", + "customer_name", + "relation", + "is_active" + ], + "fields": [ + { + "default": "Customer", + "fieldname": "customer_type", + "fieldtype": "Select", + "in_list_view": 1, + "label": "Customer Type", + "options": "Customer\nLead", + "reqd": 1 + }, + { + "fieldname": "customer_name", + "fieldtype": "Dynamic Link", + "in_list_view": 1, + "label": "Customer Name", + "options": "customer_type", + "reqd": 1 + }, + { + "fieldname": "relation", + "fieldtype": "Select", + "in_list_view": 1, + "label": "Relation", + "options": "Owner\nBuilder", + "reqd": 1 + }, + { + "default": "1", + "fieldname": "is_active", + "fieldtype": "Check", + "label": "Active" + } + ], + "grid_page_length": 50, + "index_web_pages_for_search": 1, + "istable": 1, + "links": [], + "modified": "2026-02-18 05:53:10.573936", + "modified_by": "Administrator", + "module": "Custom UI", + "name": "Address Customer Link", + "owner": "Administrator", + "permissions": [], + "row_format": "Dynamic", + "rows_threshold_for_grid_search": 20, + "sort_field": "modified", + "sort_order": "DESC", + "states": [] +} \ No newline at end of file