diff --git a/westech_r2/fixtures/client_script.json b/westech_r2/fixtures/client_script.json index 28370dd..aeb11a0 100644 --- a/westech_r2/fixtures/client_script.json +++ b/westech_r2/fixtures/client_script.json @@ -1,4 +1,15 @@ [ + { + "docstatus": 0, + "doctype": "Client Script", + "dt": "Serial No", + "enabled": 1, + "modified": "2026-05-17 06:30:57.598334", + "module": null, + "name": "Serial No - Price Calculator", + "script": "frappe.ui.form.on('Serial No', {\n grade: function(frm) {\n calculate_price(frm);\n },\n price_point: function(frm) {\n calculate_price(frm);\n },\n manual_price: function(frm) {\n if (frm.doc.price_point === 'Manual') {\n frm.set_value('assigned_price', frm.doc.manual_price);\n frm.set_value('pricing_status', 'Manual Override');\n }\n }\n});\n\nfunction calculate_price(frm) {\n var grade = frm.doc.grade;\n var price_point = frm.doc.price_point;\n \n if (!grade || !price_point) {\n return;\n }\n \n // C, D, F grades = commodity\n if (['C', 'D', 'F'].includes(grade)) {\n // Will be handled by server side\n frm.set_value('pricing_status', 'Commodity');\n return;\n }\n \n // Need item reference to get market prices\n if (!frm.doc.item_code) {\n return;\n }\n \n frappe.call({\n method: 'frappe.client.get',\n args: {\n doctype: 'Item',\n name: frm.doc.item_code\n },\n callback: function(r) {\n if (!r.message) return;\n var item = r.message;\n var base_price = 0;\n \n switch(price_point) {\n case 'Low':\n base_price = item.market_low || item.base_market_price || 0;\n break;\n case 'Median':\n base_price = item.market_median || item.base_market_price || 0;\n break;\n case 'Average':\n base_price = item.market_average || item.base_market_price || 0;\n break;\n case 'High':\n base_price = item.market_high || item.base_market_price || 0;\n break;\n }\n \n var multiplier = 1.0;\n if (grade === 'A') multiplier = item.grade_a_multiplier || 1.0;\n else if (grade === 'B') multiplier = item.grade_b_multiplier || 0.8;\n \n var final_price = base_price * multiplier;\n frm.set_value('assigned_price', Math.round(final_price * 100) / 100);\n frm.set_value('pricing_status', 'Priced');\n }\n });\n}", + "view": "Form" + }, { "docstatus": 0, "doctype": "Client Script", diff --git a/westech_r2/fixtures/custom_field.json b/westech_r2/fixtures/custom_field.json index 7938fce..45bf17a 100644 --- a/westech_r2/fixtures/custom_field.json +++ b/westech_r2/fixtures/custom_field.json @@ -2222,6 +2222,63 @@ "unique": 0, "width": null }, + { + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval:doc.grade && ['A','B'].includes(doc.grade)", + "description": "Which market price to use for this unit", + "docstatus": 0, + "doctype": "Custom Field", + "dt": "Serial No", + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "price_point", + "fieldtype": "Select", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "insert_after": "grade", + "is_system_generated": 0, + "is_virtual": 0, + "label": "Price Point", + "length": 0, + "link_filters": null, + "mandatory_depends_on": null, + "modified": "2026-05-17 06:30:57.188506", + "module": null, + "name": "Serial No-price_point", + "no_copy": 0, + "non_negative": 0, + "options": "\nLow\nMedian\nAverage\nHigh\nManual", + "permlevel": 0, + "placeholder": null, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "show_dashboard": 0, + "sort_options": 0, + "translatable": 0, + "unique": 0, + "width": null + }, { "allow_in_quick_entry": 0, "allow_on_submit": 0, @@ -2279,63 +2336,6 @@ "unique": 0, "width": null }, - { - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0.8", - "depends_on": null, - "description": null, - "docstatus": 0, - "doctype": "Custom Field", - "dt": "Item", - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "grade_b_multiplier", - "fieldtype": "Float", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "insert_after": "grade_a_multiplier", - "is_system_generated": 0, - "is_virtual": 0, - "label": "Grade B Multiplier", - "length": 0, - "link_filters": null, - "mandatory_depends_on": null, - "modified": "2026-05-17 06:15:13.627636", - "module": null, - "name": "Item-grade_b_multiplier", - "no_copy": 0, - "non_negative": 0, - "options": null, - "permlevel": 0, - "placeholder": null, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "show_dashboard": 0, - "sort_options": 0, - "translatable": 0, - "unique": 0, - "width": null - }, { "allow_in_quick_entry": 0, "allow_on_submit": 0, @@ -2401,15 +2401,15 @@ "collapsible_depends_on": null, "columns": 0, "default": null, - "depends_on": null, - "description": null, + "depends_on": "eval:doc.price_point=='Manual'", + "description": "Override price when Manual is selected", "docstatus": 0, "doctype": "Custom Field", "dt": "Serial No", "fetch_from": null, "fetch_if_empty": 0, - "fieldname": "pricing_source", - "fieldtype": "Data", + "fieldname": "manual_price", + "fieldtype": "Currency", "hidden": 0, "hide_border": 0, "hide_days": 0, @@ -2420,73 +2420,16 @@ "in_list_view": 0, "in_preview": 0, "in_standard_filter": 0, - "insert_after": "assigned_price", + "insert_after": "price_point", "is_system_generated": 0, "is_virtual": 0, - "label": "Pricing Source", + "label": "Manual Price", "length": 0, "link_filters": null, "mandatory_depends_on": null, - "modified": "2026-05-17 06:15:13.060584", + "modified": "2026-05-17 06:30:57.500487", "module": null, - "name": "Serial No-pricing_source", - "no_copy": 0, - "non_negative": 0, - "options": null, - "permlevel": 0, - "placeholder": null, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "show_dashboard": 0, - "sort_options": 0, - "translatable": 0, - "unique": 0, - "width": null - }, - { - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0.5", - "depends_on": null, - "description": null, - "docstatus": 0, - "doctype": "Custom Field", - "dt": "Item", - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "grade_c_multiplier", - "fieldtype": "Float", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "insert_after": "grade_b_multiplier", - "is_system_generated": 0, - "is_virtual": 0, - "label": "Grade C Multiplier", - "length": 0, - "link_filters": null, - "mandatory_depends_on": null, - "modified": "2026-05-17 06:15:13.722986", - "module": null, - "name": "Item-grade_c_multiplier", + "name": "Serial No-manual_price", "no_copy": 0, "non_negative": 0, "options": null, @@ -2621,120 +2564,6 @@ "unique": 0, "width": null }, - { - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "Needs Pricing", - "depends_on": null, - "description": null, - "docstatus": 0, - "doctype": "Custom Field", - "dt": "Serial No", - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "pricing_status", - "fieldtype": "Select", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "insert_after": "pricing_source", - "is_system_generated": 0, - "is_virtual": 0, - "label": "Pricing Status", - "length": 0, - "link_filters": null, - "mandatory_depends_on": null, - "modified": "2026-05-17 06:15:13.154504", - "module": null, - "name": "Serial No-pricing_status", - "no_copy": 0, - "non_negative": 0, - "options": "Needs Pricing\nPriced\nManual Override\nExpired\nError", - "permlevel": 0, - "placeholder": null, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "show_dashboard": 0, - "sort_options": 0, - "translatable": 0, - "unique": 0, - "width": null - }, - { - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0.3", - "depends_on": null, - "description": null, - "docstatus": 0, - "doctype": "Custom Field", - "dt": "Item", - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "grade_d_multiplier", - "fieldtype": "Float", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "insert_after": "grade_c_multiplier", - "is_system_generated": 0, - "is_virtual": 0, - "label": "Grade D Multiplier", - "length": 0, - "link_filters": null, - "mandatory_depends_on": null, - "modified": "2026-05-17 06:15:13.819557", - "module": null, - "name": "Item-grade_d_multiplier", - "no_copy": 0, - "non_negative": 0, - "options": null, - "permlevel": 0, - "placeholder": null, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "show_dashboard": 0, - "sort_options": 0, - "translatable": 0, - "unique": 0, - "width": null - }, { "allow_in_quick_entry": 0, "allow_on_submit": 0, @@ -2792,6 +2621,63 @@ "unique": 0, "width": null }, + { + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "docstatus": 0, + "doctype": "Custom Field", + "dt": "Serial No", + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "pricing_source", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "insert_after": "assigned_price", + "is_system_generated": 0, + "is_virtual": 0, + "label": "Pricing Source", + "length": 0, + "link_filters": null, + "mandatory_depends_on": null, + "modified": "2026-05-17 06:15:13.060584", + "module": null, + "name": "Serial No-pricing_source", + "no_copy": 0, + "non_negative": 0, + "options": null, + "permlevel": 0, + "placeholder": null, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "show_dashboard": 0, + "sort_options": 0, + "translatable": 0, + "unique": 0, + "width": null + }, { "allow_in_quick_entry": 0, "allow_on_submit": 0, @@ -2849,6 +2735,120 @@ "unique": 0, "width": null }, + { + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": "Flat value for commodity (C/D/F grade) units", + "docstatus": 0, + "doctype": "Custom Field", + "dt": "Serial No", + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "commodity_value", + "fieldtype": "Currency", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "insert_after": "assigned_price", + "is_system_generated": 0, + "is_virtual": 0, + "label": "Commodity Value", + "length": 0, + "link_filters": null, + "mandatory_depends_on": null, + "modified": "2026-05-17 07:00:00.719415", + "module": null, + "name": "Serial No-commodity_value", + "no_copy": 0, + "non_negative": 0, + "options": null, + "permlevel": 0, + "placeholder": null, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "show_dashboard": 0, + "sort_options": 0, + "translatable": 0, + "unique": 0, + "width": null + }, + { + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "Needs Pricing", + "depends_on": null, + "description": null, + "docstatus": 0, + "doctype": "Custom Field", + "dt": "Serial No", + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "pricing_status", + "fieldtype": "Select", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "insert_after": "pricing_source", + "is_system_generated": 0, + "is_virtual": 0, + "label": "Pricing Status", + "length": 0, + "link_filters": null, + "mandatory_depends_on": null, + "modified": "2026-05-17 06:15:13.154504", + "module": null, + "name": "Serial No-pricing_status", + "no_copy": 0, + "non_negative": 0, + "options": "Needs Pricing\nPriced\nManual Override\nExpired\nError", + "permlevel": 0, + "placeholder": null, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "show_dashboard": 0, + "sort_options": 0, + "translatable": 0, + "unique": 0, + "width": null + }, { "allow_in_quick_entry": 0, "allow_on_submit": 0, @@ -2906,6 +2906,63 @@ "unique": 0, "width": null }, + { + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0.8", + "depends_on": null, + "description": null, + "docstatus": 0, + "doctype": "Custom Field", + "dt": "Item", + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "grade_b_multiplier", + "fieldtype": "Float", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "insert_after": "grade_a_multiplier", + "is_system_generated": 0, + "is_virtual": 0, + "label": "Grade B Multiplier", + "length": 0, + "link_filters": null, + "mandatory_depends_on": null, + "modified": "2026-05-17 06:15:13.627636", + "module": null, + "name": "Item-grade_b_multiplier", + "no_copy": 0, + "non_negative": 0, + "options": null, + "permlevel": 0, + "placeholder": null, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "show_dashboard": 0, + "sort_options": 0, + "translatable": 0, + "unique": 0, + "width": null + }, { "allow_in_quick_entry": 0, "allow_on_submit": 0, @@ -2963,6 +3020,120 @@ "unique": 0, "width": null }, + { + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0.5", + "depends_on": null, + "description": null, + "docstatus": 0, + "doctype": "Custom Field", + "dt": "Item", + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "grade_c_multiplier", + "fieldtype": "Float", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "insert_after": "grade_b_multiplier", + "is_system_generated": 0, + "is_virtual": 0, + "label": "Grade C Multiplier", + "length": 0, + "link_filters": null, + "mandatory_depends_on": null, + "modified": "2026-05-17 06:15:13.722986", + "module": null, + "name": "Item-grade_c_multiplier", + "no_copy": 0, + "non_negative": 0, + "options": null, + "permlevel": 0, + "placeholder": null, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "show_dashboard": 0, + "sort_options": 0, + "translatable": 0, + "unique": 0, + "width": null + }, + { + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0.3", + "depends_on": null, + "description": null, + "docstatus": 0, + "doctype": "Custom Field", + "dt": "Item", + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "grade_d_multiplier", + "fieldtype": "Float", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "insert_after": "grade_c_multiplier", + "is_system_generated": 0, + "is_virtual": 0, + "label": "Grade D Multiplier", + "length": 0, + "link_filters": null, + "mandatory_depends_on": null, + "modified": "2026-05-17 06:15:13.819557", + "module": null, + "name": "Item-grade_d_multiplier", + "no_copy": 0, + "non_negative": 0, + "options": null, + "permlevel": 0, + "placeholder": null, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "show_dashboard": 0, + "sort_options": 0, + "translatable": 0, + "unique": 0, + "width": null + }, { "allow_in_quick_entry": 0, "allow_on_submit": 0, @@ -3134,6 +3305,63 @@ "unique": 0, "width": null }, + { + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": null, + "description": "Flat price for C/D/F grade units", + "docstatus": 0, + "doctype": "Custom Field", + "dt": "Item", + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "commodity_flat_price", + "fieldtype": "Currency", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "insert_after": "grade_d_multiplier", + "is_system_generated": 0, + "is_virtual": 0, + "label": "Commodity Flat Price", + "length": 0, + "link_filters": null, + "mandatory_depends_on": null, + "modified": "2026-05-17 07:00:00.283254", + "module": null, + "name": "Item-commodity_flat_price", + "no_copy": 0, + "non_negative": 0, + "options": null, + "permlevel": 0, + "placeholder": null, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "show_dashboard": 0, + "sort_options": 0, + "translatable": 0, + "unique": 0, + "width": null + }, { "allow_in_quick_entry": 0, "allow_on_submit": 0, @@ -3887,11 +4115,11 @@ "description": null, "docstatus": 0, "doctype": "Custom Field", - "dt": "Serial No", + "dt": "Sales Order", "fetch_from": null, "fetch_if_empty": 0, - "fieldname": "mdm", - "fieldtype": "Data", + "fieldname": "exempt_from_sales_tax", + "fieldtype": "Check", "hidden": 0, "hide_border": 0, "hide_days": 0, @@ -3902,16 +4130,16 @@ "in_list_view": 0, "in_preview": 0, "in_standard_filter": 0, - "insert_after": "computrace", - "is_system_generated": 0, + "insert_after": "taxes_and_charges", + "is_system_generated": 1, "is_virtual": 0, - "label": "MDM/Autopilot", + "label": "Is customer exempted from sales tax?", "length": 0, "link_filters": null, "mandatory_depends_on": null, - "modified": "2026-05-17 05:39:18.215690", + "modified": "2026-05-17 05:39:19.831251", "module": "Westech R2", - "name": "Serial No-mdm", + "name": "Sales Order-exempt_from_sales_tax", "no_copy": 0, "non_negative": 0, "options": null, @@ -3944,11 +4172,11 @@ "description": null, "docstatus": 0, "doctype": "Custom Field", - "dt": "Sales Order", + "dt": "Serial No", "fetch_from": null, "fetch_if_empty": 0, - "fieldname": "exempt_from_sales_tax", - "fieldtype": "Check", + "fieldname": "mdm", + "fieldtype": "Data", "hidden": 0, "hide_border": 0, "hide_days": 0, @@ -3959,16 +4187,16 @@ "in_list_view": 0, "in_preview": 0, "in_standard_filter": 0, - "insert_after": "taxes_and_charges", - "is_system_generated": 1, + "insert_after": "computrace", + "is_system_generated": 0, "is_virtual": 0, - "label": "Is customer exempted from sales tax?", + "label": "MDM/Autopilot", "length": 0, "link_filters": null, "mandatory_depends_on": null, - "modified": "2026-05-17 05:39:19.831251", + "modified": "2026-05-17 05:39:18.215690", "module": "Westech R2", - "name": "Sales Order-exempt_from_sales_tax", + "name": "Serial No-mdm", "no_copy": 0, "non_negative": 0, "options": null, diff --git a/westech_r2/fixtures/doctype.json b/westech_r2/fixtures/doctype.json index 6a20f1a..b881c2e 100644 --- a/westech_r2/fixtures/doctype.json +++ b/westech_r2/fixtures/doctype.json @@ -1,4 +1,66132 @@ [ + { + "_assign": null, + "_comments": null, + "_last_update": null, + "_liked_by": null, + "_user_tags": null, + "actions": [], + "allow_auto_repeat": 0, + "allow_copy": 0, + "allow_events_in_timeline": 0, + "allow_guest_to_view": 0, + "allow_import": 0, + "allow_rename": 1, + "app": null, + "autoname": "field:country", + "beta": 0, + "color": null, + "colour": null, + "custom": 0, + "default_email_template": null, + "default_print_format": null, + "default_view": null, + "description": null, + "docstatus": 0, + "doctype": "DocType", + "document_type": "Setup", + "documentation": null, + "editable_grid": 0, + "email_append_to": 0, + "engine": "InnoDB", + "fields": [ + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "country", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 1, + "is_virtual": 0, + "label": "Country", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Country", + "parent": "Address Template", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 1, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 1, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": null, + "description": "This format is used if country specific format is not found", + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "is_default", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Is Default", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Address Template", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": "
Uses Jinja Templating and all the fields of Address (including Custom Fields if any) will be available
\n{{ address_line1 }}<br>\n{% if address_line2 %}{{ address_line2 }}<br>{% endif -%}\n{{ city }}<br>\n{% if state %}{{ state }}<br>{% endif -%}\n{% if pincode %} PIN: {{ pincode }}<br>{% endif -%}\n{{ country }}<br>\n{% if phone %}Phone: {{ phone }}<br>{% endif -%}\n{% if fax %}Fax: {{ fax }}<br>{% endif -%}\n{% if email_id %}Email: {{ email_id }}<br>{% endif -%}\n",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "template",
+ "fieldtype": "Code",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Template",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Address Template",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": "fa fa-map-marker",
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 0,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 0,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "7fa3a32d681d27397a1a2130dd210166",
+ "modified": "2026-05-17 06:56:35.485354",
+ "module": "Contacts",
+ "name": "Address Template",
+ "naming_rule": null,
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [
+ {
+ "amend": 0,
+ "cancel": 0,
+ "create": 1,
+ "delete": 1,
+ "email": 0,
+ "export": 1,
+ "if_owner": 0,
+ "import": 0,
+ "match": null,
+ "parent": "Address Template",
+ "parentfield": "permissions",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "print": 0,
+ "read": 1,
+ "report": 1,
+ "role": "System Manager",
+ "select": 0,
+ "share": 1,
+ "submit": 0,
+ "write": 1
+ }
+ ],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 1,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 0,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 1,
+ "allow_rename": 1,
+ "app": null,
+ "autoname": "Prompt",
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "Document",
+ "documentation": null,
+ "editable_grid": 0,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "subject",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Subject",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Email Template",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "use_html",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Use HTML",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Email Template",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval:doc.use_html",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "response_html",
+ "fieldtype": "Code",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Response ",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Jinja",
+ "parent": "Email Template",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval:!doc.use_html",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "response",
+ "fieldtype": "Text Editor",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Response",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": "eval:!doc.use_html",
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Email Template",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "section_break_4",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Email Template",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "email_reply_help",
+ "fieldtype": "HTML",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Email Reply Help",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Order Overdue\n\nTransaction {{ name }} has exceeded Due Date. Please take necessary action.\n\nDetails\n\n- Customer: {{ customer }}\n- Amount: {{ grand_total }}\n\n\nThe fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)
\n\nTemplates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
\n", + "parent": "Email Template", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + } + ], + "force_re_route_to_default_view": 0, + "grid_page_length": 0, + "has_web_view": 0, + "hide_toolbar": 0, + "icon": "fa fa-comment", + "image_field": null, + "in_create": 0, + "index_web_pages_for_search": 0, + "is_calendar_and_gantt": 0, + "is_published_field": null, + "is_submittable": 0, + "is_tree": 0, + "is_virtual": 0, + "issingle": 0, + "istable": 0, + "links": [], + "make_attachments_public": 0, + "max_attachments": 0, + "menu_index": null, + "migration_hash": "3a42798c76241ad5c3a5b0c3a1a36492", + "modified": "2026-05-17 06:56:34.939987", + "module": "Email", + "name": "Email Template", + "naming_rule": "Set by user", + "nsm_parent_field": null, + "parent_node": null, + "permissions": [ + { + "amend": 0, + "cancel": 0, + "create": 0, + "delete": 0, + "email": 0, + "export": 0, + "if_owner": 0, + "import": 0, + "match": null, + "parent": "Email Template", + "parentfield": "permissions", + "parenttype": "DocType", + "permlevel": 0, + "print": 0, + "read": 1, + "report": 0, + "role": "Desk User", + "select": 0, + "share": 0, + "submit": 0, + "write": 0 + }, + { + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "if_owner": 0, + "import": 1, + "match": null, + "parent": "Email Template", + "parentfield": "permissions", + "parenttype": "DocType", + "permlevel": 0, + "print": 0, + "read": 1, + "report": 1, + "role": "System Manager", + "select": 0, + "share": 1, + "submit": 0, + "write": 1 + } + ], + "print_outline": null, + "protect_attached_files": 0, + "queue_in_background": 0, + "quick_entry": 0, + "read_only": 0, + "recipient_account_field": null, + "restrict_to_domain": null, + "route": null, + "row_format": "Dynamic", + "rows_threshold_for_grid_search": 0, + "search_fields": null, + "sender_field": null, + "sender_name_field": null, + "show_name_in_global_search": 0, + "show_preview_popup": 0, + "show_title_field_in_link": 0, + "smallicon": null, + "sort_field": "modified", + "sort_order": "DESC", + "states": [], + "subject": null, + "subject_field": null, + "tag_fields": null, + "timeline_field": null, + "title_field": null, + "track_changes": 1, + "track_seen": 0, + "track_views": 0, + "translated_doctype": 0, + "website_search_field": null + }, + { + "_assign": null, + "_comments": null, + "_last_update": null, + "_liked_by": null, + "_user_tags": null, + "actions": [], + "allow_auto_repeat": 0, + "allow_copy": 1, + "allow_events_in_timeline": 0, + "allow_guest_to_view": 0, + "allow_import": 0, + "allow_rename": 0, + "app": null, + "autoname": null, + "beta": 0, + "color": null, + "colour": null, + "custom": 0, + "default_email_template": null, + "default_print_format": null, + "default_view": null, + "description": null, + "docstatus": 0, + "doctype": "DocType", + "document_type": null, + "documentation": null, + "editable_grid": 0, + "email_append_to": 0, + "engine": "InnoDB", + "fields": [ + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "company", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Company", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Company", + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "party_type", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Party Type", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "DocType", + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break_4", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval:doc.party_type", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "party", + "fieldtype": "Dynamic Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Party", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "party_type", + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval:doc.company && doc.party", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "receivable_payable_account", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Receivable / Payable Account", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Account", + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval:doc.party", + "description": "Only 'Payment Entries' made against this advance account are supported.", + "documentation_url": "https://docs.erpnext.com/docs/user/manual/en/advance-in-separate-party-account", + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "default_advance_account", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Default Advance Account", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": "doc.party_type", + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Account", + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 1, + "collapsible_depends_on": "eval: doc.invoices.length == 0", + "columns": 0, + "default": null, + "depends_on": "eval:doc.receivable_payable_account", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "col_break1", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Filters", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "from_invoice_date", + "fieldtype": "Date", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "From Invoice Date", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "from_payment_date", + "fieldtype": "Date", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "From Payment Date", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "minimum_invoice_amount", + "fieldtype": "Currency", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Minimum Invoice Amount", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "minimum_payment_amount", + "fieldtype": "Currency", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Minimum Payment Amount", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break_11", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "to_invoice_date", + "fieldtype": "Date", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "To Invoice Date", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "to_payment_date", + "fieldtype": "Date", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "To Payment Date", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "maximum_invoice_amount", + "fieldtype": "Currency", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Maximum Invoice Amount", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "maximum_payment_amount", + "fieldtype": "Currency", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Maximum Payment Amount", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break_13", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "50", + "depends_on": null, + "description": "System will fetch all the entries if limit value is zero.", + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "invoice_limit", + "fieldtype": "Int", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Invoice Limit", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "50", + "depends_on": null, + "description": "System will fetch all the entries if limit value is zero.", + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "payment_limit", + "fieldtype": "Int", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Payment Limit", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": "This filter will be applied to Journal Entry.", + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "bank_cash_account", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Bank / Cash Account", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Account", + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 1, + "collapsible_depends_on": "eval: doc.invoices.length == 0", + "columns": 0, + "default": null, + "depends_on": "eval:doc.receivable_payable_account", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "accounting_dimensions_section", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Accounting Dimensions Filter", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "cost_center", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Cost Center", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Cost Center", + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "dimension_col_break", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "project", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Project", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Project", + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval:(doc.payments).length || (doc.invoices).length", + "description": "If you need to reconcile particular transactions against each other, then please select accordingly. If not, all the transactions will be allocated in FIFO order.", + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "sec_break1", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Unreconciled Entries", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "invoice_name", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Filter on Invoice", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "invoices", + "fieldtype": "Table", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Invoices", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Payment Reconciliation Invoice", + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break_15", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "payment_name", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Filter on Payment", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "payments", + "fieldtype": "Table", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Payments", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Payment Reconciliation Payment", + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "allocation", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "sec_break2", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Allocated Entries", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "allocation", + "fieldtype": "Table", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Allocation", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Payment Reconciliation Allocation", + "parent": "Payment Reconciliation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + } + ], + "force_re_route_to_default_view": 0, + "grid_page_length": 0, + "has_web_view": 0, + "hide_toolbar": 1, + "icon": "icon-resize-horizontal", + "image_field": null, + "in_create": 0, + "index_web_pages_for_search": 0, + "is_calendar_and_gantt": 0, + "is_published_field": null, + "is_submittable": 0, + "is_tree": 0, + "is_virtual": 1, + "issingle": 1, + "istable": 0, + "links": [], + "make_attachments_public": 0, + "max_attachments": 0, + "menu_index": null, + "migration_hash": "c1d25036da2880f285aa15a85a402942", + "modified": "2026-05-17 06:56:36.605198", + "module": "Accounts", + "name": "Payment Reconciliation", + "naming_rule": null, + "nsm_parent_field": null, + "parent_node": null, + "permissions": [ + { + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 1, + "email": 0, + "export": 0, + "if_owner": 0, + "import": 0, + "match": null, + "parent": "Payment Reconciliation", + "parentfield": "permissions", + "parenttype": "DocType", + "permlevel": 0, + "print": 0, + "read": 1, + "report": 0, + "role": "Accounts Manager", + "select": 0, + "share": 1, + "submit": 0, + "write": 1 + }, + { + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 1, + "email": 0, + "export": 0, + "if_owner": 0, + "import": 0, + "match": null, + "parent": "Payment Reconciliation", + "parentfield": "permissions", + "parenttype": "DocType", + "permlevel": 0, + "print": 0, + "read": 1, + "report": 0, + "role": "Accounts User", + "select": 0, + "share": 1, + "submit": 0, + "write": 1 + } + ], + "print_outline": null, + "protect_attached_files": 0, + "queue_in_background": 0, + "quick_entry": 0, + "read_only": 0, + "recipient_account_field": null, + "restrict_to_domain": null, + "route": null, + "row_format": "Dynamic", + "rows_threshold_for_grid_search": 0, + "search_fields": null, + "sender_field": null, + "sender_name_field": null, + "show_name_in_global_search": 0, + "show_preview_popup": 0, + "show_title_field_in_link": 0, + "smallicon": null, + "sort_field": "modified", + "sort_order": "DESC", + "states": [], + "subject": null, + "subject_field": null, + "tag_fields": null, + "timeline_field": null, + "title_field": null, + "track_changes": 0, + "track_seen": 0, + "track_views": 0, + "translated_doctype": 0, + "website_search_field": null + }, + { + "_assign": null, + "_comments": null, + "_last_update": null, + "_liked_by": null, + "_user_tags": null, + "actions": [], + "allow_auto_repeat": 0, + "allow_copy": 0, + "allow_events_in_timeline": 0, + "allow_guest_to_view": 0, + "allow_import": 0, + "allow_rename": 0, + "app": null, + "autoname": null, + "beta": 0, + "color": null, + "colour": null, + "custom": 0, + "default_email_template": null, + "default_print_format": null, + "default_view": null, + "description": null, + "docstatus": 0, + "doctype": "DocType", + "document_type": null, + "documentation": null, + "editable_grid": 1, + "email_append_to": 0, + "engine": "InnoDB", + "fields": [ + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "reference_type", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Reference Type", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "DocType", + "parent": "Payment Reconciliation Payment", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 2, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "reference_name", + "fieldtype": "Dynamic Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Reference Name", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "reference_type", + "parent": "Payment Reconciliation Payment", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "posting_date", + "fieldtype": "Date", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Posting Date", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation Payment", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "is_advance", + "fieldtype": "Data", + "hidden": 1, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Is Advance", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation Payment", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "reference_row", + "fieldtype": "Data", + "hidden": 1, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Reference Row", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation Payment", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "col_break1", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation Payment", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 2, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "amount", + "fieldtype": "Currency", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Amount", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "currency", + "parent": "Payment Reconciliation Payment", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "difference_amount", + "fieldtype": "Currency", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Difference Amount", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "currency", + "parent": "Payment Reconciliation Payment", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "sec_break1", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation Payment", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "remarks", + "fieldtype": "Small Text", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Remarks", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation Payment", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "currency", + "fieldtype": "Link", + "hidden": 1, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Currency", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Currency", + "parent": "Payment Reconciliation Payment", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "exchange_rate", + "fieldtype": "Float", + "hidden": 1, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Exchange Rate", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation Payment", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "cost_center", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Cost Center", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Cost Center", + "parent": "Payment Reconciliation Payment", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + } + ], + "force_re_route_to_default_view": 0, + "grid_page_length": 0, + "has_web_view": 0, + "hide_toolbar": 0, + "icon": null, + "image_field": null, + "in_create": 0, + "index_web_pages_for_search": 0, + "is_calendar_and_gantt": 0, + "is_published_field": null, + "is_submittable": 0, + "is_tree": 0, + "is_virtual": 1, + "issingle": 0, + "istable": 1, + "links": [], + "make_attachments_public": 0, + "max_attachments": 0, + "menu_index": null, + "migration_hash": "17daae299e28b691b3ecacb1f11a5293", + "modified": "2026-05-17 06:56:36.437480", + "module": "Accounts", + "name": "Payment Reconciliation Payment", + "naming_rule": null, + "nsm_parent_field": null, + "parent_node": null, + "permissions": [], + "print_outline": null, + "protect_attached_files": 0, + "queue_in_background": 0, + "quick_entry": 1, + "read_only": 0, + "recipient_account_field": null, + "restrict_to_domain": null, + "route": null, + "row_format": "Dynamic", + "rows_threshold_for_grid_search": 0, + "search_fields": null, + "sender_field": null, + "sender_name_field": null, + "show_name_in_global_search": 0, + "show_preview_popup": 0, + "show_title_field_in_link": 0, + "smallicon": null, + "sort_field": "modified", + "sort_order": "DESC", + "states": [], + "subject": null, + "subject_field": null, + "tag_fields": null, + "timeline_field": null, + "title_field": null, + "track_changes": 0, + "track_seen": 0, + "track_views": 0, + "translated_doctype": 0, + "website_search_field": null + }, + { + "_assign": null, + "_comments": null, + "_last_update": null, + "_liked_by": null, + "_user_tags": null, + "actions": [], + "allow_auto_repeat": 0, + "allow_copy": 0, + "allow_events_in_timeline": 0, + "allow_guest_to_view": 0, + "allow_import": 0, + "allow_rename": 0, + "app": null, + "autoname": null, + "beta": 0, + "color": null, + "colour": null, + "custom": 0, + "default_email_template": null, + "default_print_format": null, + "default_view": null, + "description": null, + "docstatus": 0, + "doctype": "DocType", + "document_type": null, + "documentation": null, + "editable_grid": 1, + "email_append_to": 0, + "engine": "InnoDB", + "fields": [ + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "invoice_type", + "fieldtype": "Select", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Invoice Type", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Sales Invoice\nPurchase Invoice\nJournal Entry", + "parent": "Payment Reconciliation Invoice", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "invoice_number", + "fieldtype": "Dynamic Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Invoice Number", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "invoice_type", + "parent": "Payment Reconciliation Invoice", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "invoice_date", + "fieldtype": "Date", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Invoice Date", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation Invoice", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "col_break1", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation Invoice", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "amount", + "fieldtype": "Currency", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Amount", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "currency", + "parent": "Payment Reconciliation Invoice", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "outstanding_amount", + "fieldtype": "Currency", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Outstanding Amount", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "currency", + "parent": "Payment Reconciliation Invoice", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "currency", + "fieldtype": "Link", + "hidden": 1, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Currency", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Currency", + "parent": "Payment Reconciliation Invoice", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "exchange_rate", + "fieldtype": "Float", + "hidden": 1, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Exchange Rate", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Reconciliation Invoice", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + } + ], + "force_re_route_to_default_view": 0, + "grid_page_length": 0, + "has_web_view": 0, + "hide_toolbar": 0, + "icon": null, + "image_field": null, + "in_create": 0, + "index_web_pages_for_search": 0, + "is_calendar_and_gantt": 0, + "is_published_field": null, + "is_submittable": 0, + "is_tree": 0, + "is_virtual": 1, + "issingle": 0, + "istable": 1, + "links": [], + "make_attachments_public": 0, + "max_attachments": 0, + "menu_index": null, + "migration_hash": "088443418482c9cea3ccec366ec545c1", + "modified": "2026-05-17 06:56:36.242041", + "module": "Accounts", + "name": "Payment Reconciliation Invoice", + "naming_rule": null, + "nsm_parent_field": null, + "parent_node": null, + "permissions": [], + "print_outline": null, + "protect_attached_files": 0, + "queue_in_background": 0, + "quick_entry": 1, + "read_only": 0, + "recipient_account_field": null, + "restrict_to_domain": null, + "route": null, + "row_format": "Dynamic", + "rows_threshold_for_grid_search": 0, + "search_fields": null, + "sender_field": null, + "sender_name_field": null, + "show_name_in_global_search": 0, + "show_preview_popup": 0, + "show_title_field_in_link": 0, + "smallicon": null, + "sort_field": "modified", + "sort_order": "DESC", + "states": [], + "subject": null, + "subject_field": null, + "tag_fields": null, + "timeline_field": null, + "title_field": null, + "track_changes": 1, + "track_seen": 0, + "track_views": 0, + "translated_doctype": 0, + "website_search_field": null + }, + { + "_assign": null, + "_comments": null, + "_last_update": null, + "_liked_by": null, + "_user_tags": null, + "actions": [], + "allow_auto_repeat": 0, + "allow_copy": 0, + "allow_events_in_timeline": 0, + "allow_guest_to_view": 0, + "allow_import": 0, + "allow_rename": 0, + "app": null, + "autoname": "naming_series:", + "beta": 0, + "color": null, + "colour": null, + "custom": 0, + "default_email_template": null, + "default_print_format": null, + "default_view": null, + "description": null, + "docstatus": 0, + "doctype": "DocType", + "document_type": "Document", + "documentation": null, + "editable_grid": 0, + "email_append_to": 0, + "engine": "InnoDB", + "fields": [ + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "naming_series", + "fieldtype": "Select", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Series", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 1, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "MAT-LCV-.YYYY.-", + "parent": "Landed Cost Voucher", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 1, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 1, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "company", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 1, + "is_virtual": 0, + "label": "Company", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Company", + "parent": "Landed Cost Voucher", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 1, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break_2", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Landed Cost Voucher", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "Today", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "posting_date", + "fieldtype": "Date", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Posting Date", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Landed Cost Voucher", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "section_break_5", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 1, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Landed Cost Voucher", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "purchase_receipts", + "fieldtype": "Table", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Purchase Receipts", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Landed Cost Purchase Receipt", + "parent": "Landed Cost Voucher", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "purchase_receipt_items", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Purchase Receipt Items", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Landed Cost Voucher", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "get_items_from_purchase_receipts", + "fieldtype": "Button", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Get Items From Purchase Receipts", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Landed Cost Voucher", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "items", + "fieldtype": "Table", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Purchase Receipt Items", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 1, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Landed Cost Item", + "parent": "Landed Cost Voucher", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "sec_break1", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Applicable Charges", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Landed Cost Voucher", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "taxes", + "fieldtype": "Table", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Taxes and Charges", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Landed Cost Taxes and Charges", + "parent": "Landed Cost Voucher", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "section_break_9", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Landed Cost Voucher", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "total_taxes_and_charges", + "fieldtype": "Currency", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Total Taxes and Charges (Company Currency)", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Company:company:default_currency", + "parent": "Landed Cost Voucher", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "col_break1", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Landed Cost Voucher", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "distribute_charges_based_on", + "fieldtype": "Select", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Distribute Charges Based On", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Qty\nAmount\nDistribute Manually", + "parent": "Landed Cost Voucher", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "amended_from", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Amended From", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 1, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Landed Cost Voucher", + "parent": "Landed Cost Voucher", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 1, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "sec_break2", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Landed Cost Voucher", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "landed_cost_help", + "fieldtype": "HTML", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Landed Cost Help", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Landed Cost Voucher", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + } + ], + "force_re_route_to_default_view": 0, + "grid_page_length": 0, + "has_web_view": 0, + "hide_toolbar": 0, + "icon": "icon-usd", + "image_field": null, + "in_create": 0, + "index_web_pages_for_search": 1, + "is_calendar_and_gantt": 0, + "is_published_field": null, + "is_submittable": 1, + "is_tree": 0, + "is_virtual": 0, + "issingle": 0, + "istable": 0, + "links": [], + "make_attachments_public": 0, + "max_attachments": 0, + "menu_index": null, + "migration_hash": "2be9a0f475457b28288ae5d6431773c1", + "modified": "2026-05-17 06:56:38.607519", + "module": "Stock", + "name": "Landed Cost Voucher", + "naming_rule": null, + "nsm_parent_field": null, + "parent_node": null, + "permissions": [ + { + "amend": 1, + "cancel": 1, + "create": 1, + "delete": 1, + "email": 0, + "export": 1, + "if_owner": 0, + "import": 0, + "match": null, + "parent": "Landed Cost Voucher", + "parentfield": "permissions", + "parenttype": "DocType", + "permlevel": 0, + "print": 0, + "read": 1, + "report": 1, + "role": "Stock Manager", + "select": 0, + "share": 1, + "submit": 1, + "write": 1 + } + ], + "print_outline": null, + "protect_attached_files": 0, + "queue_in_background": 0, + "quick_entry": 0, + "read_only": 0, + "recipient_account_field": null, + "restrict_to_domain": null, + "route": null, + "row_format": "Dynamic", + "rows_threshold_for_grid_search": 0, + "search_fields": null, + "sender_field": null, + "sender_name_field": null, + "show_name_in_global_search": 1, + "show_preview_popup": 0, + "show_title_field_in_link": 0, + "smallicon": null, + "sort_field": "modified", + "sort_order": "DESC", + "states": [], + "subject": null, + "subject_field": null, + "tag_fields": null, + "timeline_field": null, + "title_field": null, + "track_changes": 0, + "track_seen": 0, + "track_views": 0, + "translated_doctype": 0, + "website_search_field": null + }, + { + "_assign": null, + "_comments": null, + "_last_update": null, + "_liked_by": null, + "_user_tags": null, + "actions": [], + "allow_auto_repeat": 0, + "allow_copy": 0, + "allow_events_in_timeline": 0, + "allow_guest_to_view": 0, + "allow_import": 0, + "allow_rename": 0, + "app": null, + "autoname": null, + "beta": 0, + "color": null, + "colour": null, + "custom": 0, + "default_email_template": null, + "default_print_format": null, + "default_view": null, + "description": null, + "docstatus": 0, + "doctype": "DocType", + "document_type": null, + "documentation": null, + "editable_grid": 1, + "email_append_to": 0, + "engine": "InnoDB", + "fields": [ + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval:cint(erpnext.is_perpetual_inventory_enabled(parent.company))", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "expense_account", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Expense Account", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": "eval:cint(erpnext.is_perpetual_inventory_enabled(parent.company))", + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Account", + "parent": "Landed Cost Taxes and Charges", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "account_currency", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Account Currency", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Currency", + "parent": "Landed Cost Taxes and Charges", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "exchange_rate", + "fieldtype": "Float", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Exchange Rate", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Landed Cost Taxes and Charges", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": "9", + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "description", + "fieldtype": "Small Text", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Description", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Landed Cost Taxes and Charges", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "col_break3", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Landed Cost Taxes and Charges", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": "50%" + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "amount", + "fieldtype": "Currency", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Amount", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "account_currency", + "parent": "Landed Cost Taxes and Charges", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "base_amount", + "fieldtype": "Currency", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Amount (Company Currency)", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Company:company:default_currency", + "parent": "Landed Cost Taxes and Charges", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "has_corrective_cost", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Has Corrective Cost", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Landed Cost Taxes and Charges", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + } + ], + "force_re_route_to_default_view": 0, + "grid_page_length": 0, + "has_web_view": 0, + "hide_toolbar": 0, + "icon": null, + "image_field": null, + "in_create": 0, + "index_web_pages_for_search": 1, + "is_calendar_and_gantt": 0, + "is_published_field": null, + "is_submittable": 0, + "is_tree": 0, + "is_virtual": 0, + "issingle": 0, + "istable": 1, + "links": [], + "make_attachments_public": 0, + "max_attachments": 0, + "menu_index": null, + "migration_hash": "c1dd91e37293b3b8461058487d46a6e3", + "modified": "2026-05-17 06:56:38.496108", + "module": "Stock", + "name": "Landed Cost Taxes and Charges", + "naming_rule": null, + "nsm_parent_field": null, + "parent_node": null, + "permissions": [], + "print_outline": null, + "protect_attached_files": 0, + "queue_in_background": 0, + "quick_entry": 0, + "read_only": 0, + "recipient_account_field": null, + "restrict_to_domain": null, + "route": null, + "row_format": "Dynamic", + "rows_threshold_for_grid_search": 0, + "search_fields": null, + "sender_field": null, + "sender_name_field": null, + "show_name_in_global_search": 0, + "show_preview_popup": 0, + "show_title_field_in_link": 0, + "smallicon": null, + "sort_field": "modified", + "sort_order": "DESC", + "states": [], + "subject": null, + "subject_field": null, + "tag_fields": null, + "timeline_field": null, + "title_field": null, + "track_changes": 0, + "track_seen": 0, + "track_views": 0, + "translated_doctype": 0, + "website_search_field": null + }, + { + "_assign": null, + "_comments": null, + "_last_update": null, + "_liked_by": null, + "_user_tags": null, + "actions": [], + "allow_auto_repeat": 0, + "allow_copy": 0, + "allow_events_in_timeline": 0, + "allow_guest_to_view": 0, + "allow_import": 0, + "allow_rename": 1, + "app": null, + "autoname": "Prompt", + "beta": 0, + "color": null, + "colour": null, + "custom": 0, + "default_email_template": null, + "default_print_format": null, + "default_view": null, + "description": null, + "docstatus": 0, + "doctype": "DocType", + "document_type": "System", + "documentation": null, + "editable_grid": 0, + "email_append_to": 0, + "engine": "InnoDB", + "fields": [ + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "1", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "enabled", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Enabled", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Notification", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "is_standard", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Is Standard", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 1, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Notification", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "is_standard", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "module", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 1, + "is_virtual": 0, + "label": "Module", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Module Def", + "parent": "Notification", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break_2", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Notification", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "Email", + "depends_on": "eval: !doc.disable_channel", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "channel", + "fieldtype": "Select", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Channel", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Email\nSlack\nSystem Notification\nSMS", + "parent": "Notification", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 1, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval:doc.channel=='Slack'", + "description": "To use Slack Channel, add a Slack Webhook URL.", + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "slack_webhook_url", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Slack Channel", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": "eval:doc.channel=='Slack'", + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Slack Webhook URL", + "parent": "Notification", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "filters", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Filters", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Notification", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval: in_list(['Email', 'Slack', 'System Notification'], doc.channel)", + "description": "To add dynamic subject, use jinja tags like\n\n{{ doc.name }} DeliveredCondition Examples:
\ndoc.status==\"Open\"\n", + "parent": "Notification", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 1, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "property_section", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Set Property After Alert", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Notification", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "set_property_after_alert", + "fieldtype": "Select", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Set Property After Alert", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Notification", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "property_value", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Value To Be Set", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Notification", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval:doc.channel !=\"Slack\"", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break_5", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Recipients", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Notification", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": "eval:doc.channel == 'Email'", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "send_to_all_assignees", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Send To All Assignees", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Notification", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "recipients", + "fieldtype": "Table", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Recipients", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": "eval:doc.channel!=='Slack' && !doc.send_to_all_assignees", + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Notification Recipient", + "parent": "Notification", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "message_sb", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Message", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Notification", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "Markdown", + "depends_on": "is_standard", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "message_type", + "fieldtype": "Select", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Message Type", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Markdown\nHTML\nPlain Text", + "parent": "Notification", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "Add your message here", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "message", + "fieldtype": "Code", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 1, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Message", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Jinja", + "parent": "Notification", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "message_examples", + "fieldtype": "HTML", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Message Examples", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "
doc.due_date==nowdate()
doc.total > 40000\n
<h3>Order Overdue</h3>\n\n<p>Transaction {{ doc.name }} has exceeded Due Date. Please take necessary action.</p>\n\n<!-- show last comment -->\n{% if comments %}\nLast comment: {{ comments[-1].comment }} by {{ comments[-1].by }}\n{% endif %}\n\n<h4>Details</h4>\n\n<ul>\n<li>Customer: {{ doc.customer }}\n<li>Amount: {{ doc.grand_total }}\n</ul>\n",
+ "parent": "Notification",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "view_properties",
+ "fieldtype": "Button",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "View Properties (via Customize Form)",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Notification",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 1,
+ "collapsible_depends_on": "attach_print",
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_25",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Attachment Settings",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Notification",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "attach_print",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Attach Print",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Notification",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "attach_print",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "print_format",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Print Format",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Print Format",
+ "parent": "Notification",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_llcs",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Notification",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "attach_files",
+ "fieldtype": "Select",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Attach Files",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "\nFrom Field\nAll",
+ "parent": "Notification",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval:doc.attach_files === \"From Field\"",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "from_attach_field",
+ "fieldtype": "Select",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "From Attach Field",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": "eval:doc.attach_files === \"From Field\"",
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Notification",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": "fa fa-envelope",
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 1,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 0,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "4e38baa41cf5d8bc9060fc5d6a8fc06d",
+ "modified": "2026-05-17 06:56:33.628896",
+ "module": "Email",
+ "name": "Notification",
+ "naming_rule": "Set by user",
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [
+ {
+ "amend": 0,
+ "cancel": 0,
+ "create": 1,
+ "delete": 1,
+ "email": 0,
+ "export": 1,
+ "if_owner": 0,
+ "import": 0,
+ "match": null,
+ "parent": "Notification",
+ "parentfield": "permissions",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "print": 0,
+ "read": 1,
+ "report": 1,
+ "role": "System Manager",
+ "select": 0,
+ "share": 1,
+ "submit": 0,
+ "write": 1
+ }
+ ],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 0,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": "subject",
+ "track_changes": 1,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 0,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": null,
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": null,
+ "documentation": null,
+ "editable_grid": 1,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "receiver_by_document_field",
+ "fieldtype": "Select",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Receiver By Document Field",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Notification Recipient",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "receiver_by_role",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Receiver By Role",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Role",
+ "parent": "Notification Recipient",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval:parent.channel=='Email'",
+ "description": "Optional: Always send to these ids. Each Email Address on a new row",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "cc",
+ "fieldtype": "Code",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "CC",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Notification Recipient",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval:parent.channel=='Email'",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "bcc",
+ "fieldtype": "Code",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "BCC",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Notification Recipient",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": "Expression, Optional",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "condition",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Condition",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Notification Recipient",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": null,
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 1,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 1,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "5e12da04e5e7b1b773ebe9b29f68daa7",
+ "modified": "2026-05-17 06:56:34.870500",
+ "module": "Email",
+ "name": "Notification Recipient",
+ "naming_rule": null,
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 1,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 0,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 0,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": null,
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "System",
+ "documentation": null,
+ "editable_grid": 0,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "pdf_settings",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "PDF Settings",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "1",
+ "depends_on": null,
+ "description": "Send Email Print Attachments as PDF (Recommended)",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "send_print_as_pdf",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Send Print as PDF",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "1",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "repeat_header_footer",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Repeat Header and Footer",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_4",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "A4",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "pdf_page_size",
+ "fieldtype": "Select",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "PDF Page Size",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "A0\nA1\nA2\nA3\nA4\nA5\nA6\nA7\nA8\nA9\nB0\nB1\nB2\nB3\nB4\nB5\nB6\nB7\nB8\nB9\nB10\nC5E\nComm10E\nDLE\nExecutive\nFolio\nLedger\nLegal\nLetter\nTabloid\nCustom",
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval:doc.pdf_page_size == \"Custom\"",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "pdf_page_height",
+ "fieldtype": "Float",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "PDF Page Height (in mm)",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval:doc.pdf_page_size == \"Custom\"",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "pdf_page_width",
+ "fieldtype": "Float",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "PDF Page Width (in mm)",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "view_link_in_email",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Page Settings",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "1",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "with_letterhead",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Print with letterhead",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "1",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "allow_print_for_draft",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Allow Print for Draft",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "1",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "add_draft_heading",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Always add \"Draft\" Heading for printing draft documents",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_10",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "allow_page_break_inside_tables",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Allow page break inside tables",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "allow_print_for_cancelled",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Allow Print for Cancelled",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "server_printer",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Print Server",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": "enable_print_server",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "enable_print_server",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Enable Print Server",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": "enable_print_server",
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "raw_printing_section",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Raw Printing",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "enable_raw_printing",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Enable Raw Printing",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "print_style_section",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Print Style",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "Redesign",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "print_style",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Print Style",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Print Style",
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "print_style_preview",
+ "fieldtype": "HTML",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Print Style Preview",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "section_break_8",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Fonts",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "Default",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "font",
+ "fieldtype": "Select",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Font",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Default\nHelvetica Neue\nArial\nHelvetica\nInter\nVerdana\nMonospace",
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": "In points. Default is 9.",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "font_size",
+ "fieldtype": "Float",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Font Size",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Print Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": "fa fa-cog",
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 1,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 1,
+ "istable": 0,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "981239ff602e4b430db14182d1365e9c",
+ "modified": "2026-05-17 06:56:35.329021",
+ "module": "Printing",
+ "name": "Print Settings",
+ "naming_rule": null,
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [
+ {
+ "amend": 0,
+ "cancel": 0,
+ "create": 1,
+ "delete": 0,
+ "email": 0,
+ "export": 0,
+ "if_owner": 0,
+ "import": 0,
+ "match": null,
+ "parent": "Print Settings",
+ "parentfield": "permissions",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "print": 0,
+ "read": 1,
+ "report": 0,
+ "role": "System Manager",
+ "select": 0,
+ "share": 1,
+ "submit": 0,
+ "write": 1
+ }
+ ],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 1,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 1,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 0,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": "field:language_code",
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "Setup",
+ "documentation": null,
+ "editable_grid": 0,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "1",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "enabled",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Enabled",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Language",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "language_code",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Language Code",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Language",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 1,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "language_name",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Language Name",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Language",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 1,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "flag",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Flag",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Language",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "based_on",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Based On",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Language",
+ "parent": "Language",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": "fa fa-globe",
+ "image_field": null,
+ "in_create": 1,
+ "index_web_pages_for_search": 0,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 0,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "e0ba0094bece95fd9aa6ef5f0622049c",
+ "modified": "2026-05-17 06:56:33.988428",
+ "module": "Core",
+ "name": "Language",
+ "naming_rule": "By fieldname",
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [
+ {
+ "amend": 0,
+ "cancel": 0,
+ "create": 1,
+ "delete": 1,
+ "email": 0,
+ "export": 0,
+ "if_owner": 0,
+ "import": 0,
+ "match": null,
+ "parent": "Language",
+ "parentfield": "permissions",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "print": 0,
+ "read": 1,
+ "report": 0,
+ "role": "System Manager",
+ "select": 0,
+ "share": 0,
+ "submit": 0,
+ "write": 1
+ },
+ {
+ "amend": 0,
+ "cancel": 0,
+ "create": 0,
+ "delete": 0,
+ "email": 0,
+ "export": 0,
+ "if_owner": 0,
+ "import": 0,
+ "match": null,
+ "parent": "Language",
+ "parentfield": "permissions",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "print": 0,
+ "read": 1,
+ "report": 0,
+ "role": "All",
+ "select": 0,
+ "share": 0,
+ "submit": 0,
+ "write": 0
+ }
+ ],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 0,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": "language_name",
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 1,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": "language_name",
+ "track_changes": 1,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 0,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": null,
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": null,
+ "documentation": null,
+ "editable_grid": 1,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "company",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 1,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Company",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Company",
+ "parent": "Party Account",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "account",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Default Account",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Account",
+ "parent": "Party Account",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "advance_account",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Advance Account",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Account",
+ "parent": "Party Account",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": null,
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 1,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 1,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "7e01da6028a93b38b82ff6da82cdd2da",
+ "modified": "2026-05-17 06:56:36.838517",
+ "module": "Accounts",
+ "name": "Party Account",
+ "naming_rule": null,
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 1,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 0,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 0,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": null,
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "Document",
+ "documentation": null,
+ "editable_grid": 0,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "form_tab",
+ "fieldtype": "Tab Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Form",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "title",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Title",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 1,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "route",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Route",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 1,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "published",
+ "fieldtype": "Check",
+ "hidden": 1,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Published",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_vdhm",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "doc_type",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 1,
+ "is_virtual": 0,
+ "label": "Select DocType",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "DocType",
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "module",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Module",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Module Def",
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "is_standard",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Is Standard",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 1,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "section_break_1",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "introduction_text",
+ "fieldtype": "Text Editor",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 1,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Introduction",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "web_form_fields",
+ "fieldtype": "Table",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Web Form Fields",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Web Form Field",
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "settings_tab",
+ "fieldtype": "Tab Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Settings",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "access_control_section",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Access Control",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": "If enabled, all responses on the web form will be submitted anonymously",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "anonymous",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Anonymous responses",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": "eval:!doc.anonymous",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "login_required",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Login required",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_2",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "apply_document_permissions",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Apply Document Permissions",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": "login_required",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "allow_edit",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Allow Editing After Submit",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": "login_required",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "allow_multiple",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Allow Multiple Responses",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": "eval: doc.allow_multiple && doc.login_required",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "allow_delete",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Allow Delete",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "form_settings_section",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Form Settings",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": "Allow saving if mandatory fields are not filled",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "allow_incomplete",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Allow Incomplete Forms",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": "login_required",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "allow_comments",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Allow Comments",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "allow_print",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Allow Print",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "allow_print",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "print_format",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Print Format",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Print Format",
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": "Set size in MB",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "max_attachment_size",
+ "fieldtype": "Int",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Max attachment size",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": "login_required",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "show_attachments",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Show Attachments",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_hhec",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin.",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "allowed_embedding_domains",
+ "fieldtype": "Small Text",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Allowed embedding domains",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "condition_section",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Web Form",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "condition_description",
+ "fieldtype": "HTML",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Condition description",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Multiple webforms can be created for a single doctype. Add filters specific to this webform to display correct record after submission.
For Example:
\nIf you create a separate webform every year to capture feedback from employees add a \n field named year in doctype and add a filter year = 2023
\n", + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "condition_json", + "fieldtype": "JSON", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Condition JSON", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 1, + "collapsible_depends_on": "show_list", + "columns": 0, + "default": null, + "depends_on": "eval:!doc.anonymous", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "section_break_3", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "List Settings", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "list_setting_message", + "fieldtype": "HTML", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "List setting message", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": "login_required", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "show_list", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Show List", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval: doc.login_required && doc.show_list", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "list_title", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Title", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval: doc.login_required && doc.show_list", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "list_columns", + "fieldtype": "Table", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "List Columns", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Web Form List Column", + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 1, + "collapsible_depends_on": "show_sidebar", + "columns": 0, + "default": null, + "depends_on": "eval:!doc.anonymous", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "section_break_4", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Sidebar Settings", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "show_sidebar", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Show Sidebar", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "website_sidebar", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Website Sidebar", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Website Sidebar", + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "customization_tab", + "fieldtype": "Tab Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Customization", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "Save", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "button_label", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Submit button label", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "banner_image", + "fieldtype": "Attach Image", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Banner Image", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break_3", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]", + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "breadcrumbs", + "fieldtype": "Code", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Breadcrumbs", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": "140px", + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 1, + "collapsible_depends_on": "eval: doc.success_title || doc.success_message || doc.success_url", + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "section_break_5", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "After Submission", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "success_title", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Success title", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": "Go to this URL after completing the form", + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "success_url", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Success URL", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break_4", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": "Message to be displayed on successful completion", + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "success_message", + "fieldtype": "Text", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Success message", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 1, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "meta_section", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Meta", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "meta_title", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Meta title", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "meta_description", + "fieldtype": "Small Text", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Meta description", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break_khxs", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "meta_image", + "fieldtype": "Attach Image", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Meta image", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 1, + "collapsible_depends_on": "eval: doc.client_script || doc.custom_css", + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "section_break_6", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Scripting / Style", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": "For help see Client Script API and Examples", + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "client_script", + "fieldtype": "Code", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Client script", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Javascript", + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "custom_css", + "fieldtype": "Code", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Custom CSS", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "CSS", + "parent": "Web Form", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + } + ], + "force_re_route_to_default_view": 0, + "grid_page_length": 0, + "has_web_view": 1, + "hide_toolbar": 0, + "icon": "icon-edit", + "image_field": null, + "in_create": 0, + "index_web_pages_for_search": 0, + "is_calendar_and_gantt": 0, + "is_published_field": "published", + "is_submittable": 0, + "is_tree": 0, + "is_virtual": 0, + "issingle": 0, + "istable": 0, + "links": [], + "make_attachments_public": 0, + "max_attachments": 0, + "menu_index": null, + "migration_hash": "a476240464e2f7740956c7d5e6b04f21", + "modified": "2026-05-17 06:56:33.254786", + "module": "Website", + "name": "Web Form", + "naming_rule": null, + "nsm_parent_field": null, + "parent_node": null, + "permissions": [ + { + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 1, + "email": 0, + "export": 0, + "if_owner": 0, + "import": 0, + "match": null, + "parent": "Web Form", + "parentfield": "permissions", + "parenttype": "DocType", + "permlevel": 0, + "print": 0, + "read": 1, + "report": 1, + "role": "Website Manager", + "select": 0, + "share": 1, + "submit": 0, + "write": 1 + } + ], + "print_outline": null, + "protect_attached_files": 0, + "queue_in_background": 0, + "quick_entry": 0, + "read_only": 0, + "recipient_account_field": null, + "restrict_to_domain": null, + "route": null, + "row_format": "Dynamic", + "rows_threshold_for_grid_search": 0, + "search_fields": null, + "sender_field": null, + "sender_name_field": null, + "show_name_in_global_search": 0, + "show_preview_popup": 0, + "show_title_field_in_link": 0, + "smallicon": null, + "sort_field": "modified", + "sort_order": "DESC", + "states": [], + "subject": null, + "subject_field": null, + "tag_fields": null, + "timeline_field": null, + "title_field": "title", + "track_changes": 1, + "track_seen": 0, + "track_views": 0, + "translated_doctype": 0, + "website_search_field": null + }, + { + "_assign": null, + "_comments": null, + "_last_update": null, + "_liked_by": null, + "_user_tags": null, + "actions": [], + "allow_auto_repeat": 0, + "allow_copy": 0, + "allow_events_in_timeline": 0, + "allow_guest_to_view": 0, + "allow_import": 0, + "allow_rename": 0, + "app": null, + "autoname": null, + "beta": 0, + "color": null, + "colour": null, + "custom": 0, + "default_email_template": null, + "default_print_format": null, + "default_view": null, + "description": null, + "docstatus": 0, + "doctype": "DocType", + "document_type": null, + "documentation": null, + "editable_grid": 1, + "email_append_to": 0, + "engine": "InnoDB", + "fields": [ + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "fieldname", + "fieldtype": "Select", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Field", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form Field", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "fieldtype", + "fieldtype": "Select", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Fieldtype", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Attach\nAttach Image\nCheck\nCurrency\nColor\nData\nDate\nDatetime\nDuration\nFloat\nHTML\nInt\nLink\nPassword\nPhone\nRating\nSelect\nSignature\nSmall Text\nText\nText Editor\nTable\nTime\nSection Break\nColumn Break\nPage Break", + "parent": "Web Form Field", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "label", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Custom Label", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form Field", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": "eval:doc.fieldtype === 'Link' && parent.login_required", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "allow_read_on_all_link_options", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Allow Read On All Link Options", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form Field", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "reqd", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Mandatory", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form Field", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "read_only", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Read Only", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form Field", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "show_in_filter", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Show in filter", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form Field", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "hidden", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Hidden", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form Field", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break_4", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form Field", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "options", + "fieldtype": "Text", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Options", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form Field", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "max_length", + "fieldtype": "Int", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Max Length", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form Field", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval:doc.fieldtype=='Int'", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "max_value", + "fieldtype": "Int", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Max Value", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form Field", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval:in_list([\"Float\", \"Currency\", \"Percent\"], doc.fieldtype)", + "description": "Set non-standard precision for a Float or Currency field", + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "precision", + "fieldtype": "Select", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Precision", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "\n0\n1\n2\n3\n4\n5\n6\n7\n8\n9", + "parent": "Web Form Field", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "property_depends_on_section", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Property Depends On", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form Field", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "depends_on", + "fieldtype": "Code", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Display Depends On", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form Field", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "mandatory_depends_on", + "fieldtype": "Code", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Mandatory Depends On", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "JS", + "parent": "Web Form Field", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break_16", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form Field", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "read_only_depends_on", + "fieldtype": "Code", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Read Only Depends On", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "JS", + "parent": "Web Form Field", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "section_break_6", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form Field", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "description", + "fieldtype": "Text", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Description", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form Field", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break_8", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form Field", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "default", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Default", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Web Form Field", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + } + ], + "force_re_route_to_default_view": 0, + "grid_page_length": 0, + "has_web_view": 0, + "hide_toolbar": 0, + "icon": null, + "image_field": null, + "in_create": 0, + "index_web_pages_for_search": 0, + "is_calendar_and_gantt": 0, + "is_published_field": null, + "is_submittable": 0, + "is_tree": 0, + "is_virtual": 0, + "issingle": 0, + "istable": 1, + "links": [], + "make_attachments_public": 0, + "max_attachments": 0, + "menu_index": null, + "migration_hash": "3091dfb83a81aaa06315076eef399a9f", + "modified": "2026-05-17 06:56:33.335893", + "module": "Website", + "name": "Web Form Field", + "naming_rule": null, + "nsm_parent_field": null, + "parent_node": null, + "permissions": [], + "print_outline": null, + "protect_attached_files": 0, + "queue_in_background": 0, + "quick_entry": 0, + "read_only": 0, + "recipient_account_field": null, + "restrict_to_domain": null, + "route": null, + "row_format": "Dynamic", + "rows_threshold_for_grid_search": 0, + "search_fields": null, + "sender_field": null, + "sender_name_field": null, + "show_name_in_global_search": 0, + "show_preview_popup": 0, + "show_title_field_in_link": 0, + "smallicon": null, + "sort_field": "modified", + "sort_order": "DESC", + "states": [], + "subject": null, + "subject_field": null, + "tag_fields": null, + "timeline_field": null, + "title_field": null, + "track_changes": 0, + "track_seen": 0, + "track_views": 0, + "translated_doctype": 0, + "website_search_field": null + }, + { + "_assign": null, + "_comments": null, + "_last_update": null, + "_liked_by": null, + "_user_tags": null, + "actions": [], + "allow_auto_repeat": 0, + "allow_copy": 0, + "allow_events_in_timeline": 0, + "allow_guest_to_view": 0, + "allow_import": 0, + "allow_rename": 1, + "app": null, + "autoname": "field:email_account_name", + "beta": 0, + "color": null, + "colour": null, + "custom": 0, + "default_email_template": null, + "default_print_format": null, + "default_view": null, + "description": null, + "docstatus": 0, + "doctype": "DocType", + "document_type": "Setup", + "documentation": null, + "editable_grid": 0, + "email_append_to": 0, + "engine": "InnoDB", + "fields": [ + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "account_section", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Account", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "email_id", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 1, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Email Address", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Email", + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 1, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": "e.g. \"Support\", \"Sales\", \"Jerry Yang\"", + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "email_account_name", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Email Account Name", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 1, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break_3", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval:!doc.service", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "domain", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 1, + "is_virtual": 0, + "label": "Domain", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Email Domain", + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval:!doc.domain", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "service", + "fieldtype": "Select", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Service", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "\nGMail\nSendgrid\nSparkPost\nYahoo Mail\nOutlook.com\nYandex.Mail", + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "authentication_column", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Authentication", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "Basic", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "auth_method", + "fieldtype": "Select", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Method", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Basic\nOAuth", + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": "eval: doc.auth_method === \"OAuth\"", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "backend_app_flow", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Authenticate as Service Principal", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval: doc.auth_method === \"OAuth\" && doc.connected_app && doc.connected_user && !doc.backend_app_flow", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "authorize_api_access", + "fieldtype": "Button", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Authorize API Access", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval: doc.auth_method === \"Basic\"", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "password", + "fieldtype": "Password", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Password", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": "eval: doc.auth_method === \"Basic\"", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "awaiting_password", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Awaiting password", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": "eval: doc.auth_method === \"Basic\"", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "ascii_encode_password", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Use ASCII encoding for password", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break_10", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval: doc.auth_method === \"OAuth\"", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "connected_app", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Connected App", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": "eval: doc.auth_method === \"OAuth\"", + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Connected App", + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval: doc.auth_method === \"OAuth\" && !doc.backend_app_flow", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "connected_user", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Connected User", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": "eval: doc.auth_method === \"OAuth\" && !doc.backend_app_flow", + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "User", + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": "eval: !doc.backend_app_flow", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "login_id_is_different", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Use different Email ID", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "login_id_is_different", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "login_id", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Alternative Email ID", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "mailbox_settings", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Incoming (POP/IMAP) Settings", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "enable_incoming", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Enable Incoming", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": "enable_incoming", + "description": "e.g. replies@yourcomany.com. All replies will come to this inbox.", + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "default_incoming", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Default Incoming", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": "eval: !doc.domain && doc.enable_incoming", + "description": null, + "documentation_url": null, + "fetch_from": "domain.use_imap", + "fetch_if_empty": 0, + "fieldname": "use_imap", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Use IMAP", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": "eval:!doc.domain && doc.enable_incoming", + "description": null, + "documentation_url": null, + "fetch_from": "domain.use_ssl", + "fetch_if_empty": 0, + "fieldname": "use_ssl", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Use SSL", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": "eval:!doc.domain && doc.enable_incoming && doc.use_imap && !doc.use_ssl", + "description": null, + "documentation_url": null, + "fetch_from": "domain.use_starttls", + "fetch_if_empty": 0, + "fieldname": "use_starttls", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Use STARTTLS", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval:!doc.domain && doc.enable_incoming", + "description": "e.g. pop.gmail.com / imap.gmail.com", + "documentation_url": null, + "fetch_from": "domain.email_server", + "fetch_if_empty": 0, + "fieldname": "email_server", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Incoming Server", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval:!doc.domain && doc.enable_incoming", + "description": "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)", + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "incoming_port", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Port", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break_18", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval:!doc.domain && doc.enable_incoming", + "description": "Ignore attachments over this size", + "documentation_url": null, + "fetch_from": "domain.attachment_limit", + "fetch_if_empty": 0, + "fieldname": "attachment_limit", + "fieldtype": "Int", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Attachment Limit (MB)", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "UNSEEN", + "depends_on": "eval: doc.enable_incoming && doc.use_imap", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "email_sync_option", + "fieldtype": "Select", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Email Sync Option", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "ALL\nUNSEEN", + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "250", + "depends_on": "eval: doc.enable_incoming && doc.use_imap", + "description": "Total number of emails to sync in initial sync process ", + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "initial_sync_count", + "fieldtype": "Select", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Initial Sync Count", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "100\n250\n500", + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "section_break_25", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "IMAP Details", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval: doc.use_imap && doc.enable_incoming", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "imap_folder", + "fieldtype": "Table", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "IMAP Folder", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "IMAP Folder", + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "section_break_12", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Document Linking", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": "eval:!doc.domain && doc.enable_outgoing && doc.enable_incoming && doc.use_imap", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "append_emails_to_sent_folder", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Append Emails to Sent Folder", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval:!doc.domain && doc.enable_outgoing && doc.enable_incoming && doc.use_imap && doc.append_emails_to_sent_folder", + "description": null, + "documentation_url": null, + "fetch_from": "domain.sent_folder_name", + "fetch_if_empty": 0, + "fieldname": "sent_folder_name", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Sent Folder Name", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval: doc.enable_incoming && !doc.use_imap", + "description": "Append as communication against this DocType (must have fields: \"Sender\" and \"Subject\"). These fields can be defined in the email settings section of the appended doctype.", + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "append_to", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 1, + "is_virtual": 0, + "label": "Append To", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "DocType", + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "1", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "create_contact", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Create Contacts from Incoming Emails", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": null, + "description": "For more information, click here.", + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "enable_automatic_linking", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Enable Automatic Linking in Documents", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "enable_incoming", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "section_break_13", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "notify_if_unreplied", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Notify if unreplied", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "30", + "depends_on": "notify_if_unreplied", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "unreplied_for_mins", + "fieldtype": "Int", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Notify if unreplied for (in mins)", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "notify_if_unreplied", + "description": "Email Addresses", + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "send_notification_to", + "fieldtype": "Small Text", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Send Notification to", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "outgoing_mail_settings", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Outgoing (SMTP) Settings", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": null, + "description": "SMTP Settings for outgoing emails", + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "enable_outgoing", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Enable Outgoing", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": "eval:!doc.domain && doc.enable_outgoing", + "description": null, + "documentation_url": null, + "fetch_from": "domain.use_tls", + "fetch_if_empty": 0, + "fieldname": "use_tls", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Use TLS", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": "eval:!doc.domain && doc.enable_outgoing", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "use_ssl_for_outgoing", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Use SSL", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval:!doc.domain && doc.enable_outgoing", + "description": "e.g. smtp.gmail.com", + "documentation_url": null, + "fetch_from": "domain.smtp_server", + "fetch_if_empty": 0, + "fieldname": "smtp_server", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Outgoing Server", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval:!doc.domain && doc.enable_outgoing", + "description": "If non standard port (e.g. 587). If on Google Cloud, try port 2525.", + "documentation_url": null, + "fetch_from": "domain.smtp_port", + "fetch_if_empty": 0, + "fieldname": "smtp_port", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Port", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break_38", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": "enable_outgoing", + "description": "Notifications and bulk mails will be sent from this outgoing server.", + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "default_outgoing", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Default Outgoing", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": "enable_outgoing", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "always_use_account_email_id_as_sender", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Always use this email address as sender address", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": "enable_outgoing", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "always_use_account_name_as_sender_name", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Always use this name as sender name", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "1", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "send_unsubscribe_message", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 1, + "hide_seconds": 1, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Send unsubscribe message in email", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Email Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "1", + "depends_on": null, + "description": "Track if your email has been opened by the recipient.\nReference: {{ reference_doctype }} {{ reference_name }} to send document reference",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "auto_reply_message",
+ "fieldtype": "Text Editor",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 1,
+ "hide_seconds": 1,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Auto Reply Message",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Email Account",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 1,
+ "collapsible_depends_on": "eval:frappe.utils.html2text(doc.footer || '')!=''",
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "set_footer",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 1,
+ "hide_seconds": 1,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Footer",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Email Account",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "footer",
+ "fieldtype": "Text Editor",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 1,
+ "hide_seconds": 1,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Footer Content",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Email Account",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "brand_logo",
+ "fieldtype": "Attach Image",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Brand Logo",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Email Account",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "uidvalidity",
+ "fieldtype": "Data",
+ "hidden": 1,
+ "hide_border": 0,
+ "hide_days": 1,
+ "hide_seconds": 1,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "UIDVALIDITY",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 1,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Email Account",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "uidnext",
+ "fieldtype": "Int",
+ "hidden": 1,
+ "hide_border": 0,
+ "hide_days": 1,
+ "hide_seconds": 1,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "UIDNEXT",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 1,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Email Account",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "no_failed",
+ "fieldtype": "Int",
+ "hidden": 1,
+ "hide_border": 0,
+ "hide_days": 1,
+ "hide_seconds": 1,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "no failed attempts",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 1,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Email Account",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": "fa fa-inbox",
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 1,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 0,
+ "links": [],
+ "make_attachments_public": 1,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "5ff039ebb343403d198ba67e7e2c0194",
+ "modified": "2026-05-17 06:56:34.666642",
+ "module": "Email",
+ "name": "Email Account",
+ "naming_rule": "By fieldname",
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [
+ {
+ "amend": 0,
+ "cancel": 0,
+ "create": 1,
+ "delete": 1,
+ "email": 0,
+ "export": 0,
+ "if_owner": 0,
+ "import": 0,
+ "match": null,
+ "parent": "Email Account",
+ "parentfield": "permissions",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "print": 0,
+ "read": 1,
+ "report": 0,
+ "role": "System Manager",
+ "select": 0,
+ "share": 0,
+ "submit": 0,
+ "write": 1
+ },
+ {
+ "amend": 0,
+ "cancel": 0,
+ "create": 0,
+ "delete": 0,
+ "email": 0,
+ "export": 0,
+ "if_owner": 0,
+ "import": 0,
+ "match": null,
+ "parent": "Email Account",
+ "parentfield": "permissions",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "print": 0,
+ "read": 1,
+ "report": 0,
+ "role": "Inbox User",
+ "select": 0,
+ "share": 0,
+ "submit": 0,
+ "write": 0
+ }
+ ],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 0,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 1,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 1,
+ "allow_rename": 1,
+ "app": null,
+ "autoname": "field:attribute_name",
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "Setup",
+ "documentation": null,
+ "editable_grid": 0,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "attribute_name",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Attribute Name",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Item Attribute",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 1,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "numeric_values",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Numeric Values",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Item Attribute",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_vbik",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Item Attribute",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "disabled",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Disabled",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Item Attribute",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "numeric_values",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "section_break_4",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Item Attribute",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "from_range",
+ "fieldtype": "Float",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "From Range",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Item Attribute",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "increment",
+ "fieldtype": "Float",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Increment",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Item Attribute",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_8",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Item Attribute",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "to_range",
+ "fieldtype": "Float",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "To Range",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Item Attribute",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval: !doc.numeric_values",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "section_break_5",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Item Attribute",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "item_attribute_values",
+ "fieldtype": "Table",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Item Attribute Values",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Item Attribute Value",
+ "parent": "Item Attribute",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": "fa fa-edit",
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 1,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 0,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "de519b4f33398b16c8d9ac31d01a0d4a",
+ "modified": "2026-05-17 06:56:38.948789",
+ "module": "Stock",
+ "name": "Item Attribute",
+ "naming_rule": "By fieldname",
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [
+ {
+ "amend": 0,
+ "cancel": 0,
+ "create": 1,
+ "delete": 1,
+ "email": 0,
+ "export": 0,
+ "if_owner": 0,
+ "import": 0,
+ "match": null,
+ "parent": "Item Attribute",
+ "parentfield": "permissions",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "print": 0,
+ "read": 1,
+ "report": 1,
+ "role": "Item Manager",
+ "select": 0,
+ "share": 1,
+ "submit": 0,
+ "write": 1
+ }
+ ],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 0,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 1,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 0,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": "",
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "Setup",
+ "documentation": null,
+ "editable_grid": 1,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "attribute_value",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Attribute Value",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Item Attribute Value",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": "",
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": "This will be appended to the Item Code of the variant. For example, if your abbreviation is \"SM\", and the item code is \"T-SHIRT\", the item code of the variant will be \"T-SHIRT-SM\"",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "abbr",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Abbreviation",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Item Attribute Value",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": "",
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 1,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": "fa fa-edit",
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 0,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 1,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "f1771c5261a036b010211ac93095102d",
+ "modified": "2026-05-17 06:56:38.354507",
+ "module": "Stock",
+ "name": "Item Attribute Value",
+ "naming_rule": null,
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 0,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 0,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 0,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": "",
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "Other",
+ "documentation": null,
+ "editable_grid": 1,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "item_attribute",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Item Attribute",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Item Attribute",
+ "parent": "Item Variant",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": "",
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "item_attribute_value",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Item Attribute Value",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "",
+ "parent": "Item Variant",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": "",
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": "",
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 0,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 1,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "7c03f2246cbd732004706ff66bd042cd",
+ "modified": "2026-05-17 06:56:38.420918",
+ "module": "Stock",
+ "name": "Item Variant",
+ "naming_rule": null,
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 0,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 0,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 0,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": null,
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "Setup",
+ "documentation": null,
+ "editable_grid": 1,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "company",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 1,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Company",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Company",
+ "parent": "Fiscal Year Company",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": null,
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 1,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 1,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "a9537eaa8bcdeb851ee24eb0f882ef6f",
+ "modified": "2026-05-17 06:56:36.764618",
+ "module": "Accounts",
+ "name": "Fiscal Year Company",
+ "naming_rule": null,
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 0,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 1,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 1,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": null,
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": null,
+ "documentation": null,
+ "editable_grid": 0,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "category_name",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Category Name",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Help Category",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "category_description",
+ "fieldtype": "Text",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Category Description",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Help Category",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "published",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Published",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Help Category",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "help_articles",
+ "fieldtype": "Int",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Help Articles",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Help Category",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "route",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Route",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Help Category",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": "icon-list",
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 0,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 0,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "7e2eb6b6049cb2d49b9ac0c62aefff7e",
+ "modified": "2026-05-17 06:56:34.317146",
+ "module": "Website",
+ "name": "Help Category",
+ "naming_rule": null,
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [
+ {
+ "amend": 0,
+ "cancel": 0,
+ "create": 1,
+ "delete": 1,
+ "email": 1,
+ "export": 1,
+ "if_owner": 0,
+ "import": 0,
+ "match": null,
+ "parent": "Help Category",
+ "parentfield": "permissions",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "print": 1,
+ "read": 1,
+ "report": 1,
+ "role": "Website Manager",
+ "select": 0,
+ "share": 1,
+ "submit": 0,
+ "write": 1
+ }
+ ],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 0,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 1,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 1,
+ "allow_import": 1,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": null,
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": null,
+ "documentation": null,
+ "editable_grid": 0,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "title",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 1,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Title",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Help Article",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "category",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 1,
+ "is_virtual": 0,
+ "label": "Category",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Help Category",
+ "parent": "Help Article",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "published",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Published",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Help Article",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_4",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Help Article",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "user_fullname",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "author",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Author",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Help Article",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "level",
+ "fieldtype": "Select",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Level",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Beginner\nIntermediate\nExpert",
+ "parent": "Help Article",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "section_break_7",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Help Article",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "content",
+ "fieldtype": "Text Editor",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 1,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Content",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Help Article",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "likes",
+ "fieldtype": "Int",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Likes",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Help Article",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "route",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 1,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Route",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Help Article",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "section_break_cww5",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Help Article",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "helpful",
+ "fieldtype": "Int",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Helpful",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Help Article",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "cb_00",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Help Article",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "not_helpful",
+ "fieldtype": "Int",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Not Helpful",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Help Article",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 1,
+ "hide_toolbar": 0,
+ "icon": "icon-file-alt",
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 1,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": "published",
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 0,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "91e3f38f549f65404f80bc11e14147eb",
+ "modified": "2026-05-17 06:56:34.249546",
+ "module": "Website",
+ "name": "Help Article",
+ "naming_rule": null,
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [
+ {
+ "amend": 0,
+ "cancel": 0,
+ "create": 1,
+ "delete": 1,
+ "email": 1,
+ "export": 1,
+ "if_owner": 0,
+ "import": 1,
+ "match": null,
+ "parent": "Help Article",
+ "parentfield": "permissions",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "print": 1,
+ "read": 1,
+ "report": 1,
+ "role": "Knowledge Base Editor",
+ "select": 0,
+ "share": 0,
+ "submit": 0,
+ "write": 1
+ },
+ {
+ "amend": 0,
+ "cancel": 0,
+ "create": 1,
+ "delete": 0,
+ "email": 0,
+ "export": 0,
+ "if_owner": 0,
+ "import": 0,
+ "match": null,
+ "parent": "Help Article",
+ "parentfield": "permissions",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "print": 0,
+ "read": 1,
+ "report": 0,
+ "role": "Knowledge Base Contributor",
+ "select": 0,
+ "share": 0,
+ "submit": 0,
+ "write": 1
+ }
+ ],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 0,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": "title",
+ "track_changes": 1,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 1,
+ "allow_rename": 1,
+ "app": null,
+ "autoname": "Prompt",
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "Setup",
+ "documentation": null,
+ "editable_grid": 0,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "workstation",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 1,
+ "is_virtual": 0,
+ "label": "Default Workstation",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Workstation",
+ "parent": "Operation",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "data_2",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Operation",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "is_corrective_operation",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Is Corrective Operation",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Operation",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 1,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "job_card_section",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Job Card",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Operation",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "create_job_card_based_on_batch_size",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Create Job Card based on Batch Size",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Operation",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "quality_inspection_template",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Quality Inspection Template",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Quality Inspection Template",
+ "parent": "Operation",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_6",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Operation",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "1",
+ "depends_on": "create_job_card_based_on_batch_size",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "batch_size",
+ "fieldtype": "Int",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Batch Size",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": "create_job_card_based_on_batch_size",
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 1,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Operation",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 1,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "sub_operations_section",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Sub Operations",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Operation",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "sub_operations",
+ "fieldtype": "Table",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Sub Operation",
+ "parent": "Operation",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": "Time in mins.",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "total_operation_time",
+ "fieldtype": "Float",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Total Operation Time",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Operation",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 1,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "section_break_4",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Operation Description",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Operation",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "description",
+ "fieldtype": "Text",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Description",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Operation",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": "fa fa-wrench",
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 1,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 0,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "559acb934adcb4b5cd77ef2bef5fbc46",
+ "modified": "2026-05-17 06:56:37.913319",
+ "module": "Manufacturing",
+ "name": "Operation",
+ "naming_rule": "Set by user",
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [
+ {
+ "amend": 0,
+ "cancel": 0,
+ "create": 1,
+ "delete": 1,
+ "email": 0,
+ "export": 1,
+ "if_owner": 0,
+ "import": 1,
+ "match": null,
+ "parent": "Operation",
+ "parentfield": "permissions",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "print": 0,
+ "read": 1,
+ "report": 0,
+ "role": "Manufacturing User",
+ "select": 0,
+ "share": 1,
+ "submit": 0,
+ "write": 1
+ },
+ {
+ "amend": 0,
+ "cancel": 0,
+ "create": 1,
+ "delete": 1,
+ "email": 0,
+ "export": 1,
+ "if_owner": 0,
+ "import": 1,
+ "match": null,
+ "parent": "Operation",
+ "parentfield": "permissions",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "print": 0,
+ "read": 1,
+ "report": 1,
+ "role": "Manufacturing Manager",
+ "select": 0,
+ "share": 1,
+ "submit": 0,
+ "write": 1
+ }
+ ],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 1,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 1,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 0,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": null,
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "Document",
+ "documentation": null,
+ "editable_grid": 0,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "bom_and_work_order_tab",
+ "fieldtype": "Tab Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "BOM and Production",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "raw_materials_consumption_section",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Raw Materials Consumption ",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": "Allow material consumptions without immediately manufacturing finished goods against a Work Order",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "material_consumption",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Allow Continuous Material Consumption",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": "eval: doc.material_consumption",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "get_rm_cost_from_consumption_entry",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Get Raw Materials Cost from Consumption Entry",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_3",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "BOM",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "backflush_raw_materials_based_on",
+ "fieldtype": "Select",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Backflush Raw Materials Based On",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "BOM\nMaterial Transferred for Manufacture",
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": "eval:doc.backflush_raw_materials_based_on == \"BOM\"",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "validate_components_quantities_per_bom",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Validate Components and Quantities Per BOM",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "bom_section",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "BOM",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": "Update BOM cost automatically via scheduler, based on the latest Valuation Rate/Price List Rate/Last Purchase Rate of raw materials",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "update_bom_costs_automatically",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Update BOM Cost Automatically",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_lhyt",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": "If enabled, the system will allow users to edit the raw materials and their quantities in the Work Order. The system will not reset the quantities as per the BOM, if the user has changed them.",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "allow_editing_of_items_and_quantities_in_work_order",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Allow Editing of Items and Quantities in Work Order",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "section_break_6",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Default Warehouses for Production",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "default_wip_warehouse",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Default Work In Progress Warehouse",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Warehouse",
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "default_fg_warehouse",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Default Finished Goods Warehouse",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Warehouse",
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_11",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "default_scrap_warehouse",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Default Scrap Warehouse",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Warehouse",
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "over_production_for_sales_and_work_order_section",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Overproduction for Sales and Work Order",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "overproduction_percentage_for_sales_order",
+ "fieldtype": "Percent",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Overproduction Percentage For Sales Order",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_16",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "overproduction_percentage_for_work_order",
+ "fieldtype": "Percent",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Overproduction Percentage For Work Order",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "job_card_section",
+ "fieldtype": "Tab Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Job Card and Capacity Planning",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "add_corrective_operation_cost_in_finished_good_valuation",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Add Corrective Operation Cost in Finished Good Valuation",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": "Enabling this checkbox will force each Job Card Time Log to have From Time and To Time",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "enforce_time_logs",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Enforce Time Logs",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_24",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": "Allow transferring raw materials even after the Required Quantity is fulfilled",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "job_card_excess_transfer",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Allow Excess Material Transfer",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "capacity_planning",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Capacity Planning",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "disable_capacity_planning",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Disable Capacity Planning",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": "eval:!doc.disable_capacity_planning",
+ "description": "Plan time logs outside Workstation working hours",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "allow_overtime",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Allow Overtime",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": "eval:!doc.disable_capacity_planning",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "allow_production_on_holidays",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Allow Production on Holidays",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_5",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "30",
+ "depends_on": "eval:!doc.disable_capacity_planning",
+ "description": "Plan operations X days in advance",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "capacity_planning_for_days",
+ "fieldtype": "Int",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Capacity Planning For (Days)",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval:!doc.disable_capacity_planning",
+ "description": "Default: 10 mins",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "mins_between_operations",
+ "fieldtype": "Int",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Time Between Operations (Mins)",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "other_settings_section",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Other Settings",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": "To include sub-assembly costs and scrap items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled.",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "set_op_cost_and_scrap_from_sub_assemblies",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Set Operating Cost / Scrap Items From Sub-assemblies",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_23",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": "System will automatically create the serial numbers / batch for the Finished Good on submission of work order",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "make_serial_no_batch_from_work_order",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Make Serial No / Batch from Work Order",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": "icon-wrench",
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 1,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 1,
+ "istable": 0,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "ee94a2c363931067ec2c2784b97b95f9",
+ "modified": "2026-05-17 06:56:38.101784",
+ "module": "Manufacturing",
+ "name": "Manufacturing Settings",
+ "naming_rule": null,
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [
+ {
+ "amend": 0,
+ "cancel": 0,
+ "create": 1,
+ "delete": 0,
+ "email": 0,
+ "export": 0,
+ "if_owner": 0,
+ "import": 0,
+ "match": null,
+ "parent": "Manufacturing Settings",
+ "parentfield": "permissions",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "print": 0,
+ "read": 1,
+ "report": 0,
+ "role": "Manufacturing Manager",
+ "select": 0,
+ "share": 1,
+ "submit": 0,
+ "write": 1
+ }
+ ],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 0,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 1,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 0,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": null,
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": null,
+ "documentation": null,
+ "editable_grid": 1,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "start_time",
+ "fieldtype": "Time",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Start Time",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Workstation Working Hour",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "hours",
+ "fieldtype": "Float",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Hours",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Workstation Working Hour",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_2",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Workstation Working Hour",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "end_time",
+ "fieldtype": "Time",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "End Time",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Workstation Working Hour",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "1",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "enabled",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Enabled",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Workstation Working Hour",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": null,
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 0,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 1,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "de9807455394c332c74a85cb66ff9828",
+ "modified": "2026-05-17 06:56:37.982752",
+ "module": "Manufacturing",
+ "name": "Workstation Working Hour",
+ "naming_rule": null,
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 0,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 0,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 0,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": null,
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "",
+ "documentation": null,
+ "editable_grid": 1,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "company",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Company",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Company",
+ "parent": "Mode of Payment Account",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": "",
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": "Default account will be automatically updated in POS Invoice when this mode is selected.",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "default_account",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Default Account",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Account",
+ "parent": "Mode of Payment Account",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": "",
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": null,
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 0,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 1,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "39a2623cb5394ed98493f4da91a5683b",
+ "modified": "2026-05-17 06:56:36.697622",
+ "module": "Accounts",
+ "name": "Mode of Payment Account",
+ "naming_rule": null,
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 0,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 0,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 1,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": "hash",
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": "Internal record of document shares",
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "System",
+ "documentation": null,
+ "editable_grid": 0,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "user",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "User",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "User",
+ "parent": "DocShare",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 1,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "share_doctype",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Document Type",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "DocType",
+ "parent": "DocShare",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 1,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "share_name",
+ "fieldtype": "Dynamic Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Document Name",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "share_doctype",
+ "parent": "DocShare",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 1,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "read",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Read",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "DocShare",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "write",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Write",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "DocShare",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "share",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Share",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "DocShare",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "submit",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Submit",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "DocShare",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "everyone",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Everyone",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "DocShare",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 1,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "1",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "notify_by_email",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Notify by email",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "DocShare",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 1,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": null,
+ "image_field": null,
+ "in_create": 1,
+ "index_web_pages_for_search": 0,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 0,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "f4289e722fe1d6d172f4bf3db7a46f3f",
+ "modified": "2026-05-17 06:56:33.827107",
+ "module": "Core",
+ "name": "DocShare",
+ "naming_rule": "Random",
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [
+ {
+ "amend": 0,
+ "cancel": 0,
+ "create": 1,
+ "delete": 1,
+ "email": 0,
+ "export": 1,
+ "if_owner": 0,
+ "import": 1,
+ "match": null,
+ "parent": "DocShare",
+ "parentfield": "permissions",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "print": 0,
+ "read": 1,
+ "report": 1,
+ "role": "System Manager",
+ "select": 0,
+ "share": 1,
+ "submit": 0,
+ "write": 1
+ }
+ ],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 0,
+ "read_only": 1,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 1,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 0,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": null,
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "Other",
+ "documentation": null,
+ "editable_grid": 1,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "barcode",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Barcode",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 1,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "barcode",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "has_item_scanned",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Has Item Scanned",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 3,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "item_code",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 1,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Item Code",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Item",
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": "item_code.item_name",
+ "fetch_if_empty": 0,
+ "fieldname": "item_name",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 1,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Item Name",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 1,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 1,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": "item_code.item_group",
+ "fetch_if_empty": 0,
+ "fieldname": "item_group",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Item Group",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Item Group",
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_6",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 3,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "warehouse",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Warehouse",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Warehouse",
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 2,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "qty",
+ "fieldtype": "Float",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Quantity",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 2,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": "item_code.stock_uom",
+ "fetch_if_empty": 0,
+ "fieldname": "stock_uom",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Stock UOM",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "UOM",
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 2,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "valuation_rate",
+ "fieldtype": "Currency",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Valuation Rate",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Company:company:default_currency",
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "amount",
+ "fieldtype": "Currency",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Amount",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Company:company:default_currency",
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "allow_zero_valuation_rate",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Allow Zero Valuation Rate",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 1,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "serial_no_and_batch_section",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Serial No and Batch",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval:doc.use_serial_batch_fields === 0 || doc.docstatus === 1",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "add_serial_batch_bundle",
+ "fieldtype": "Button",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Add Serial / Batch No",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "use_serial_batch_fields",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Use Serial No / Batch Fields",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": "eval:!doc.use_serial_batch_fields",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "reconcile_all_serial_batch",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Reconcile All Serial Nos / Batches",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_11",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval:doc.use_serial_batch_fields === 0 || doc.docstatus === 1",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "serial_and_batch_bundle",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Serial / Batch Bundle",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 1,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Serial and Batch Bundle",
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 1,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 1,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval:doc.use_serial_batch_fields === 0 || doc.docstatus === 1",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "current_serial_and_batch_bundle",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Current Serial / Batch Bundle",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 1,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Serial and Batch Bundle",
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval:doc.use_serial_batch_fields === 1",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "section_break_lypk",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval:doc.use_serial_batch_fields === 1",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "serial_no",
+ "fieldtype": "Long Text",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Serial No",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 1,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_eefq",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval:doc.use_serial_batch_fields === 1",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "batch_no",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Batch No",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Batch",
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 1,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "section_break_3",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Before reconciliation",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "current_qty",
+ "fieldtype": "Float",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Current Qty",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "current_amount",
+ "fieldtype": "Currency",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Current Amount",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Company:company:default_currency",
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_9",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "current_valuation_rate",
+ "fieldtype": "Currency",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Current Valuation Rate",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Company:company:default_currency",
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "current_serial_no",
+ "fieldtype": "Long Text",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Current Serial No",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 1,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 1,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "section_break_14",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "quantity_difference",
+ "fieldtype": "Read Only",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Quantity Difference",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_16",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "amount_difference",
+ "fieldtype": "Currency",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Amount Difference",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Company:company:default_currency",
+ "parent": "Stock Reconciliation Item",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": null,
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 0,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 1,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "d6cf80d3d08611c9548ec3bf06da89fb",
+ "modified": "2026-05-17 06:56:39.070408",
+ "module": "Stock",
+ "name": "Stock Reconciliation Item",
+ "naming_rule": null,
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 1,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 1,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 1,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": "field:theme",
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "Setup",
+ "documentation": null,
+ "editable_grid": 0,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "bootstrap_theme_section",
+ "fieldtype": "Tab Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Theme Configuration",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "theme",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Theme",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 1,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "Website",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "module",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Module",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Module Def",
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "1",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "custom",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Custom?",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "google_font",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Google Font",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "font_size",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Font Size",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "wght@300;400;500;600;700;800",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "font_properties",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Font Properties",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "1",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "button_rounded_corners",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Button Rounded Corners",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "button_shadows",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Button Shadows",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "button_gradients",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Button Gradients",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_11",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "primary_color",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Primary Color",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Color",
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "text_color",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Text Color",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Color",
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "light_color",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Light Color",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Color",
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "dark_color",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Dark Color",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Color",
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "background_color",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Background Color",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Color",
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "stylesheet_section",
+ "fieldtype": "Tab Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Stylesheet",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "custom_overrides",
+ "fieldtype": "Code",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Custom Overrides",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "SCSS",
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "custom_scss",
+ "fieldtype": "Code",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Custom SCSS",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "SCSS",
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "ignored_apps",
+ "fieldtype": "Table",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Ignored Apps",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Website Theme Ignore App",
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "theme_scss",
+ "fieldtype": "Code",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Theme",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "SCSS",
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "theme_url",
+ "fieldtype": "Data",
+ "hidden": 1,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Theme URL",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 1,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "custom_js_section",
+ "fieldtype": "Tab Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Script",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "js",
+ "fieldtype": "Code",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "JavaScript",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "JS",
+ "parent": "Website Theme",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": null,
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 1,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 0,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "047fca41ddc34aa3b252c75706ea9549",
+ "modified": "2026-05-17 06:56:33.512722",
+ "module": "Website",
+ "name": "Website Theme",
+ "naming_rule": "By fieldname",
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [
+ {
+ "amend": 0,
+ "cancel": 0,
+ "create": 1,
+ "delete": 1,
+ "email": 0,
+ "export": 0,
+ "if_owner": 0,
+ "import": 0,
+ "match": null,
+ "parent": "Website Theme",
+ "parentfield": "permissions",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "print": 0,
+ "read": 1,
+ "report": 0,
+ "role": "Website Manager",
+ "select": 0,
+ "share": 0,
+ "submit": 0,
+ "write": 1
+ },
+ {
+ "amend": 0,
+ "cancel": 0,
+ "create": 1,
+ "delete": 1,
+ "email": 0,
+ "export": 1,
+ "if_owner": 0,
+ "import": 1,
+ "match": null,
+ "parent": "Website Theme",
+ "parentfield": "permissions",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "print": 0,
+ "read": 1,
+ "report": 0,
+ "role": "Administrator",
+ "select": 0,
+ "share": 0,
+ "submit": 0,
+ "write": 1
+ }
+ ],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 0,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 1,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 1,
+ "allow_rename": 1,
+ "app": null,
+ "autoname": "field:title",
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "Setup",
+ "documentation": null,
+ "editable_grid": 0,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "title",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Title",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 1,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Email Group",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 1,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_oyyj",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Email Group",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "total_subscribers",
+ "fieldtype": "Int",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Total Subscribers",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Email Group",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "sign_up_and_confirmation_section",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Sign Up and Confirmation",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Email Group",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "confirmation_email_template",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Confirmation Email Template",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Email Template",
+ "parent": "Email Group",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "welcome_email_template",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Welcome Email Template",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Email Template",
+ "parent": "Email Group",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": "Redirect to this URL after successful confirmation.",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "welcome_url",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Welcome URL",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "URL",
+ "parent": "Email Group",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": "welcome_url",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "add_query_parameters",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Add Query Parameters",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Email Group",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": null,
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 1,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 0,
+ "links": [
+ {
+ "custom": 0,
+ "group": "Members",
+ "hidden": 0,
+ "is_child_table": 0,
+ "link_doctype": "Email Group Member",
+ "link_fieldname": "email_group",
+ "parent": "Email Group",
+ "parent_doctype": null,
+ "parentfield": "links",
+ "parenttype": "DocType",
+ "table_fieldname": null
+ }
+ ],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "952c2bec5a31c452a63e14b4f467bfba",
+ "modified": "2026-05-17 06:56:35.010206",
+ "module": "Email",
+ "name": "Email Group",
+ "naming_rule": "By fieldname",
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [
+ {
+ "amend": 0,
+ "cancel": 0,
+ "create": 1,
+ "delete": 1,
+ "email": 1,
+ "export": 1,
+ "if_owner": 0,
+ "import": 1,
+ "match": null,
+ "parent": "Email Group",
+ "parentfield": "permissions",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "print": 1,
+ "read": 1,
+ "report": 1,
+ "role": "Newsletter Manager",
+ "select": 0,
+ "share": 1,
+ "submit": 0,
+ "write": 1
+ }
+ ],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 1,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 1,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 1,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 1,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": "hash",
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "Document",
+ "documentation": null,
+ "editable_grid": 0,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "email_group",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 1,
+ "is_virtual": 0,
+ "label": "Email Group",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Email Group",
+ "parent": "Email Group Member",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 1,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "email",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 1,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Email",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Email",
+ "parent": "Email Group Member",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "unsubscribed",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Unsubscribed",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Email Group Member",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 1,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": null,
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 0,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 0,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "7dede1def628b85e6d1385a81cedb3c3",
+ "modified": "2026-05-17 06:56:34.430439",
+ "module": "Email",
+ "name": "Email Group Member",
+ "naming_rule": "Random",
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [
+ {
+ "amend": 0,
+ "cancel": 0,
+ "create": 1,
+ "delete": 1,
+ "email": 1,
+ "export": 1,
+ "if_owner": 0,
+ "import": 1,
+ "match": null,
+ "parent": "Email Group Member",
+ "parentfield": "permissions",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "print": 1,
+ "read": 1,
+ "report": 1,
+ "role": "Newsletter Manager",
+ "select": 0,
+ "share": 1,
+ "submit": 0,
+ "write": 1
+ }
+ ],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 1,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": "email",
+ "track_changes": 1,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 0,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": null,
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "System",
+ "documentation": null,
+ "editable_grid": 0,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "email",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Email",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Email Unsubscribe",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 1,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "reference_doctype",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 1,
+ "is_virtual": 0,
+ "label": "Reference Document Type",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "DocType",
+ "parent": "Email Unsubscribe",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "reference_name",
+ "fieldtype": "Dynamic Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Reference Name",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "reference_doctype",
+ "parent": "Email Unsubscribe",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "global_unsubscribe",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Global Unsubscribe",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Email Unsubscribe",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": null,
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 0,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 0,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "8fcc1dd68f7e92122154a4b50d66adca",
+ "modified": "2026-05-17 06:56:34.733999",
+ "module": "Email",
+ "name": "Email Unsubscribe",
+ "naming_rule": null,
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [
+ {
+ "amend": 0,
+ "cancel": 0,
+ "create": 1,
+ "delete": 1,
+ "email": 1,
+ "export": 1,
+ "if_owner": 0,
+ "import": 0,
+ "match": null,
+ "parent": "Email Unsubscribe",
+ "parentfield": "permissions",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "print": 1,
+ "read": 1,
+ "report": 1,
+ "role": "System Manager",
+ "select": 0,
+ "share": 1,
+ "submit": 0,
+ "write": 1
+ }
+ ],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 1,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 1,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 1,
+ "allow_rename": 1,
+ "app": null,
+ "autoname": "PROJ-ACC-.#####",
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "Setup",
+ "documentation": null,
+ "editable_grid": 0,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "activity_type",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 1,
+ "is_virtual": 0,
+ "label": "Activity Type",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Activity Type",
+ "parent": "Activity Cost",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": "",
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "employee",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 1,
+ "is_virtual": 0,
+ "label": "Employee",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Employee",
+ "parent": "Activity Cost",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": "",
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_2",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Activity Cost",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": "",
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "employee_name",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Employee Name",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "",
+ "parent": "Activity Cost",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": "",
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": "employee.department",
+ "fetch_if_empty": 0,
+ "fieldname": "department",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Department",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Department",
+ "parent": "Activity Cost",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": "",
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "section_break_4",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Activity Cost",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": "",
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": "per hour",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "billing_rate",
+ "fieldtype": "Currency",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Billing Rate",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Activity Cost",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": "",
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_6",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Activity Cost",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": "",
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": "per hour",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "costing_rate",
+ "fieldtype": "Currency",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Costing Rate",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Activity Cost",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": "",
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "title",
+ "fieldtype": "Data",
+ "hidden": 1,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "title",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 1,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Activity Cost",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": "",
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": null,
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 0,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 0,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "78543c976547625f035994912530f943",
+ "modified": "2026-05-17 06:56:37.493997",
+ "module": "Projects",
+ "name": "Activity Cost",
+ "naming_rule": null,
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [
+ {
+ "amend": 0,
+ "cancel": 0,
+ "create": 1,
+ "delete": 1,
+ "email": 1,
+ "export": 1,
+ "if_owner": 0,
+ "import": 0,
+ "match": null,
+ "parent": "Activity Cost",
+ "parentfield": "permissions",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "print": 1,
+ "read": 1,
+ "report": 1,
+ "role": "Projects User",
+ "select": 0,
+ "share": 1,
+ "submit": 0,
+ "write": 1
+ }
+ ],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 0,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": "title",
+ "track_changes": 0,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 0,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": null,
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "Other",
+ "documentation": null,
+ "editable_grid": 1,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "module",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Module",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Block Module",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": null,
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 0,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 1,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "d6f50d2e4c486342cb76ef621d598025",
+ "modified": "2026-05-17 06:56:33.709686",
+ "module": "Core",
+ "name": "Block Module",
+ "naming_rule": null,
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 0,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 0,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 0,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": null,
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "",
+ "documentation": null,
+ "editable_grid": 1,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "task",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Task",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Task",
+ "parent": "Dependent Task",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": "",
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 1,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": null,
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 0,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 1,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "7785493b4929ceeabb7a71df1e3f73b7",
+ "modified": "2026-05-17 06:56:37.422565",
+ "module": "Projects",
+ "name": "Dependent Task",
+ "naming_rule": null,
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 0,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 0,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 0,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": null,
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": null,
+ "documentation": null,
+ "editable_grid": 1,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "task",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Task",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Task",
+ "parent": "Task Depends On",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_2",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Task Depends On",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": "task.subject",
+ "fetch_if_empty": 1,
+ "fieldname": "subject",
+ "fieldtype": "Text",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Subject",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Task Depends On",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "project",
+ "fieldtype": "Text",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Project",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Task Depends On",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": null,
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 0,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 1,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "259d41dc7a1567141523b0b11f4d3777",
+ "modified": "2026-05-17 06:56:37.558166",
+ "module": "Projects",
+ "name": "Task Depends On",
+ "naming_rule": null,
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 0,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 0,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 0,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": null,
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "Other",
+ "documentation": null,
+ "editable_grid": 1,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "variant_of",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Variant Of",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Item",
+ "parent": "Item Variant Attribute",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 1,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "attribute",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Attribute",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Item Attribute",
+ "parent": "Item Variant Attribute",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 1,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_2",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Item Variant Attribute",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "attribute_value",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Attribute Value",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Item Variant Attribute",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": "has_variants",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "numeric_values",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Numeric Values",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Item Variant Attribute",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": "attribute.disabled",
+ "fetch_if_empty": 0,
+ "fieldname": "disabled",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Disabled",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Item Variant Attribute",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "numeric_values",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "section_break_4",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Item Variant Attribute",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "from_range",
+ "fieldtype": "Float",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "From Range",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Item Variant Attribute",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "increment",
+ "fieldtype": "Float",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Increment",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Item Variant Attribute",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_8",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Item Variant Attribute",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "to_range",
+ "fieldtype": "Float",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "To Range",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Item Variant Attribute",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": null,
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 0,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 1,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "ad3ed4d30e1c308df2df07ee35dae92b",
+ "modified": "2026-05-17 06:56:38.693171",
+ "module": "Stock",
+ "name": "Item Variant Attribute",
+ "naming_rule": null,
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 0,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 0,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 1,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": "ACC-TAX-RULE-.YYYY.-.#####",
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "Setup",
+ "documentation": null,
+ "editable_grid": 0,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "Sales",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "tax_type",
+ "fieldtype": "Select",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 1,
+ "is_virtual": 0,
+ "label": "Tax Type",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Sales\nPurchase",
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "1",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "use_for_shopping_cart",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Use for Shopping Cart",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_1",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval:doc.tax_type==\"Sales\"",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "sales_tax_template",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Sales Tax Template",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Sales Taxes and Charges Template",
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval:doc.tax_type==\"Purchase\"",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "purchase_tax_template",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Purchase Tax Template",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Purchase Taxes and Charges Template",
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "filters",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Filters",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval:doc.tax_type==\"Sales\"",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "customer",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Customer",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Customer",
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval:doc.tax_type==\"Purchase\"",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "supplier",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Supplier",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Supplier",
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "item",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Item",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Item",
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "billing_city",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Billing City",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "billing_county",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Billing County",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "billing_state",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Billing State",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "billing_zipcode",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Billing Zipcode",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "billing_country",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Billing Country",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Country",
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "tax_category",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Tax Category",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Tax Category",
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_2",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval:doc.tax_type==\"Sales\"",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": "customer.customer_group",
+ "fetch_if_empty": 0,
+ "fieldname": "customer_group",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Customer Group",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Customer Group",
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval:doc.tax_type==\"Purchase\"",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": "supplier.supplier_group",
+ "fetch_if_empty": 0,
+ "fieldname": "supplier_group",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Supplier Group",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Supplier Group",
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "item_group",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Item Group",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Item Group",
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "shipping_city",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Shipping City",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "shipping_county",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Shipping County",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "shipping_state",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Shipping State",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "shipping_zipcode",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Shipping Zipcode",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "shipping_country",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Shipping Country",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Country",
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "section_break_4",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Validity",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "from_date",
+ "fieldtype": "Date",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "From Date",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_7",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "to_date",
+ "fieldtype": "Date",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "To Date",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "section_break_6",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "1",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "priority",
+ "fieldtype": "Int",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Priority",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_20",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "company",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Company",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Company",
+ "parent": "Tax Rule",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 1,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": null,
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 0,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 0,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "6f83848cab7203b5ffe92815305616c0",
+ "modified": "2026-05-17 06:56:36.343514",
+ "module": "Accounts",
+ "name": "Tax Rule",
+ "naming_rule": null,
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [
+ {
+ "amend": 0,
+ "cancel": 0,
+ "create": 1,
+ "delete": 1,
+ "email": 1,
+ "export": 1,
+ "if_owner": 0,
+ "import": 0,
+ "match": null,
+ "parent": "Tax Rule",
+ "parentfield": "permissions",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "print": 1,
+ "read": 1,
+ "report": 1,
+ "role": "Accounts Manager",
+ "select": 0,
+ "share": 1,
+ "submit": 0,
+ "write": 1
+ }
+ ],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 0,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 1,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 0,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 0,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": null,
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "Other",
+ "documentation": null,
+ "editable_grid": 1,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "country",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Country",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Country",
+ "parent": "Shipping Rule Country",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": "",
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": null,
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 0,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 1,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "8dd3a45fc77a2bdeb4f93d6d2aeb59c4",
+ "modified": "2026-05-17 06:56:36.501385",
+ "module": "Accounts",
+ "name": "Shipping Rule Country",
+ "naming_rule": null,
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 0,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 0,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 0,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": null,
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": "",
+ "documentation": null,
+ "editable_grid": 1,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "country",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Country",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Country",
+ "parent": "Price List Country",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": "",
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ }
+ ],
+ "force_re_route_to_default_view": 0,
+ "grid_page_length": 0,
+ "has_web_view": 0,
+ "hide_toolbar": 0,
+ "icon": null,
+ "image_field": null,
+ "in_create": 0,
+ "index_web_pages_for_search": 0,
+ "is_calendar_and_gantt": 0,
+ "is_published_field": null,
+ "is_submittable": 0,
+ "is_tree": 0,
+ "is_virtual": 0,
+ "issingle": 0,
+ "istable": 1,
+ "links": [],
+ "make_attachments_public": 0,
+ "max_attachments": 0,
+ "menu_index": null,
+ "migration_hash": "4ff69b7020c1e077a472450312b37705",
+ "modified": "2026-05-17 06:56:38.769056",
+ "module": "Stock",
+ "name": "Price List Country",
+ "naming_rule": null,
+ "nsm_parent_field": null,
+ "parent_node": null,
+ "permissions": [],
+ "print_outline": null,
+ "protect_attached_files": 0,
+ "queue_in_background": 0,
+ "quick_entry": 0,
+ "read_only": 0,
+ "recipient_account_field": null,
+ "restrict_to_domain": null,
+ "route": null,
+ "row_format": "Dynamic",
+ "rows_threshold_for_grid_search": 0,
+ "search_fields": null,
+ "sender_field": null,
+ "sender_name_field": null,
+ "show_name_in_global_search": 0,
+ "show_preview_popup": 0,
+ "show_title_field_in_link": 0,
+ "smallicon": null,
+ "sort_field": "modified",
+ "sort_order": "DESC",
+ "states": [],
+ "subject": null,
+ "subject_field": null,
+ "tag_fields": null,
+ "timeline_field": null,
+ "title_field": null,
+ "track_changes": 0,
+ "track_seen": 0,
+ "track_views": 0,
+ "translated_doctype": 0,
+ "website_search_field": null
+ },
+ {
+ "_assign": null,
+ "_comments": null,
+ "_last_update": null,
+ "_liked_by": null,
+ "_user_tags": null,
+ "actions": [],
+ "allow_auto_repeat": 0,
+ "allow_copy": 0,
+ "allow_events_in_timeline": 0,
+ "allow_guest_to_view": 0,
+ "allow_import": 0,
+ "allow_rename": 0,
+ "app": null,
+ "autoname": "naming_series:",
+ "beta": 0,
+ "color": null,
+ "colour": null,
+ "custom": 0,
+ "default_email_template": null,
+ "default_print_format": null,
+ "default_view": null,
+ "description": null,
+ "docstatus": 0,
+ "doctype": "DocType",
+ "document_type": null,
+ "documentation": null,
+ "editable_grid": 0,
+ "email_append_to": 0,
+ "engine": "InnoDB",
+ "fields": [
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "Inward",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "payment_request_type",
+ "fieldtype": "Select",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Payment Request Type",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Outward\nInward",
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "transaction_date",
+ "fieldtype": "Date",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 1,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Transaction Date",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_2",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "naming_series",
+ "fieldtype": "Select",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 1,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Series",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 1,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "ACC-PRQ-.YYYY.-",
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 1,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 1,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "company",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Company",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Company",
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "mode_of_payment",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Mode of Payment",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Mode of Payment",
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "party_details",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Party Details",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "party_type",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Party Type",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "DocType",
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "party",
+ "fieldtype": "Dynamic Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Party",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "party_type",
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "party_name",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Party Name",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_4",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "reference_doctype",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 1,
+ "is_virtual": 0,
+ "label": "Reference Doctype",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 1,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "DocType",
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 1,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 1,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "reference_name",
+ "fieldtype": "Dynamic Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 1,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 1,
+ "is_virtual": 0,
+ "label": "Reference Name",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 1,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "reference_doctype",
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 1,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 1,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "transaction_details",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Transaction Details",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": "Amount in transaction currency",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "grand_total",
+ "fieldtype": "Currency",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 1,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Amount",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 1,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "currency",
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 1,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "currency",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Transaction Currency",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Currency",
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "is_a_subscription",
+ "fieldtype": "Check",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Is a Subscription",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_18",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval: doc.docstatus === 1",
+ "description": "Amount in party's bank account currency",
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "outstanding_amount",
+ "fieldtype": "Currency",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 1,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Outstanding Amount",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 1,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "party_account_currency",
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "party_account_currency",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Party Account Currency",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Currency",
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval:doc.is_a_subscription",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "subscription_section",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Subscription Section",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "subscription_plans",
+ "fieldtype": "Table",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Subscription Plans",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Subscription Plan Detail",
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 1,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "bank_account_details",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Bank Account Details",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "bank_account",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Bank Account",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Bank Account",
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": "bank_account.bank",
+ "fetch_if_empty": 0,
+ "fieldname": "bank",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Bank",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Bank",
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": "bank_account.bank_account_no",
+ "fetch_if_empty": 0,
+ "fieldname": "bank_account_no",
+ "fieldtype": "Read Only",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Bank Account No",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": "bank_account.account",
+ "fetch_if_empty": 0,
+ "fieldname": "account",
+ "fieldtype": "Read Only",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Account",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_11",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": "bank_account.iban",
+ "fetch_if_empty": 0,
+ "fieldname": "iban",
+ "fieldtype": "Read Only",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "IBAN",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "IBAN",
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": "bank_account.branch_code",
+ "fetch_if_empty": 1,
+ "fieldname": "branch_code",
+ "fieldtype": "Read Only",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Branch Code",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": "bank.swift_number",
+ "fetch_if_empty": 0,
+ "fieldname": "swift_number",
+ "fieldtype": "Read Only",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "SWIFT Number",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 1,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "accounting_dimensions_section",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Accounting Dimensions",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "cost_center",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Cost Center",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Cost Center",
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "dimension_col_break",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "project",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Project",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Project",
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval: doc.payment_request_type == 'Inward'",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "recipient_and_message",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Recipient Message And Payment Details",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval: doc.payment_channel != \"Phone\"",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "print_format",
+ "fieldtype": "Select",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Print Format",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "email_to",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 1,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "To",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval: doc.payment_channel != \"Phone\"",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "subject",
+ "fieldtype": "Data",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 1,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Subject",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "column_break_9",
+ "fieldtype": "Column Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval: doc.payment_request_type == 'Inward'",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "payment_gateway_account",
+ "fieldtype": "Link",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Payment Gateway Account",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "Payment Gateway Account",
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "Draft",
+ "depends_on": null,
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "status",
+ "fieldtype": "Select",
+ "hidden": 1,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 1,
+ "is_virtual": 0,
+ "label": "Status",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "\nDraft\nRequested\nInitiated\nPartially Paid\nPayment Ordered\nPaid\nFailed\nCancelled",
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": "0",
+ "depends_on": "eval:doc.reference_doctype==\"Sales Order\"",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "make_sales_invoice",
+ "fieldtype": "Check",
+ "hidden": 1,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Make Sales Invoice",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 1,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval: doc.payment_request_type == 'Inward' || doc.payment_channel != \"Phone\"",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "section_break_10",
+ "fieldtype": "Section Break",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": null,
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval: doc.payment_channel != \"Phone\"",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "message",
+ "fieldtype": "Text",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Message",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": null,
+ "parent": "Payment Request",
+ "parentfield": "fields",
+ "parenttype": "DocType",
+ "permlevel": 0,
+ "placeholder": null,
+ "precision": null,
+ "print_hide": 0,
+ "print_hide_if_no_value": 0,
+ "print_width": null,
+ "read_only": 0,
+ "read_only_depends_on": null,
+ "remember_last_selected_value": 0,
+ "report_hide": 0,
+ "reqd": 0,
+ "search_index": 0,
+ "set_only_once": 0,
+ "show_dashboard": 0,
+ "show_on_timeline": 0,
+ "show_preview_popup": 0,
+ "sort_options": 0,
+ "translatable": 0,
+ "trigger": null,
+ "unique": 0,
+ "width": null
+ },
+ {
+ "allow_bulk_edit": 0,
+ "allow_in_quick_entry": 0,
+ "allow_on_submit": 0,
+ "bold": 0,
+ "collapsible": 0,
+ "collapsible_depends_on": null,
+ "columns": 0,
+ "default": null,
+ "depends_on": "eval: doc.payment_channel != \"Phone\"",
+ "description": null,
+ "documentation_url": null,
+ "fetch_from": null,
+ "fetch_if_empty": 0,
+ "fieldname": "message_examples",
+ "fieldtype": "HTML",
+ "hidden": 0,
+ "hide_border": 0,
+ "hide_days": 0,
+ "hide_seconds": 0,
+ "ignore_user_permissions": 0,
+ "ignore_xss_filter": 0,
+ "in_filter": 0,
+ "in_global_search": 0,
+ "in_list_view": 0,
+ "in_preview": 0,
+ "in_standard_filter": 0,
+ "is_virtual": 0,
+ "label": "Message Examples",
+ "length": 0,
+ "link_filters": null,
+ "make_attachment_public": 0,
+ "mandatory_depends_on": null,
+ "max_height": null,
+ "no_copy": 0,
+ "non_negative": 0,
+ "oldfieldname": null,
+ "oldfieldtype": null,
+ "options": "\n", + "parent": "Payment Request", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 1, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "mute_email", + "fieldtype": "Check", + "hidden": 1, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Mute Email", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 1, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Request", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 1, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 1, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "payment_url", + "fieldtype": "Data", + "hidden": 1, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 500, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "URL", + "parent": "Payment Request", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 1, + "collapsible_depends_on": "doc.payment_gateway_account", + "columns": 0, + "default": null, + "depends_on": "eval: doc.payment_request_type == 'Inward'", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "section_break_7", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Payment Gateway Details", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Request", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": "payment_gateway_account.payment_gateway", + "fetch_if_empty": 0, + "fieldname": "payment_gateway", + "fieldtype": "Read Only", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Payment Gateway", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Request", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": "payment_gateway_account.payment_account", + "fetch_if_empty": 0, + "fieldname": "payment_account", + "fieldtype": "Read Only", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Payment Account", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Request", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval: doc.payment_channel==\"Phone\"", + "description": null, + "documentation_url": null, + "fetch_from": "payment_gateway_account.payment_channel", + "fetch_if_empty": 0, + "fieldname": "payment_channel", + "fieldtype": "Select", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Payment Channel", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "\nEmail\nPhone", + "parent": "Payment Request", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "payment_order", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Payment Order", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Payment Order", + "parent": "Payment Request", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "amended_from", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Amended From", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 1, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Payment Request", + "parent": "Payment Request", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 1, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break_iiuv", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Request", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "phone_number", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Phone Number", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Request", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + } + ], + "force_re_route_to_default_view": 0, + "grid_page_length": 50, + "has_web_view": 0, + "hide_toolbar": 0, + "icon": null, + "image_field": null, + "in_create": 1, + "index_web_pages_for_search": 1, + "is_calendar_and_gantt": 0, + "is_published_field": null, + "is_submittable": 1, + "is_tree": 0, + "is_virtual": 0, + "issingle": 0, + "istable": 0, + "links": [], + "make_attachments_public": 0, + "max_attachments": 0, + "menu_index": null, + "migration_hash": "adacbbd64497b1e915980d45e053e312", + "modified": "2026-05-17 06:56:36.170752", + "module": "Accounts", + "name": "Payment Request", + "naming_rule": "By \"Naming Series\" field", + "nsm_parent_field": null, + "parent_node": null, + "permissions": [ + { + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "if_owner": 0, + "import": 0, + "match": null, + "parent": "Payment Request", + "parentfield": "permissions", + "parenttype": "DocType", + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Accounts User", + "select": 0, + "share": 1, + "submit": 0, + "write": 1 + }, + { + "amend": 1, + "cancel": 1, + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "if_owner": 0, + "import": 0, + "match": null, + "parent": "Payment Request", + "parentfield": "permissions", + "parenttype": "DocType", + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Accounts Manager", + "select": 0, + "share": 1, + "submit": 1, + "write": 1 + } + ], + "print_outline": null, + "protect_attached_files": 0, + "queue_in_background": 0, + "quick_entry": 0, + "read_only": 0, + "recipient_account_field": null, + "restrict_to_domain": null, + "route": null, + "row_format": "Dynamic", + "rows_threshold_for_grid_search": 0, + "search_fields": null, + "sender_field": null, + "sender_name_field": null, + "show_name_in_global_search": 0, + "show_preview_popup": 1, + "show_title_field_in_link": 0, + "smallicon": null, + "sort_field": "modified", + "sort_order": "DESC", + "states": [], + "subject": null, + "subject_field": null, + "tag_fields": null, + "timeline_field": null, + "title_field": null, + "track_changes": 0, + "track_seen": 0, + "track_views": 0, + "translated_doctype": 0, + "website_search_field": null + }, + { + "_assign": null, + "_comments": null, + "_last_update": null, + "_liked_by": null, + "_user_tags": null, + "actions": [], + "allow_auto_repeat": 0, + "allow_copy": 0, + "allow_events_in_timeline": 0, + "allow_guest_to_view": 0, + "allow_import": 0, + "allow_rename": 0, + "app": null, + "autoname": null, + "beta": 0, + "color": null, + "colour": null, + "custom": 0, + "default_email_template": null, + "default_print_format": null, + "default_view": null, + "description": null, + "docstatus": 0, + "doctype": "DocType", + "document_type": null, + "documentation": null, + "editable_grid": 1, + "email_append_to": 0, + "engine": "InnoDB", + "fields": [ + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "payment_gateway", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Payment Gateway", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Payment Gateway", + "parent": "Payment Gateway Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "Email", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "payment_channel", + "fieldtype": "Select", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Payment Channel", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "\nEmail\nPhone", + "parent": "Payment Gateway Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "company", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Company", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Company", + "parent": "Payment Gateway Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 1, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 1, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "is_default", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Is Default", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Gateway Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break_4", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Gateway Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "payment_account", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Payment Account", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Account", + "parent": "Payment Gateway Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": "payment_account.account_currency", + "fetch_if_empty": 0, + "fieldname": "currency", + "fieldtype": "Read Only", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Currency", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Gateway Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval: doc.payment_channel !== \"Phone\"", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "payment_request_message", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Gateway Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "Please click on the link below to make your payment", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "message", + "fieldtype": "Small Text", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Default Payment Request Message", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Payment Gateway Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "message_examples", + "fieldtype": "HTML", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Message Examples", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Message Example
\n\n<p>Dear {{ doc.contact_person }},</p>\n\n<p>Requesting payment for {{ doc.doctype }}, {{ doc.name }} for {{ doc.grand_total }}.</p>\n\n<a href=\"{{ payment_url }}\"> click here to pay </a>\n\n
\n", + "parent": "Payment Gateway Account", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + } + ], + "force_re_route_to_default_view": 0, + "grid_page_length": 0, + "has_web_view": 0, + "hide_toolbar": 0, + "icon": null, + "image_field": null, + "in_create": 0, + "index_web_pages_for_search": 1, + "is_calendar_and_gantt": 0, + "is_published_field": null, + "is_submittable": 0, + "is_tree": 0, + "is_virtual": 0, + "issingle": 0, + "istable": 0, + "links": [], + "make_attachments_public": 0, + "max_attachments": 0, + "menu_index": null, + "migration_hash": "546c33e4a58833fa5ae4e14fbcaf6747", + "modified": "2026-05-17 06:56:36.921661", + "module": "Accounts", + "name": "Payment Gateway Account", + "naming_rule": null, + "nsm_parent_field": null, + "parent_node": null, + "permissions": [ + { + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "if_owner": 0, + "import": 0, + "match": null, + "parent": "Payment Gateway Account", + "parentfield": "permissions", + "parenttype": "DocType", + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Accounts Manager", + "select": 0, + "share": 1, + "submit": 0, + "write": 1 + } + ], + "print_outline": null, + "protect_attached_files": 0, + "queue_in_background": 0, + "quick_entry": 0, + "read_only": 0, + "recipient_account_field": null, + "restrict_to_domain": null, + "route": null, + "row_format": "Dynamic", + "rows_threshold_for_grid_search": 0, + "search_fields": null, + "sender_field": null, + "sender_name_field": null, + "show_name_in_global_search": 0, + "show_preview_popup": 0, + "show_title_field_in_link": 0, + "smallicon": null, + "sort_field": "modified", + "sort_order": "DESC", + "states": [], + "subject": null, + "subject_field": null, + "tag_fields": null, + "timeline_field": null, + "title_field": null, + "track_changes": 0, + "track_seen": 0, + "track_views": 0, + "translated_doctype": 0, + "website_search_field": null + }, + { + "_assign": null, + "_comments": null, + "_last_update": null, + "_liked_by": null, + "_user_tags": null, + "actions": [], + "allow_auto_repeat": 0, + "allow_copy": 0, + "allow_events_in_timeline": 0, + "allow_guest_to_view": 0, + "allow_import": 1, + "allow_rename": 1, + "app": null, + "autoname": "field:short_name", + "beta": 0, + "color": null, + "colour": null, + "custom": 0, + "default_email_template": null, + "default_print_format": null, + "default_view": null, + "description": "Manufacturers used in Items", + "docstatus": 0, + "doctype": "DocType", + "document_type": "Setup", + "documentation": null, + "editable_grid": 0, + "email_append_to": 0, + "engine": "InnoDB", + "fields": [ + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": "Limited to 12 characters", + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "short_name", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Short Name", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Manufacturer", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 1, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "full_name", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Full Name", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Manufacturer", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "website", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Website", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Manufacturer", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "country", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Country", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Country", + "parent": "Manufacturer", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "logo", + "fieldtype": "Attach Image", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Logo", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Manufacturer", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval:!doc.__islocal", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "address_contacts", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Address and Contacts", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "fa fa-map-marker", + "parent": "Manufacturer", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "address_html", + "fieldtype": "HTML", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Address HTML", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Manufacturer", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break_8", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Manufacturer", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "contact_html", + "fieldtype": "HTML", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Contact HTML", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Manufacturer", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "section_break_10", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Manufacturer", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "notes", + "fieldtype": "Small Text", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Notes", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Manufacturer", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + } + ], + "force_re_route_to_default_view": 0, + "grid_page_length": 0, + "has_web_view": 0, + "hide_toolbar": 0, + "icon": "fa fa-certificate", + "image_field": null, + "in_create": 0, + "index_web_pages_for_search": 0, + "is_calendar_and_gantt": 0, + "is_published_field": null, + "is_submittable": 0, + "is_tree": 0, + "is_virtual": 0, + "issingle": 0, + "istable": 0, + "links": [], + "make_attachments_public": 0, + "max_attachments": 0, + "menu_index": null, + "migration_hash": "6204eb165cb8d61c39f2021f0f78f44d", + "modified": "2026-05-17 06:56:38.864856", + "module": "Stock", + "name": "Manufacturer", + "naming_rule": null, + "nsm_parent_field": null, + "parent_node": null, + "permissions": [ + { + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "if_owner": 0, + "import": 0, + "match": null, + "parent": "Manufacturer", + "parentfield": "permissions", + "parenttype": "DocType", + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Stock Manager", + "select": 0, + "share": 1, + "submit": 0, + "write": 1 + }, + { + "amend": 0, + "cancel": 0, + "create": 0, + "delete": 0, + "email": 1, + "export": 1, + "if_owner": 0, + "import": 0, + "match": null, + "parent": "Manufacturer", + "parentfield": "permissions", + "parenttype": "DocType", + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Stock User", + "select": 0, + "share": 1, + "submit": 0, + "write": 0 + } + ], + "print_outline": null, + "protect_attached_files": 0, + "queue_in_background": 0, + "quick_entry": 0, + "read_only": 0, + "recipient_account_field": null, + "restrict_to_domain": null, + "route": null, + "row_format": "Dynamic", + "rows_threshold_for_grid_search": 0, + "search_fields": "short_name, full_name", + "sender_field": null, + "sender_name_field": null, + "show_name_in_global_search": 1, + "show_preview_popup": 0, + "show_title_field_in_link": 0, + "smallicon": null, + "sort_field": "modified", + "sort_order": "DESC", + "states": [], + "subject": null, + "subject_field": null, + "tag_fields": null, + "timeline_field": null, + "title_field": "short_name", + "track_changes": 0, + "track_seen": 0, + "track_views": 0, + "translated_doctype": 0, + "website_search_field": null + }, + { + "_assign": null, + "_comments": null, + "_last_update": null, + "_liked_by": null, + "_user_tags": null, + "actions": [], + "allow_auto_repeat": 0, + "allow_copy": 0, + "allow_events_in_timeline": 0, + "allow_guest_to_view": 0, + "allow_import": 0, + "allow_rename": 0, + "app": null, + "autoname": "hash", + "beta": 0, + "color": null, + "colour": null, + "custom": 0, + "default_email_template": null, + "default_print_format": null, + "default_view": null, + "description": null, + "docstatus": 0, + "doctype": "DocType", + "document_type": "", + "documentation": null, + "editable_grid": 1, + "email_append_to": 0, + "engine": "InnoDB", + "fields": [ + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "material_request", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Material Request", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": "prevdoc_docname", + "oldfieldtype": "Data", + "options": "Material Request", + "parent": "Production Plan Material Request", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": "150px", + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": "150px" + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "col_break1", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Production Plan Material Request", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "material_request_date", + "fieldtype": "Date", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Material Request Date", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": "document_date", + "oldfieldtype": "Date", + "options": "", + "parent": "Production Plan Material Request", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": "120px", + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": "120px" + } + ], + "force_re_route_to_default_view": 0, + "grid_page_length": 0, + "has_web_view": 0, + "hide_toolbar": 0, + "icon": null, + "image_field": null, + "in_create": 0, + "index_web_pages_for_search": 0, + "is_calendar_and_gantt": 0, + "is_published_field": null, + "is_submittable": 0, + "is_tree": 0, + "is_virtual": 0, + "issingle": 0, + "istable": 1, + "links": [], + "make_attachments_public": 0, + "max_attachments": 0, + "menu_index": null, + "migration_hash": "8186ae590fed9bae3becd255faa0700d", + "modified": "2026-05-17 06:56:38.267969", + "module": "Manufacturing", + "name": "Production Plan Material Request", + "naming_rule": null, + "nsm_parent_field": null, + "parent_node": null, + "permissions": [], + "print_outline": null, + "protect_attached_files": 0, + "queue_in_background": 0, + "quick_entry": 0, + "read_only": 0, + "recipient_account_field": null, + "restrict_to_domain": null, + "route": null, + "row_format": "Dynamic", + "rows_threshold_for_grid_search": 0, + "search_fields": null, + "sender_field": null, + "sender_name_field": null, + "show_name_in_global_search": 0, + "show_preview_popup": 0, + "show_title_field_in_link": 0, + "smallicon": null, + "sort_field": "modified", + "sort_order": "ASC", + "states": [], + "subject": null, + "subject_field": null, + "tag_fields": null, + "timeline_field": null, + "title_field": null, + "track_changes": 0, + "track_seen": 0, + "track_views": 0, + "translated_doctype": 0, + "website_search_field": null + }, + { + "_assign": null, + "_comments": null, + "_last_update": null, + "_liked_by": null, + "_user_tags": null, + "actions": [], + "allow_auto_repeat": 0, + "allow_copy": 0, + "allow_events_in_timeline": 0, + "allow_guest_to_view": 0, + "allow_import": 1, + "allow_rename": 0, + "app": null, + "autoname": "hash", + "beta": 0, + "color": null, + "colour": null, + "custom": 0, + "default_email_template": null, + "default_print_format": null, + "default_view": null, + "description": null, + "docstatus": 0, + "doctype": "DocType", + "document_type": "Setup", + "documentation": null, + "editable_grid": 0, + "email_append_to": 0, + "engine": "InnoDB", + "fields": [ + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "contributed", + "fieldtype": "Check", + "hidden": 1, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Contributed", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Translation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "language", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Language", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Language", + "parent": "Translation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 1, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "section_break_4", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Translation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": "If your data is in HTML, please copy paste the exact HTML code with the tags.", + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "source_text", + "fieldtype": "Code", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Source Text", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Translation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "context", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Context", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Translation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break_6", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Translation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "translated_text", + "fieldtype": "Code", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Translated Text", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Translation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "section_break_6", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Translation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "doc.contributed", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "contribution_status", + "fieldtype": "Select", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Contribution Status", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "\nPending\nVerified\nRejected", + "parent": "Translation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "contribution_docname", + "fieldtype": "Data", + "hidden": 1, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Contribution Document Name", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Translation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + } + ], + "force_re_route_to_default_view": 0, + "grid_page_length": 0, + "has_web_view": 0, + "hide_toolbar": 0, + "icon": null, + "image_field": null, + "in_create": 0, + "index_web_pages_for_search": 0, + "is_calendar_and_gantt": 0, + "is_published_field": null, + "is_submittable": 0, + "is_tree": 0, + "is_virtual": 0, + "issingle": 0, + "istable": 0, + "links": [], + "make_attachments_public": 0, + "max_attachments": 0, + "menu_index": null, + "migration_hash": "d4ab59b73c33ac3874414bc946b2ef65", + "modified": "2026-05-17 06:56:33.914211", + "module": "Core", + "name": "Translation", + "naming_rule": "Random", + "nsm_parent_field": null, + "parent_node": null, + "permissions": [ + { + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "if_owner": 0, + "import": 0, + "match": null, + "parent": "Translation", + "parentfield": "permissions", + "parenttype": "DocType", + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "System Manager", + "select": 0, + "share": 1, + "submit": 0, + "write": 1 + }, + { + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "if_owner": 0, + "import": 0, + "match": null, + "parent": "Translation", + "parentfield": "permissions", + "parenttype": "DocType", + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Translator", + "select": 0, + "share": 1, + "submit": 0, + "write": 1 + } + ], + "print_outline": null, + "protect_attached_files": 0, + "queue_in_background": 0, + "quick_entry": 0, + "read_only": 0, + "recipient_account_field": null, + "restrict_to_domain": null, + "route": null, + "row_format": "Dynamic", + "rows_threshold_for_grid_search": 0, + "search_fields": null, + "sender_field": null, + "sender_name_field": null, + "show_name_in_global_search": 0, + "show_preview_popup": 0, + "show_title_field_in_link": 0, + "smallicon": null, + "sort_field": "modified", + "sort_order": "DESC", + "states": [], + "subject": null, + "subject_field": null, + "tag_fields": null, + "timeline_field": null, + "title_field": "source_text", + "track_changes": 1, + "track_seen": 0, + "track_views": 0, + "translated_doctype": 0, + "website_search_field": null + }, + { + "_assign": null, + "_comments": null, + "_last_update": null, + "_liked_by": null, + "_user_tags": null, + "actions": [], + "allow_auto_repeat": 0, + "allow_copy": 0, + "allow_events_in_timeline": 0, + "allow_guest_to_view": 0, + "allow_import": 0, + "allow_rename": 0, + "app": null, + "autoname": null, + "beta": 0, + "color": null, + "colour": null, + "custom": 0, + "default_email_template": null, + "default_print_format": null, + "default_view": null, + "description": null, + "docstatus": 0, + "doctype": "DocType", + "document_type": null, + "documentation": null, + "editable_grid": 0, + "email_append_to": 0, + "engine": "InnoDB", + "fields": [ + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "module_name", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Module Name", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Desktop Icon", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "label", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Label", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Desktop Icon", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "standard", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Standard", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Desktop Icon", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "custom", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Custom", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Desktop Icon", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break_3", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Desktop Icon", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "app", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "App", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Desktop Icon", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "description", + "fieldtype": "Small Text", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Description", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Desktop Icon", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "category", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Category", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Desktop Icon", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "hidden", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Hidden", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Desktop Icon", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "blocked", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Blocked", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Desktop Icon", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "force_show", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Force Show", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Desktop Icon", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "section_break_7", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Desktop Icon", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "type", + "fieldtype": "Select", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 1, + "is_virtual": 0, + "label": "Type", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "module\nlist\nlink\npage\nquery-report", + "parent": "Desktop Icon", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "_doctype", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "_doctype", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "DocType", + "parent": "Desktop Icon", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "_report", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "_report", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Report", + "parent": "Desktop Icon", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "link", + "fieldtype": "Small Text", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Link", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Desktop Icon", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break_10", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Desktop Icon", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "color", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Color", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Desktop Icon", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "icon", + "fieldtype": "Data", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Icon", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Desktop Icon", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "reverse", + "fieldtype": "Check", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Reverse Icon Color", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Desktop Icon", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "idx", + "fieldtype": "Int", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Idx", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Desktop Icon", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + } + ], + "force_re_route_to_default_view": 0, + "grid_page_length": 0, + "has_web_view": 0, + "hide_toolbar": 0, + "icon": null, + "image_field": null, + "in_create": 1, + "index_web_pages_for_search": 0, + "is_calendar_and_gantt": 0, + "is_published_field": null, + "is_submittable": 0, + "is_tree": 0, + "is_virtual": 0, + "issingle": 0, + "istable": 0, + "links": [], + "make_attachments_public": 0, + "max_attachments": 0, + "menu_index": null, + "migration_hash": "bcd05a27b3a74f3d00515aaa4d267394", + "modified": "2026-05-17 06:56:35.201871", + "module": "Desk", + "name": "Desktop Icon", + "naming_rule": null, + "nsm_parent_field": null, + "parent_node": null, + "permissions": [ + { + "amend": 0, + "cancel": 0, + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "if_owner": 0, + "import": 0, + "match": null, + "parent": "Desktop Icon", + "parentfield": "permissions", + "parenttype": "DocType", + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "System Manager", + "select": 0, + "share": 1, + "submit": 0, + "write": 1 + } + ], + "print_outline": null, + "protect_attached_files": 0, + "queue_in_background": 0, + "quick_entry": 0, + "read_only": 1, + "recipient_account_field": null, + "restrict_to_domain": null, + "route": null, + "row_format": "Dynamic", + "rows_threshold_for_grid_search": 0, + "search_fields": null, + "sender_field": null, + "sender_name_field": null, + "show_name_in_global_search": 0, + "show_preview_popup": 0, + "show_title_field_in_link": 0, + "smallicon": null, + "sort_field": "modified", + "sort_order": "DESC", + "states": [], + "subject": null, + "subject_field": null, + "tag_fields": null, + "timeline_field": null, + "title_field": "module_name", + "track_changes": 1, + "track_seen": 0, + "track_views": 0, + "translated_doctype": 0, + "website_search_field": null + }, + { + "_assign": null, + "_comments": null, + "_last_update": null, + "_liked_by": null, + "_user_tags": null, + "actions": [], + "allow_auto_repeat": 0, + "allow_copy": 0, + "allow_events_in_timeline": 0, + "allow_guest_to_view": 0, + "allow_import": 1, + "allow_rename": 0, + "app": null, + "autoname": "naming_series:", + "beta": 0, + "color": null, + "colour": null, + "custom": 0, + "default_email_template": null, + "default_print_format": null, + "default_view": null, + "description": null, + "docstatus": 0, + "doctype": "DocType", + "document_type": "Document", + "documentation": null, + "editable_grid": 0, + "email_append_to": 0, + "engine": "InnoDB", + "fields": [ + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "naming_series", + "fieldtype": "Select", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Series", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 1, + "non_negative": 0, + "oldfieldname": "naming_series", + "oldfieldtype": "Select", + "options": "PUR-RFQ-.YYYY.-", + "parent": "Request for Quotation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 1, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 1, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "company", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Company", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": "company", + "oldfieldtype": "Link", + "options": "Company", + "parent": "Request for Quotation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 1, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 1, + "report_hide": 0, + "reqd": 1, + "search_index": 1, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "billing_address", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Company Billing Address", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Address", + "parent": "Request for Quotation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "billing_address_display", + "fieldtype": "Small Text", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Billing Address Details", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Request for Quotation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": "For individual supplier", + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "vendor", + "fieldtype": "Link", + "hidden": 1, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 1, + "is_virtual": 0, + "label": "Supplier", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 1, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Supplier", + "parent": "Request for Quotation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "column_break1", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": "Column Break", + "options": null, + "parent": "Request for Quotation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": "50%", + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": "50%" + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "Today", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "transaction_date", + "fieldtype": "Date", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 1, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Date", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": "transaction_date", + "oldfieldtype": "Date", + "options": null, + "parent": "Request for Quotation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 1, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "schedule_date", + "fieldtype": "Date", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Required Date", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Request for Quotation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "status", + "fieldtype": "Select", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Status", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 1, + "non_negative": 0, + "oldfieldname": "status", + "oldfieldtype": "Select", + "options": "\nDraft\nSubmitted\nCancelled", + "parent": "Request for Quotation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 1, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 1, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": "0", + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "has_unit_price_items", + "fieldtype": "Check", + "hidden": 1, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Has Unit Price Items", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 1, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Request for Quotation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "amended_from", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Amended From", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 1, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Request for Quotation", + "parent": "Request for Quotation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 1, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 1, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "suppliers_section", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Request for Quotation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "suppliers", + "fieldtype": "Table", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Suppliers", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Request for Quotation Supplier", + "parent": "Request for Quotation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 1, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "items_section", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": "Section Break", + "options": "fa fa-shopping-cart", + "parent": "Request for Quotation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "items", + "fieldtype": "Table", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Items", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": "po_details", + "oldfieldtype": "Table", + "options": "Request for Quotation Item", + "parent": "Request for Quotation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval:doc.suppliers.some((item) => item.send_email) && !(doc.docstatus == 1 && !doc.email_template)", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "supplier_response_section", + "fieldtype": "Section Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Email Details", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Request for Quotation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "email_template", + "fieldtype": "Link", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Email Template", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Email Template", + "parent": "Request for Quotation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 1, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": "eval:!doc.docstatus==1", + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "preview", + "fieldtype": "Button", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": "Preview Email", + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Request for Quotation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "col_break_email_1", + "fieldtype": "Column Break", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "parent": "Request for Quotation", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "placeholder": null, + "precision": null, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "read_only": 0, + "read_only_depends_on": null, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "show_dashboard": 0, + "show_on_timeline": 0, + "show_preview_popup": 0, + "sort_options": 0, + "translatable": 0, + "trigger": null, + "unique": 0, + "width": null + }, + { + "allow_bulk_edit": 0, + "allow_in_quick_entry": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "columns": 0, + "default": null, + "depends_on": null, + "description": null, + "documentation_url": null, + "fetch_from": null, + "fetch_if_empty": 0, + "fieldname": "html_llwp", + "fieldtype": "HTML", + "hidden": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_global_search": 0, + "in_list_view": 0, + "in_preview": 0, + "in_standard_filter": 0, + "is_virtual": 0, + "label": null, + "length": 0, + "link_filters": null, + "make_attachment_public": 0, + "mandatory_depends_on": null, + "max_height": null, + "no_copy": 0, + "non_negative": 0, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Message Example
\n\n<p> Thank You for being a part of {{ doc.company }}! We hope you are enjoying the service.</p>\n\n<p> Please find enclosed the E Bill statement. The outstanding amount is {{ doc.grand_total }}.</p>\n\n<p> We don't want you to be spending time running around in order to pay for your Bill.
After all, life is beautiful and the time you have in hand should be spent to enjoy it!
So here are our little ways to help you get more time for life! </p>\n\n<a href=\"{{ payment_url }}\"> click here to pay </a>\n\n
In your Email Template, you can use the following special variables:\n
\n{{ update_password_link }}: A link where your supplier can set a new password to log into your portal.\n {{ portal_link }}: A link to this RFQ in your supplier portal.\n {{ supplier_name }}: The company name of your supplier.\n {{ contact.salutation }} {{ contact.last_name }}: The contact person of your supplier.\n {{ user_fullname }}: Your full name.\n Apart from these, you can access all values in this RFQ, like {{ message_for_supplier }} or {{ terms }}.
Uses Jinja Templating and all the fields of Address (including Custom Fields if any) will be available
\n{{ address_line1 }}<br>\n{% if address_line2 %}{{ address_line2 }}<br>{% endif -%}\n{{ city }}<br>\n{% if state %}{{ state }}<br>{% endif -%}\n{% if pincode %} PIN: {{ pincode }}<br>{% endif -%}\n{{ country }}<br>\n{% if phone %}Phone: {{ phone }}<br>{% endif -%}\n{% if fax %}Fax: {{ fax }}<br>{% endif -%}\n{% if email_id %}Email: {{ email_id }}<br>{% endif -%}\n",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "template",
- "fieldtype": "Code",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Template",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Address Template",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": "fa fa-map-marker",
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 0,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 0,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:46.125586",
- "module": "Contacts",
- "name": "Address Template",
- "naming_rule": null,
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [
- {
- "amend": 0,
- "cancel": 0,
- "create": 1,
- "delete": 1,
- "email": 0,
- "export": 1,
- "if_owner": 0,
- "import": 0,
- "match": null,
- "parent": "Address Template",
- "parentfield": "permissions",
- "parenttype": "DocType",
- "permlevel": 0,
- "print": 0,
- "read": 1,
- "report": 1,
- "role": "System Manager",
- "select": 0,
- "share": 1,
- "submit": 0,
- "write": 1
- }
- ],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 1,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 0,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 1,
- "allow_rename": 1,
- "app": null,
- "autoname": "Prompt",
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "Document",
- "documentation": null,
- "editable_grid": 0,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "subject",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Subject",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Email Template",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "use_html",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Use HTML",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Email Template",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval:doc.use_html",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "response_html",
- "fieldtype": "Code",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Response ",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Jinja",
- "parent": "Email Template",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval:!doc.use_html",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "response",
- "fieldtype": "Text Editor",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Response",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": "eval:!doc.use_html",
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Email Template",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "section_break_4",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Email Template",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "email_reply_help",
- "fieldtype": "HTML",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Email Reply Help",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Order Overdue\n\nTransaction {{ name }} has exceeded Due Date. Please take necessary action.\n\nDetails\n\n- Customer: {{ customer }}\n- Amount: {{ grand_total }}\n\n\nThe fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)
\n\nTemplates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
\n", - "parent": "Email Template", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - } - ], - "force_re_route_to_default_view": 0, - "grid_page_length": 0, - "has_web_view": 0, - "hide_toolbar": 0, - "icon": "fa fa-comment", - "image_field": null, - "in_create": 0, - "index_web_pages_for_search": 0, - "is_calendar_and_gantt": 0, - "is_published_field": null, - "is_submittable": 0, - "is_tree": 0, - "is_virtual": 0, - "issingle": 0, - "istable": 0, - "links": [], - "make_attachments_public": 0, - "max_attachments": 0, - "menu_index": null, - "migration_hash": "572c73571fd0c3a0c0d80998262c6672", - "modified": "2026-05-17 05:46:46.184741", - "module": "Email", - "name": "Email Template", - "naming_rule": "Set by user", - "nsm_parent_field": null, - "parent_node": null, - "permissions": [ - { - "amend": 0, - "cancel": 0, - "create": 0, - "delete": 0, - "email": 0, - "export": 0, - "if_owner": 0, - "import": 0, - "match": null, - "parent": "Email Template", - "parentfield": "permissions", - "parenttype": "DocType", - "permlevel": 0, - "print": 0, - "read": 1, - "report": 0, - "role": "Desk User", - "select": 0, - "share": 0, - "submit": 0, - "write": 0 - }, - { - "amend": 0, - "cancel": 0, - "create": 1, - "delete": 1, - "email": 1, - "export": 1, - "if_owner": 0, - "import": 1, - "match": null, - "parent": "Email Template", - "parentfield": "permissions", - "parenttype": "DocType", - "permlevel": 0, - "print": 0, - "read": 1, - "report": 1, - "role": "System Manager", - "select": 0, - "share": 1, - "submit": 0, - "write": 1 - } - ], - "print_outline": null, - "protect_attached_files": 0, - "queue_in_background": 0, - "quick_entry": 0, - "read_only": 0, - "recipient_account_field": null, - "restrict_to_domain": null, - "route": null, - "row_format": "Dynamic", - "rows_threshold_for_grid_search": 0, - "search_fields": null, - "sender_field": null, - "sender_name_field": null, - "show_name_in_global_search": 0, - "show_preview_popup": 0, - "show_title_field_in_link": 0, - "smallicon": null, - "sort_field": "modified", - "sort_order": "DESC", - "states": [], - "subject": null, - "subject_field": null, - "tag_fields": null, - "timeline_field": null, - "title_field": null, - "track_changes": 1, - "track_seen": 0, - "track_views": 0, - "translated_doctype": 0, - "website_search_field": null - }, - { - "_assign": null, - "_comments": null, - "_last_update": null, - "_liked_by": null, - "_user_tags": null, - "actions": [], - "allow_auto_repeat": 0, - "allow_copy": 1, - "allow_events_in_timeline": 0, - "allow_guest_to_view": 0, - "allow_import": 0, - "allow_rename": 0, - "app": null, - "autoname": null, - "beta": 0, - "color": null, - "colour": null, - "custom": 0, - "default_email_template": null, - "default_print_format": null, - "default_view": null, - "description": null, - "docstatus": 0, - "doctype": "DocType", - "document_type": null, - "documentation": null, - "editable_grid": 0, - "email_append_to": 0, - "engine": "InnoDB", - "fields": [ - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "company", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Company", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Company", - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "party_type", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Party Type", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "DocType", - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break_4", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval:doc.party_type", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "party", - "fieldtype": "Dynamic Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Party", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "party_type", - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval:doc.company && doc.party", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "receivable_payable_account", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Receivable / Payable Account", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Account", - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval:doc.party", - "description": "Only 'Payment Entries' made against this advance account are supported.", - "documentation_url": "https://docs.erpnext.com/docs/user/manual/en/advance-in-separate-party-account", - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "default_advance_account", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Default Advance Account", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": "doc.party_type", - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Account", - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 1, - "collapsible_depends_on": "eval: doc.invoices.length == 0", - "columns": 0, - "default": null, - "depends_on": "eval:doc.receivable_payable_account", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "col_break1", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Filters", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "from_invoice_date", - "fieldtype": "Date", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "From Invoice Date", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "from_payment_date", - "fieldtype": "Date", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "From Payment Date", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "minimum_invoice_amount", - "fieldtype": "Currency", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Minimum Invoice Amount", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "minimum_payment_amount", - "fieldtype": "Currency", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Minimum Payment Amount", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break_11", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "to_invoice_date", - "fieldtype": "Date", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "To Invoice Date", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "to_payment_date", - "fieldtype": "Date", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "To Payment Date", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "maximum_invoice_amount", - "fieldtype": "Currency", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Maximum Invoice Amount", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "maximum_payment_amount", - "fieldtype": "Currency", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Maximum Payment Amount", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break_13", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "50", - "depends_on": null, - "description": "System will fetch all the entries if limit value is zero.", - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "invoice_limit", - "fieldtype": "Int", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Invoice Limit", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "50", - "depends_on": null, - "description": "System will fetch all the entries if limit value is zero.", - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "payment_limit", - "fieldtype": "Int", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Payment Limit", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": "This filter will be applied to Journal Entry.", - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "bank_cash_account", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Bank / Cash Account", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Account", - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 1, - "collapsible_depends_on": "eval: doc.invoices.length == 0", - "columns": 0, - "default": null, - "depends_on": "eval:doc.receivable_payable_account", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "accounting_dimensions_section", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Accounting Dimensions Filter", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "cost_center", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Cost Center", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Cost Center", - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "dimension_col_break", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "project", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Project", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Project", - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval:(doc.payments).length || (doc.invoices).length", - "description": "If you need to reconcile particular transactions against each other, then please select accordingly. If not, all the transactions will be allocated in FIFO order.", - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "sec_break1", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Unreconciled Entries", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "invoice_name", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Filter on Invoice", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "invoices", - "fieldtype": "Table", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Invoices", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Payment Reconciliation Invoice", - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break_15", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "payment_name", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Filter on Payment", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "payments", - "fieldtype": "Table", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Payments", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Payment Reconciliation Payment", - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "allocation", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "sec_break2", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Allocated Entries", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "allocation", - "fieldtype": "Table", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Allocation", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Payment Reconciliation Allocation", - "parent": "Payment Reconciliation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - } - ], - "force_re_route_to_default_view": 0, - "grid_page_length": 0, - "has_web_view": 0, - "hide_toolbar": 1, - "icon": "icon-resize-horizontal", - "image_field": null, - "in_create": 0, - "index_web_pages_for_search": 0, - "is_calendar_and_gantt": 0, - "is_published_field": null, - "is_submittable": 0, - "is_tree": 0, - "is_virtual": 1, - "issingle": 1, - "istable": 0, - "links": [], - "make_attachments_public": 0, - "max_attachments": 0, - "menu_index": null, - "migration_hash": "572c73571fd0c3a0c0d80998262c6672", - "modified": "2026-05-17 05:46:46.270617", - "module": "Accounts", - "name": "Payment Reconciliation", - "naming_rule": null, - "nsm_parent_field": null, - "parent_node": null, - "permissions": [ - { - "amend": 0, - "cancel": 0, - "create": 1, - "delete": 1, - "email": 0, - "export": 0, - "if_owner": 0, - "import": 0, - "match": null, - "parent": "Payment Reconciliation", - "parentfield": "permissions", - "parenttype": "DocType", - "permlevel": 0, - "print": 0, - "read": 1, - "report": 0, - "role": "Accounts Manager", - "select": 0, - "share": 1, - "submit": 0, - "write": 1 - }, - { - "amend": 0, - "cancel": 0, - "create": 1, - "delete": 1, - "email": 0, - "export": 0, - "if_owner": 0, - "import": 0, - "match": null, - "parent": "Payment Reconciliation", - "parentfield": "permissions", - "parenttype": "DocType", - "permlevel": 0, - "print": 0, - "read": 1, - "report": 0, - "role": "Accounts User", - "select": 0, - "share": 1, - "submit": 0, - "write": 1 - } - ], - "print_outline": null, - "protect_attached_files": 0, - "queue_in_background": 0, - "quick_entry": 0, - "read_only": 0, - "recipient_account_field": null, - "restrict_to_domain": null, - "route": null, - "row_format": "Dynamic", - "rows_threshold_for_grid_search": 0, - "search_fields": null, - "sender_field": null, - "sender_name_field": null, - "show_name_in_global_search": 0, - "show_preview_popup": 0, - "show_title_field_in_link": 0, - "smallicon": null, - "sort_field": "modified", - "sort_order": "DESC", - "states": [], - "subject": null, - "subject_field": null, - "tag_fields": null, - "timeline_field": null, - "title_field": null, - "track_changes": 0, - "track_seen": 0, - "track_views": 0, - "translated_doctype": 0, - "website_search_field": null - }, - { - "_assign": null, - "_comments": null, - "_last_update": null, - "_liked_by": null, - "_user_tags": null, - "actions": [], - "allow_auto_repeat": 0, - "allow_copy": 0, - "allow_events_in_timeline": 0, - "allow_guest_to_view": 0, - "allow_import": 0, - "allow_rename": 0, - "app": null, - "autoname": null, - "beta": 0, - "color": null, - "colour": null, - "custom": 0, - "default_email_template": null, - "default_print_format": null, - "default_view": null, - "description": null, - "docstatus": 0, - "doctype": "DocType", - "document_type": null, - "documentation": null, - "editable_grid": 1, - "email_append_to": 0, - "engine": "InnoDB", - "fields": [ - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "reference_type", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Reference Type", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "DocType", - "parent": "Payment Reconciliation Payment", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 2, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "reference_name", - "fieldtype": "Dynamic Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Reference Name", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "reference_type", - "parent": "Payment Reconciliation Payment", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "posting_date", - "fieldtype": "Date", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Posting Date", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation Payment", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "is_advance", - "fieldtype": "Data", - "hidden": 1, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Is Advance", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation Payment", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "reference_row", - "fieldtype": "Data", - "hidden": 1, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Reference Row", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation Payment", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "col_break1", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation Payment", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 2, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "amount", - "fieldtype": "Currency", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Amount", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "currency", - "parent": "Payment Reconciliation Payment", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "difference_amount", - "fieldtype": "Currency", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Difference Amount", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "currency", - "parent": "Payment Reconciliation Payment", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "sec_break1", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation Payment", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "remarks", - "fieldtype": "Small Text", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Remarks", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation Payment", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "currency", - "fieldtype": "Link", - "hidden": 1, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Currency", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Currency", - "parent": "Payment Reconciliation Payment", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "exchange_rate", - "fieldtype": "Float", - "hidden": 1, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Exchange Rate", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation Payment", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "cost_center", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Cost Center", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Cost Center", - "parent": "Payment Reconciliation Payment", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - } - ], - "force_re_route_to_default_view": 0, - "grid_page_length": 0, - "has_web_view": 0, - "hide_toolbar": 0, - "icon": null, - "image_field": null, - "in_create": 0, - "index_web_pages_for_search": 0, - "is_calendar_and_gantt": 0, - "is_published_field": null, - "is_submittable": 0, - "is_tree": 0, - "is_virtual": 1, - "issingle": 0, - "istable": 1, - "links": [], - "make_attachments_public": 0, - "max_attachments": 0, - "menu_index": null, - "migration_hash": "572c73571fd0c3a0c0d80998262c6672", - "modified": "2026-05-17 05:46:46.334973", - "module": "Accounts", - "name": "Payment Reconciliation Payment", - "naming_rule": null, - "nsm_parent_field": null, - "parent_node": null, - "permissions": [], - "print_outline": null, - "protect_attached_files": 0, - "queue_in_background": 0, - "quick_entry": 1, - "read_only": 0, - "recipient_account_field": null, - "restrict_to_domain": null, - "route": null, - "row_format": "Dynamic", - "rows_threshold_for_grid_search": 0, - "search_fields": null, - "sender_field": null, - "sender_name_field": null, - "show_name_in_global_search": 0, - "show_preview_popup": 0, - "show_title_field_in_link": 0, - "smallicon": null, - "sort_field": "modified", - "sort_order": "DESC", - "states": [], - "subject": null, - "subject_field": null, - "tag_fields": null, - "timeline_field": null, - "title_field": null, - "track_changes": 0, - "track_seen": 0, - "track_views": 0, - "translated_doctype": 0, - "website_search_field": null - }, - { - "_assign": null, - "_comments": null, - "_last_update": null, - "_liked_by": null, - "_user_tags": null, - "actions": [], - "allow_auto_repeat": 0, - "allow_copy": 0, - "allow_events_in_timeline": 0, - "allow_guest_to_view": 0, - "allow_import": 0, - "allow_rename": 0, - "app": null, - "autoname": null, - "beta": 0, - "color": null, - "colour": null, - "custom": 0, - "default_email_template": null, - "default_print_format": null, - "default_view": null, - "description": null, - "docstatus": 0, - "doctype": "DocType", - "document_type": null, - "documentation": null, - "editable_grid": 1, - "email_append_to": 0, - "engine": "InnoDB", - "fields": [ - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "invoice_type", - "fieldtype": "Select", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Invoice Type", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Sales Invoice\nPurchase Invoice\nJournal Entry", - "parent": "Payment Reconciliation Invoice", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "invoice_number", - "fieldtype": "Dynamic Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Invoice Number", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "invoice_type", - "parent": "Payment Reconciliation Invoice", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "invoice_date", - "fieldtype": "Date", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Invoice Date", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation Invoice", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "col_break1", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation Invoice", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "amount", - "fieldtype": "Currency", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Amount", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "currency", - "parent": "Payment Reconciliation Invoice", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "outstanding_amount", - "fieldtype": "Currency", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Outstanding Amount", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "currency", - "parent": "Payment Reconciliation Invoice", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "currency", - "fieldtype": "Link", - "hidden": 1, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Currency", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Currency", - "parent": "Payment Reconciliation Invoice", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "exchange_rate", - "fieldtype": "Float", - "hidden": 1, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Exchange Rate", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Reconciliation Invoice", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - } - ], - "force_re_route_to_default_view": 0, - "grid_page_length": 0, - "has_web_view": 0, - "hide_toolbar": 0, - "icon": null, - "image_field": null, - "in_create": 0, - "index_web_pages_for_search": 0, - "is_calendar_and_gantt": 0, - "is_published_field": null, - "is_submittable": 0, - "is_tree": 0, - "is_virtual": 1, - "issingle": 0, - "istable": 1, - "links": [], - "make_attachments_public": 0, - "max_attachments": 0, - "menu_index": null, - "migration_hash": "572c73571fd0c3a0c0d80998262c6672", - "modified": "2026-05-17 05:46:46.394618", - "module": "Accounts", - "name": "Payment Reconciliation Invoice", - "naming_rule": null, - "nsm_parent_field": null, - "parent_node": null, - "permissions": [], - "print_outline": null, - "protect_attached_files": 0, - "queue_in_background": 0, - "quick_entry": 1, - "read_only": 0, - "recipient_account_field": null, - "restrict_to_domain": null, - "route": null, - "row_format": "Dynamic", - "rows_threshold_for_grid_search": 0, - "search_fields": null, - "sender_field": null, - "sender_name_field": null, - "show_name_in_global_search": 0, - "show_preview_popup": 0, - "show_title_field_in_link": 0, - "smallicon": null, - "sort_field": "modified", - "sort_order": "DESC", - "states": [], - "subject": null, - "subject_field": null, - "tag_fields": null, - "timeline_field": null, - "title_field": null, - "track_changes": 1, - "track_seen": 0, - "track_views": 0, - "translated_doctype": 0, - "website_search_field": null - }, - { - "_assign": null, - "_comments": null, - "_last_update": null, - "_liked_by": null, - "_user_tags": null, - "actions": [], - "allow_auto_repeat": 0, - "allow_copy": 0, - "allow_events_in_timeline": 0, - "allow_guest_to_view": 0, - "allow_import": 0, - "allow_rename": 0, - "app": null, - "autoname": "naming_series:", - "beta": 0, - "color": null, - "colour": null, - "custom": 0, - "default_email_template": null, - "default_print_format": null, - "default_view": null, - "description": null, - "docstatus": 0, - "doctype": "DocType", - "document_type": "Document", - "documentation": null, - "editable_grid": 0, - "email_append_to": 0, - "engine": "InnoDB", - "fields": [ - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "naming_series", - "fieldtype": "Select", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Series", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 1, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "MAT-LCV-.YYYY.-", - "parent": "Landed Cost Voucher", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 1, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 1, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "company", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 1, - "is_virtual": 0, - "label": "Company", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Company", - "parent": "Landed Cost Voucher", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 1, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break_2", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Landed Cost Voucher", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "Today", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "posting_date", - "fieldtype": "Date", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Posting Date", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Landed Cost Voucher", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "section_break_5", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 1, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Landed Cost Voucher", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "purchase_receipts", - "fieldtype": "Table", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Purchase Receipts", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Landed Cost Purchase Receipt", - "parent": "Landed Cost Voucher", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "purchase_receipt_items", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Purchase Receipt Items", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Landed Cost Voucher", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "get_items_from_purchase_receipts", - "fieldtype": "Button", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Get Items From Purchase Receipts", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Landed Cost Voucher", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "items", - "fieldtype": "Table", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Purchase Receipt Items", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 1, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Landed Cost Item", - "parent": "Landed Cost Voucher", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "sec_break1", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Applicable Charges", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Landed Cost Voucher", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "taxes", - "fieldtype": "Table", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Taxes and Charges", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Landed Cost Taxes and Charges", - "parent": "Landed Cost Voucher", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "section_break_9", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Landed Cost Voucher", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "total_taxes_and_charges", - "fieldtype": "Currency", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Total Taxes and Charges (Company Currency)", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Company:company:default_currency", - "parent": "Landed Cost Voucher", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "col_break1", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Landed Cost Voucher", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "distribute_charges_based_on", - "fieldtype": "Select", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Distribute Charges Based On", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Qty\nAmount\nDistribute Manually", - "parent": "Landed Cost Voucher", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "amended_from", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Amended From", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 1, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Landed Cost Voucher", - "parent": "Landed Cost Voucher", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 1, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "sec_break2", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Landed Cost Voucher", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "landed_cost_help", - "fieldtype": "HTML", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Landed Cost Help", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Landed Cost Voucher", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "amended_from", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Amended From", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 1, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Landed Cost Voucher", - "parent": "Landed Cost Voucher", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 1, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 1, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - } - ], - "force_re_route_to_default_view": 0, - "grid_page_length": 0, - "has_web_view": 0, - "hide_toolbar": 0, - "icon": "icon-usd", - "image_field": null, - "in_create": 0, - "index_web_pages_for_search": 1, - "is_calendar_and_gantt": 0, - "is_published_field": null, - "is_submittable": 1, - "is_tree": 0, - "is_virtual": 0, - "issingle": 0, - "istable": 0, - "links": [], - "make_attachments_public": 0, - "max_attachments": 0, - "menu_index": null, - "migration_hash": "572c73571fd0c3a0c0d80998262c6672", - "modified": "2026-05-17 05:46:46.495198", - "module": "Stock", - "name": "Landed Cost Voucher", - "naming_rule": null, - "nsm_parent_field": null, - "parent_node": null, - "permissions": [ - { - "amend": 1, - "cancel": 1, - "create": 1, - "delete": 1, - "email": 0, - "export": 1, - "if_owner": 0, - "import": 0, - "match": null, - "parent": "Landed Cost Voucher", - "parentfield": "permissions", - "parenttype": "DocType", - "permlevel": 0, - "print": 0, - "read": 1, - "report": 1, - "role": "Stock Manager", - "select": 0, - "share": 1, - "submit": 1, - "write": 1 - } - ], - "print_outline": null, - "protect_attached_files": 0, - "queue_in_background": 0, - "quick_entry": 0, - "read_only": 0, - "recipient_account_field": null, - "restrict_to_domain": null, - "route": null, - "row_format": "Dynamic", - "rows_threshold_for_grid_search": 0, - "search_fields": null, - "sender_field": null, - "sender_name_field": null, - "show_name_in_global_search": 1, - "show_preview_popup": 0, - "show_title_field_in_link": 0, - "smallicon": null, - "sort_field": "modified", - "sort_order": "DESC", - "states": [], - "subject": null, - "subject_field": null, - "tag_fields": null, - "timeline_field": null, - "title_field": null, - "track_changes": 0, - "track_seen": 0, - "track_views": 0, - "translated_doctype": 0, - "website_search_field": null - }, - { - "_assign": null, - "_comments": null, - "_last_update": null, - "_liked_by": null, - "_user_tags": null, - "actions": [], - "allow_auto_repeat": 0, - "allow_copy": 0, - "allow_events_in_timeline": 0, - "allow_guest_to_view": 0, - "allow_import": 0, - "allow_rename": 0, - "app": null, - "autoname": null, - "beta": 0, - "color": null, - "colour": null, - "custom": 0, - "default_email_template": null, - "default_print_format": null, - "default_view": null, - "description": null, - "docstatus": 0, - "doctype": "DocType", - "document_type": null, - "documentation": null, - "editable_grid": 1, - "email_append_to": 0, - "engine": "InnoDB", - "fields": [ - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval:cint(erpnext.is_perpetual_inventory_enabled(parent.company))", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "expense_account", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Expense Account", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": "eval:cint(erpnext.is_perpetual_inventory_enabled(parent.company))", - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Account", - "parent": "Landed Cost Taxes and Charges", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "account_currency", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Account Currency", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Currency", - "parent": "Landed Cost Taxes and Charges", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "exchange_rate", - "fieldtype": "Float", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Exchange Rate", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Landed Cost Taxes and Charges", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": "9", - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "description", - "fieldtype": "Small Text", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Description", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Landed Cost Taxes and Charges", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "col_break3", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Landed Cost Taxes and Charges", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": "50%" - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "amount", - "fieldtype": "Currency", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Amount", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "account_currency", - "parent": "Landed Cost Taxes and Charges", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "base_amount", - "fieldtype": "Currency", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Amount (Company Currency)", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Company:company:default_currency", - "parent": "Landed Cost Taxes and Charges", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "has_corrective_cost", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Has Corrective Cost", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Landed Cost Taxes and Charges", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - } - ], - "force_re_route_to_default_view": 0, - "grid_page_length": 0, - "has_web_view": 0, - "hide_toolbar": 0, - "icon": null, - "image_field": null, - "in_create": 0, - "index_web_pages_for_search": 1, - "is_calendar_and_gantt": 0, - "is_published_field": null, - "is_submittable": 0, - "is_tree": 0, - "is_virtual": 0, - "issingle": 0, - "istable": 1, - "links": [], - "make_attachments_public": 0, - "max_attachments": 0, - "menu_index": null, - "migration_hash": "572c73571fd0c3a0c0d80998262c6672", - "modified": "2026-05-17 05:46:46.564498", - "module": "Stock", - "name": "Landed Cost Taxes and Charges", - "naming_rule": null, - "nsm_parent_field": null, - "parent_node": null, - "permissions": [], - "print_outline": null, - "protect_attached_files": 0, - "queue_in_background": 0, - "quick_entry": 0, - "read_only": 0, - "recipient_account_field": null, - "restrict_to_domain": null, - "route": null, - "row_format": "Dynamic", - "rows_threshold_for_grid_search": 0, - "search_fields": null, - "sender_field": null, - "sender_name_field": null, - "show_name_in_global_search": 0, - "show_preview_popup": 0, - "show_title_field_in_link": 0, - "smallicon": null, - "sort_field": "modified", - "sort_order": "DESC", - "states": [], - "subject": null, - "subject_field": null, - "tag_fields": null, - "timeline_field": null, - "title_field": null, - "track_changes": 0, - "track_seen": 0, - "track_views": 0, - "translated_doctype": 0, - "website_search_field": null - }, - { - "_assign": null, - "_comments": null, - "_last_update": null, - "_liked_by": null, - "_user_tags": null, - "actions": [], - "allow_auto_repeat": 0, - "allow_copy": 0, - "allow_events_in_timeline": 0, - "allow_guest_to_view": 0, - "allow_import": 0, - "allow_rename": 1, - "app": null, - "autoname": "Prompt", - "beta": 0, - "color": null, - "colour": null, - "custom": 0, - "default_email_template": null, - "default_print_format": null, - "default_view": null, - "description": null, - "docstatus": 0, - "doctype": "DocType", - "document_type": "System", - "documentation": null, - "editable_grid": 0, - "email_append_to": 0, - "engine": "InnoDB", - "fields": [ - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "1", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "enabled", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Enabled", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Notification", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "is_standard", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Is Standard", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 1, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Notification", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "is_standard", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "module", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 1, - "is_virtual": 0, - "label": "Module", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Module Def", - "parent": "Notification", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break_2", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Notification", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "Email", - "depends_on": "eval: !doc.disable_channel", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "channel", - "fieldtype": "Select", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Channel", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Email\nSlack\nSystem Notification\nSMS", - "parent": "Notification", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 1, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval:doc.channel=='Slack'", - "description": "To use Slack Channel, add a Slack Webhook URL.", - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "slack_webhook_url", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Slack Channel", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": "eval:doc.channel=='Slack'", - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Slack Webhook URL", - "parent": "Notification", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "filters", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Filters", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Notification", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval: in_list(['Email', 'Slack', 'System Notification'], doc.channel)", - "description": "To add dynamic subject, use jinja tags like\n\n{{ doc.name }} DeliveredCondition Examples:
\ndoc.status==\"Open\"\n", - "parent": "Notification", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 1, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "property_section", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Set Property After Alert", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Notification", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "set_property_after_alert", - "fieldtype": "Select", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Set Property After Alert", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Notification", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "property_value", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Value To Be Set", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Notification", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval:doc.channel !=\"Slack\"", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break_5", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Recipients", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Notification", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": "eval:doc.channel == 'Email'", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "send_to_all_assignees", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Send To All Assignees", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Notification", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "recipients", - "fieldtype": "Table", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Recipients", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": "eval:doc.channel!=='Slack' && !doc.send_to_all_assignees", - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Notification Recipient", - "parent": "Notification", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "message_sb", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Message", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Notification", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "Markdown", - "depends_on": "is_standard", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "message_type", - "fieldtype": "Select", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Message Type", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Markdown\nHTML\nPlain Text", - "parent": "Notification", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "Add your message here", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "message", - "fieldtype": "Code", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 1, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Message", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Jinja", - "parent": "Notification", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "message_examples", - "fieldtype": "HTML", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Message Examples", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "
doc.due_date==nowdate()
doc.total > 40000\n
<h3>Order Overdue</h3>\n\n<p>Transaction {{ doc.name }} has exceeded Due Date. Please take necessary action.</p>\n\n<!-- show last comment -->\n{% if comments %}\nLast comment: {{ comments[-1].comment }} by {{ comments[-1].by }}\n{% endif %}\n\n<h4>Details</h4>\n\n<ul>\n<li>Customer: {{ doc.customer }}\n<li>Amount: {{ doc.grand_total }}\n</ul>\n",
- "parent": "Notification",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "view_properties",
- "fieldtype": "Button",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "View Properties (via Customize Form)",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Notification",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 1,
- "collapsible_depends_on": "attach_print",
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_25",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Attachment Settings",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Notification",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "attach_print",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Attach Print",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Notification",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "attach_print",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "print_format",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Print Format",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Print Format",
- "parent": "Notification",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_llcs",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Notification",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "attach_files",
- "fieldtype": "Select",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Attach Files",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "\nFrom Field\nAll",
- "parent": "Notification",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval:doc.attach_files === \"From Field\"",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "from_attach_field",
- "fieldtype": "Select",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "From Attach Field",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": "eval:doc.attach_files === \"From Field\"",
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Notification",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": "fa fa-envelope",
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 1,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 0,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:46.663626",
- "module": "Email",
- "name": "Notification",
- "naming_rule": "Set by user",
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [
- {
- "amend": 0,
- "cancel": 0,
- "create": 1,
- "delete": 1,
- "email": 0,
- "export": 1,
- "if_owner": 0,
- "import": 0,
- "match": null,
- "parent": "Notification",
- "parentfield": "permissions",
- "parenttype": "DocType",
- "permlevel": 0,
- "print": 0,
- "read": 1,
- "report": 1,
- "role": "System Manager",
- "select": 0,
- "share": 1,
- "submit": 0,
- "write": 1
- }
- ],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 0,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": "subject",
- "track_changes": 1,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 0,
- "allow_rename": 0,
- "app": null,
- "autoname": null,
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": null,
- "documentation": null,
- "editable_grid": 1,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "receiver_by_document_field",
- "fieldtype": "Select",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Receiver By Document Field",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Notification Recipient",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "receiver_by_role",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Receiver By Role",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Role",
- "parent": "Notification Recipient",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval:parent.channel=='Email'",
- "description": "Optional: Always send to these ids. Each Email Address on a new row",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "cc",
- "fieldtype": "Code",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "CC",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Notification Recipient",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval:parent.channel=='Email'",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "bcc",
- "fieldtype": "Code",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "BCC",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Notification Recipient",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": "Expression, Optional",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "condition",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Condition",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Notification Recipient",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": null,
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 1,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 1,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:46.720341",
- "module": "Email",
- "name": "Notification Recipient",
- "naming_rule": null,
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 1,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 0,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 0,
- "allow_rename": 0,
- "app": null,
- "autoname": null,
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "System",
- "documentation": null,
- "editable_grid": 0,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "pdf_settings",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "PDF Settings",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "1",
- "depends_on": null,
- "description": "Send Email Print Attachments as PDF (Recommended)",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "send_print_as_pdf",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Send Print as PDF",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "1",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "repeat_header_footer",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Repeat Header and Footer",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_4",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "A4",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "pdf_page_size",
- "fieldtype": "Select",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "PDF Page Size",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "A0\nA1\nA2\nA3\nA4\nA5\nA6\nA7\nA8\nA9\nB0\nB1\nB2\nB3\nB4\nB5\nB6\nB7\nB8\nB9\nB10\nC5E\nComm10E\nDLE\nExecutive\nFolio\nLedger\nLegal\nLetter\nTabloid\nCustom",
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval:doc.pdf_page_size == \"Custom\"",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "pdf_page_height",
- "fieldtype": "Float",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "PDF Page Height (in mm)",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval:doc.pdf_page_size == \"Custom\"",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "pdf_page_width",
- "fieldtype": "Float",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "PDF Page Width (in mm)",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "view_link_in_email",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Page Settings",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "1",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "with_letterhead",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Print with letterhead",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "1",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "allow_print_for_draft",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Allow Print for Draft",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "1",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "add_draft_heading",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Always add \"Draft\" Heading for printing draft documents",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_10",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "allow_page_break_inside_tables",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Allow page break inside tables",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "allow_print_for_cancelled",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Allow Print for Cancelled",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "server_printer",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Print Server",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": "enable_print_server",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "enable_print_server",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Enable Print Server",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": "enable_print_server",
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "raw_printing_section",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Raw Printing",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "enable_raw_printing",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Enable Raw Printing",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "print_style_section",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Print Style",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "Redesign",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "print_style",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Print Style",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Print Style",
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "print_style_preview",
- "fieldtype": "HTML",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Print Style Preview",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "section_break_8",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Fonts",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "Default",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "font",
- "fieldtype": "Select",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Font",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Default\nHelvetica Neue\nArial\nHelvetica\nInter\nVerdana\nMonospace",
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": "In points. Default is 9.",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "font_size",
- "fieldtype": "Float",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Font Size",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Print Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": "fa fa-cog",
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 1,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 1,
- "istable": 0,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:46.792267",
- "module": "Printing",
- "name": "Print Settings",
- "naming_rule": null,
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [
- {
- "amend": 0,
- "cancel": 0,
- "create": 1,
- "delete": 0,
- "email": 0,
- "export": 0,
- "if_owner": 0,
- "import": 0,
- "match": null,
- "parent": "Print Settings",
- "parentfield": "permissions",
- "parenttype": "DocType",
- "permlevel": 0,
- "print": 0,
- "read": 1,
- "report": 0,
- "role": "System Manager",
- "select": 0,
- "share": 1,
- "submit": 0,
- "write": 1
- }
- ],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 1,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 1,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 0,
- "allow_rename": 0,
- "app": null,
- "autoname": "field:language_code",
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "Setup",
- "documentation": null,
- "editable_grid": 0,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "1",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "enabled",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Enabled",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Language",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "language_code",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Language Code",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Language",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 1,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "language_name",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Language Name",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Language",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 1,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "flag",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Flag",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Language",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "based_on",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Based On",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Language",
- "parent": "Language",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": "fa fa-globe",
- "image_field": null,
- "in_create": 1,
- "index_web_pages_for_search": 0,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 0,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:46.866614",
- "module": "Core",
- "name": "Language",
- "naming_rule": "By fieldname",
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [
- {
- "amend": 0,
- "cancel": 0,
- "create": 1,
- "delete": 1,
- "email": 0,
- "export": 0,
- "if_owner": 0,
- "import": 0,
- "match": null,
- "parent": "Language",
- "parentfield": "permissions",
- "parenttype": "DocType",
- "permlevel": 0,
- "print": 0,
- "read": 1,
- "report": 0,
- "role": "System Manager",
- "select": 0,
- "share": 0,
- "submit": 0,
- "write": 1
- },
- {
- "amend": 0,
- "cancel": 0,
- "create": 0,
- "delete": 0,
- "email": 0,
- "export": 0,
- "if_owner": 0,
- "import": 0,
- "match": null,
- "parent": "Language",
- "parentfield": "permissions",
- "parenttype": "DocType",
- "permlevel": 0,
- "print": 0,
- "read": 1,
- "report": 0,
- "role": "All",
- "select": 0,
- "share": 0,
- "submit": 0,
- "write": 0
- }
- ],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 0,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": "language_name",
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 1,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": "language_name",
- "track_changes": 1,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 0,
- "allow_rename": 0,
- "app": null,
- "autoname": null,
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": null,
- "documentation": null,
- "editable_grid": 1,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "company",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 1,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Company",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Company",
- "parent": "Party Account",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "account",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Default Account",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Account",
- "parent": "Party Account",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "advance_account",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Advance Account",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Account",
- "parent": "Party Account",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": null,
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 1,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 1,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:46.924536",
- "module": "Accounts",
- "name": "Party Account",
- "naming_rule": null,
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 1,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 0,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 0,
- "allow_rename": 0,
- "app": null,
- "autoname": null,
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "Document",
- "documentation": null,
- "editable_grid": 0,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "form_tab",
- "fieldtype": "Tab Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Form",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "title",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Title",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 1,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "route",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Route",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 1,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "published",
- "fieldtype": "Check",
- "hidden": 1,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Published",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_vdhm",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "doc_type",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 1,
- "is_virtual": 0,
- "label": "Select DocType",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "DocType",
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "module",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Module",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Module Def",
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "is_standard",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Is Standard",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 1,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "section_break_1",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "introduction_text",
- "fieldtype": "Text Editor",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 1,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Introduction",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "web_form_fields",
- "fieldtype": "Table",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Web Form Fields",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Web Form Field",
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "settings_tab",
- "fieldtype": "Tab Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Settings",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "access_control_section",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Access Control",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": "If enabled, all responses on the web form will be submitted anonymously",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "anonymous",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Anonymous responses",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": "eval:!doc.anonymous",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "login_required",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Login required",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_2",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "apply_document_permissions",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Apply Document Permissions",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": "login_required",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "allow_edit",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Allow Editing After Submit",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": "login_required",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "allow_multiple",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Allow Multiple Responses",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": "eval: doc.allow_multiple && doc.login_required",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "allow_delete",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Allow Delete",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "form_settings_section",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Form Settings",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": "Allow saving if mandatory fields are not filled",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "allow_incomplete",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Allow Incomplete Forms",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": "login_required",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "allow_comments",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Allow Comments",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "allow_print",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Allow Print",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "allow_print",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "print_format",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Print Format",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Print Format",
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": "Set size in MB",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "max_attachment_size",
- "fieldtype": "Int",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Max attachment size",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": "login_required",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "show_attachments",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Show Attachments",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_hhec",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin.",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "allowed_embedding_domains",
- "fieldtype": "Small Text",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Allowed embedding domains",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "condition_section",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Web Form",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "condition_description",
- "fieldtype": "HTML",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Condition description",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Multiple webforms can be created for a single doctype. Add filters specific to this webform to display correct record after submission.
For Example:
\nIf you create a separate webform every year to capture feedback from employees add a \n field named year in doctype and add a filter year = 2023
\n", - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "condition_json", - "fieldtype": "JSON", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Condition JSON", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 1, - "collapsible_depends_on": "show_list", - "columns": 0, - "default": null, - "depends_on": "eval:!doc.anonymous", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "section_break_3", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "List Settings", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "list_setting_message", - "fieldtype": "HTML", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "List setting message", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": "login_required", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "show_list", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Show List", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval: doc.login_required && doc.show_list", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "list_title", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Title", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval: doc.login_required && doc.show_list", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "list_columns", - "fieldtype": "Table", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "List Columns", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Web Form List Column", - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 1, - "collapsible_depends_on": "show_sidebar", - "columns": 0, - "default": null, - "depends_on": "eval:!doc.anonymous", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "section_break_4", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Sidebar Settings", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "show_sidebar", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Show Sidebar", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "website_sidebar", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Website Sidebar", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Website Sidebar", - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "customization_tab", - "fieldtype": "Tab Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Customization", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "Save", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "button_label", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Submit button label", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "banner_image", - "fieldtype": "Attach Image", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Banner Image", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break_3", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]", - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "breadcrumbs", - "fieldtype": "Code", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Breadcrumbs", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": "140px", - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 1, - "collapsible_depends_on": "eval: doc.success_title || doc.success_message || doc.success_url", - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "section_break_5", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "After Submission", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "success_title", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Success title", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": "Go to this URL after completing the form", - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "success_url", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Success URL", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break_4", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": "Message to be displayed on successful completion", - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "success_message", - "fieldtype": "Text", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Success message", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 1, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "meta_section", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Meta", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "meta_title", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Meta title", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "meta_description", - "fieldtype": "Small Text", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Meta description", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break_khxs", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "meta_image", - "fieldtype": "Attach Image", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Meta image", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 1, - "collapsible_depends_on": "eval: doc.client_script || doc.custom_css", - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "section_break_6", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Scripting / Style", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": "For help see Client Script API and Examples", - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "client_script", - "fieldtype": "Code", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Client script", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Javascript", - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "custom_css", - "fieldtype": "Code", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Custom CSS", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "CSS", - "parent": "Web Form", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - } - ], - "force_re_route_to_default_view": 0, - "grid_page_length": 0, - "has_web_view": 1, - "hide_toolbar": 0, - "icon": "icon-edit", - "image_field": null, - "in_create": 0, - "index_web_pages_for_search": 0, - "is_calendar_and_gantt": 0, - "is_published_field": "published", - "is_submittable": 0, - "is_tree": 0, - "is_virtual": 0, - "issingle": 0, - "istable": 0, - "links": [], - "make_attachments_public": 0, - "max_attachments": 0, - "menu_index": null, - "migration_hash": "572c73571fd0c3a0c0d80998262c6672", - "modified": "2026-05-17 05:46:47.059326", - "module": "Website", - "name": "Web Form", - "naming_rule": null, - "nsm_parent_field": null, - "parent_node": null, - "permissions": [ - { - "amend": 0, - "cancel": 0, - "create": 1, - "delete": 1, - "email": 0, - "export": 0, - "if_owner": 0, - "import": 0, - "match": null, - "parent": "Web Form", - "parentfield": "permissions", - "parenttype": "DocType", - "permlevel": 0, - "print": 0, - "read": 1, - "report": 1, - "role": "Website Manager", - "select": 0, - "share": 1, - "submit": 0, - "write": 1 - } - ], - "print_outline": null, - "protect_attached_files": 0, - "queue_in_background": 0, - "quick_entry": 0, - "read_only": 0, - "recipient_account_field": null, - "restrict_to_domain": null, - "route": null, - "row_format": "Dynamic", - "rows_threshold_for_grid_search": 0, - "search_fields": null, - "sender_field": null, - "sender_name_field": null, - "show_name_in_global_search": 0, - "show_preview_popup": 0, - "show_title_field_in_link": 0, - "smallicon": null, - "sort_field": "modified", - "sort_order": "DESC", - "states": [], - "subject": null, - "subject_field": null, - "tag_fields": null, - "timeline_field": null, - "title_field": "title", - "track_changes": 1, - "track_seen": 0, - "track_views": 0, - "translated_doctype": 0, - "website_search_field": null - }, - { - "_assign": null, - "_comments": null, - "_last_update": null, - "_liked_by": null, - "_user_tags": null, - "actions": [], - "allow_auto_repeat": 0, - "allow_copy": 0, - "allow_events_in_timeline": 0, - "allow_guest_to_view": 0, - "allow_import": 0, - "allow_rename": 0, - "app": null, - "autoname": null, - "beta": 0, - "color": null, - "colour": null, - "custom": 0, - "default_email_template": null, - "default_print_format": null, - "default_view": null, - "description": null, - "docstatus": 0, - "doctype": "DocType", - "document_type": null, - "documentation": null, - "editable_grid": 1, - "email_append_to": 0, - "engine": "InnoDB", - "fields": [ - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "fieldname", - "fieldtype": "Select", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Field", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form Field", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "fieldtype", - "fieldtype": "Select", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Fieldtype", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Attach\nAttach Image\nCheck\nCurrency\nColor\nData\nDate\nDatetime\nDuration\nFloat\nHTML\nInt\nLink\nPassword\nPhone\nRating\nSelect\nSignature\nSmall Text\nText\nText Editor\nTable\nTime\nSection Break\nColumn Break\nPage Break", - "parent": "Web Form Field", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "label", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Custom Label", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form Field", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": "eval:doc.fieldtype === 'Link' && parent.login_required", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "allow_read_on_all_link_options", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Allow Read On All Link Options", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form Field", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "reqd", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Mandatory", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form Field", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "read_only", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Read Only", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form Field", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "show_in_filter", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Show in filter", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form Field", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "hidden", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Hidden", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form Field", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break_4", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form Field", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "options", - "fieldtype": "Text", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Options", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form Field", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "max_length", - "fieldtype": "Int", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Max Length", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form Field", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval:doc.fieldtype=='Int'", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "max_value", - "fieldtype": "Int", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Max Value", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form Field", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval:in_list([\"Float\", \"Currency\", \"Percent\"], doc.fieldtype)", - "description": "Set non-standard precision for a Float or Currency field", - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "precision", - "fieldtype": "Select", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Precision", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "\n0\n1\n2\n3\n4\n5\n6\n7\n8\n9", - "parent": "Web Form Field", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "property_depends_on_section", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Property Depends On", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form Field", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "depends_on", - "fieldtype": "Code", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Display Depends On", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form Field", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "mandatory_depends_on", - "fieldtype": "Code", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Mandatory Depends On", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "JS", - "parent": "Web Form Field", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break_16", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form Field", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "read_only_depends_on", - "fieldtype": "Code", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Read Only Depends On", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "JS", - "parent": "Web Form Field", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "section_break_6", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form Field", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "description", - "fieldtype": "Text", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Description", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form Field", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break_8", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form Field", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "default", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Default", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Web Form Field", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - } - ], - "force_re_route_to_default_view": 0, - "grid_page_length": 0, - "has_web_view": 0, - "hide_toolbar": 0, - "icon": null, - "image_field": null, - "in_create": 0, - "index_web_pages_for_search": 0, - "is_calendar_and_gantt": 0, - "is_published_field": null, - "is_submittable": 0, - "is_tree": 0, - "is_virtual": 0, - "issingle": 0, - "istable": 1, - "links": [], - "make_attachments_public": 0, - "max_attachments": 0, - "menu_index": null, - "migration_hash": "572c73571fd0c3a0c0d80998262c6672", - "modified": "2026-05-17 05:46:47.135029", - "module": "Website", - "name": "Web Form Field", - "naming_rule": null, - "nsm_parent_field": null, - "parent_node": null, - "permissions": [], - "print_outline": null, - "protect_attached_files": 0, - "queue_in_background": 0, - "quick_entry": 0, - "read_only": 0, - "recipient_account_field": null, - "restrict_to_domain": null, - "route": null, - "row_format": "Dynamic", - "rows_threshold_for_grid_search": 0, - "search_fields": null, - "sender_field": null, - "sender_name_field": null, - "show_name_in_global_search": 0, - "show_preview_popup": 0, - "show_title_field_in_link": 0, - "smallicon": null, - "sort_field": "modified", - "sort_order": "DESC", - "states": [], - "subject": null, - "subject_field": null, - "tag_fields": null, - "timeline_field": null, - "title_field": null, - "track_changes": 0, - "track_seen": 0, - "track_views": 0, - "translated_doctype": 0, - "website_search_field": null - }, - { - "_assign": null, - "_comments": null, - "_last_update": null, - "_liked_by": null, - "_user_tags": null, - "actions": [], - "allow_auto_repeat": 0, - "allow_copy": 0, - "allow_events_in_timeline": 0, - "allow_guest_to_view": 0, - "allow_import": 0, - "allow_rename": 1, - "app": null, - "autoname": "field:email_account_name", - "beta": 0, - "color": null, - "colour": null, - "custom": 0, - "default_email_template": null, - "default_print_format": null, - "default_view": null, - "description": null, - "docstatus": 0, - "doctype": "DocType", - "document_type": "Setup", - "documentation": null, - "editable_grid": 0, - "email_append_to": 0, - "engine": "InnoDB", - "fields": [ - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "account_section", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Account", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "email_id", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 1, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Email Address", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Email", - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 1, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": "e.g. \"Support\", \"Sales\", \"Jerry Yang\"", - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "email_account_name", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Email Account Name", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 1, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break_3", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval:!doc.service", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "domain", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 1, - "is_virtual": 0, - "label": "Domain", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Email Domain", - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval:!doc.domain", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "service", - "fieldtype": "Select", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Service", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "\nGMail\nSendgrid\nSparkPost\nYahoo Mail\nOutlook.com\nYandex.Mail", - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "authentication_column", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Authentication", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "Basic", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "auth_method", - "fieldtype": "Select", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Method", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Basic\nOAuth", - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": "eval: doc.auth_method === \"OAuth\"", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "backend_app_flow", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Authenticate as Service Principal", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval: doc.auth_method === \"OAuth\" && doc.connected_app && doc.connected_user && !doc.backend_app_flow", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "authorize_api_access", - "fieldtype": "Button", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Authorize API Access", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval: doc.auth_method === \"Basic\"", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "password", - "fieldtype": "Password", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Password", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": "eval: doc.auth_method === \"Basic\"", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "awaiting_password", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Awaiting password", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": "eval: doc.auth_method === \"Basic\"", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "ascii_encode_password", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Use ASCII encoding for password", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break_10", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval: doc.auth_method === \"OAuth\"", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "connected_app", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Connected App", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": "eval: doc.auth_method === \"OAuth\"", - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Connected App", - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval: doc.auth_method === \"OAuth\" && !doc.backend_app_flow", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "connected_user", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Connected User", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": "eval: doc.auth_method === \"OAuth\" && !doc.backend_app_flow", - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "User", - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": "eval: !doc.backend_app_flow", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "login_id_is_different", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Use different Email ID", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "login_id_is_different", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "login_id", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Alternative Email ID", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "mailbox_settings", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Incoming (POP/IMAP) Settings", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "enable_incoming", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Enable Incoming", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": "enable_incoming", - "description": "e.g. replies@yourcomany.com. All replies will come to this inbox.", - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "default_incoming", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Default Incoming", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": "eval: !doc.domain && doc.enable_incoming", - "description": null, - "documentation_url": null, - "fetch_from": "domain.use_imap", - "fetch_if_empty": 0, - "fieldname": "use_imap", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Use IMAP", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": "eval:!doc.domain && doc.enable_incoming", - "description": null, - "documentation_url": null, - "fetch_from": "domain.use_ssl", - "fetch_if_empty": 0, - "fieldname": "use_ssl", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Use SSL", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": "eval:!doc.domain && doc.enable_incoming && doc.use_imap && !doc.use_ssl", - "description": null, - "documentation_url": null, - "fetch_from": "domain.use_starttls", - "fetch_if_empty": 0, - "fieldname": "use_starttls", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Use STARTTLS", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval:!doc.domain && doc.enable_incoming", - "description": "e.g. pop.gmail.com / imap.gmail.com", - "documentation_url": null, - "fetch_from": "domain.email_server", - "fetch_if_empty": 0, - "fieldname": "email_server", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Incoming Server", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval:!doc.domain && doc.enable_incoming", - "description": "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)", - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "incoming_port", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Port", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break_18", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval:!doc.domain && doc.enable_incoming", - "description": "Ignore attachments over this size", - "documentation_url": null, - "fetch_from": "domain.attachment_limit", - "fetch_if_empty": 0, - "fieldname": "attachment_limit", - "fieldtype": "Int", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Attachment Limit (MB)", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "UNSEEN", - "depends_on": "eval: doc.enable_incoming && doc.use_imap", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "email_sync_option", - "fieldtype": "Select", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Email Sync Option", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "ALL\nUNSEEN", - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "250", - "depends_on": "eval: doc.enable_incoming && doc.use_imap", - "description": "Total number of emails to sync in initial sync process ", - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "initial_sync_count", - "fieldtype": "Select", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Initial Sync Count", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "100\n250\n500", - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "section_break_25", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "IMAP Details", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval: doc.use_imap && doc.enable_incoming", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "imap_folder", - "fieldtype": "Table", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "IMAP Folder", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "IMAP Folder", - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "section_break_12", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Document Linking", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": "eval:!doc.domain && doc.enable_outgoing && doc.enable_incoming && doc.use_imap", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "append_emails_to_sent_folder", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Append Emails to Sent Folder", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval:!doc.domain && doc.enable_outgoing && doc.enable_incoming && doc.use_imap && doc.append_emails_to_sent_folder", - "description": null, - "documentation_url": null, - "fetch_from": "domain.sent_folder_name", - "fetch_if_empty": 0, - "fieldname": "sent_folder_name", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Sent Folder Name", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval: doc.enable_incoming && !doc.use_imap", - "description": "Append as communication against this DocType (must have fields: \"Sender\" and \"Subject\"). These fields can be defined in the email settings section of the appended doctype.", - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "append_to", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 1, - "is_virtual": 0, - "label": "Append To", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "DocType", - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "1", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "create_contact", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Create Contacts from Incoming Emails", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": null, - "description": "For more information, click here.", - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "enable_automatic_linking", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Enable Automatic Linking in Documents", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "enable_incoming", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "section_break_13", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "notify_if_unreplied", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Notify if unreplied", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "30", - "depends_on": "notify_if_unreplied", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "unreplied_for_mins", - "fieldtype": "Int", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Notify if unreplied for (in mins)", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "notify_if_unreplied", - "description": "Email Addresses", - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "send_notification_to", - "fieldtype": "Small Text", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Send Notification to", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "outgoing_mail_settings", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Outgoing (SMTP) Settings", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": null, - "description": "SMTP Settings for outgoing emails", - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "enable_outgoing", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Enable Outgoing", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": "eval:!doc.domain && doc.enable_outgoing", - "description": null, - "documentation_url": null, - "fetch_from": "domain.use_tls", - "fetch_if_empty": 0, - "fieldname": "use_tls", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Use TLS", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": "eval:!doc.domain && doc.enable_outgoing", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "use_ssl_for_outgoing", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Use SSL", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval:!doc.domain && doc.enable_outgoing", - "description": "e.g. smtp.gmail.com", - "documentation_url": null, - "fetch_from": "domain.smtp_server", - "fetch_if_empty": 0, - "fieldname": "smtp_server", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Outgoing Server", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval:!doc.domain && doc.enable_outgoing", - "description": "If non standard port (e.g. 587). If on Google Cloud, try port 2525.", - "documentation_url": null, - "fetch_from": "domain.smtp_port", - "fetch_if_empty": 0, - "fieldname": "smtp_port", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Port", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break_38", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": "enable_outgoing", - "description": "Notifications and bulk mails will be sent from this outgoing server.", - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "default_outgoing", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Default Outgoing", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": "enable_outgoing", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "always_use_account_email_id_as_sender", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Always use this email address as sender address", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": "enable_outgoing", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "always_use_account_name_as_sender_name", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Always use this name as sender name", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "1", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "send_unsubscribe_message", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 1, - "hide_seconds": 1, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Send unsubscribe message in email", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Email Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "1", - "depends_on": null, - "description": "Track if your email has been opened by the recipient.\nReference: {{ reference_doctype }} {{ reference_name }} to send document reference",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "auto_reply_message",
- "fieldtype": "Text Editor",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 1,
- "hide_seconds": 1,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Auto Reply Message",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Email Account",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 1,
- "collapsible_depends_on": "eval:frappe.utils.html2text(doc.footer || '')!=''",
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "set_footer",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 1,
- "hide_seconds": 1,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Footer",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Email Account",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "footer",
- "fieldtype": "Text Editor",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 1,
- "hide_seconds": 1,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Footer Content",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Email Account",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "brand_logo",
- "fieldtype": "Attach Image",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Brand Logo",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Email Account",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "uidvalidity",
- "fieldtype": "Data",
- "hidden": 1,
- "hide_border": 0,
- "hide_days": 1,
- "hide_seconds": 1,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "UIDVALIDITY",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 1,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Email Account",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "uidnext",
- "fieldtype": "Int",
- "hidden": 1,
- "hide_border": 0,
- "hide_days": 1,
- "hide_seconds": 1,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "UIDNEXT",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 1,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Email Account",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "no_failed",
- "fieldtype": "Int",
- "hidden": 1,
- "hide_border": 0,
- "hide_days": 1,
- "hide_seconds": 1,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "no failed attempts",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 1,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Email Account",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": "fa fa-inbox",
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 1,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 0,
- "links": [],
- "make_attachments_public": 1,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:47.267748",
- "module": "Email",
- "name": "Email Account",
- "naming_rule": "By fieldname",
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [
- {
- "amend": 0,
- "cancel": 0,
- "create": 1,
- "delete": 1,
- "email": 0,
- "export": 0,
- "if_owner": 0,
- "import": 0,
- "match": null,
- "parent": "Email Account",
- "parentfield": "permissions",
- "parenttype": "DocType",
- "permlevel": 0,
- "print": 0,
- "read": 1,
- "report": 0,
- "role": "System Manager",
- "select": 0,
- "share": 0,
- "submit": 0,
- "write": 1
- },
- {
- "amend": 0,
- "cancel": 0,
- "create": 0,
- "delete": 0,
- "email": 0,
- "export": 0,
- "if_owner": 0,
- "import": 0,
- "match": null,
- "parent": "Email Account",
- "parentfield": "permissions",
- "parenttype": "DocType",
- "permlevel": 0,
- "print": 0,
- "read": 1,
- "report": 0,
- "role": "Inbox User",
- "select": 0,
- "share": 0,
- "submit": 0,
- "write": 0
- }
- ],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 0,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 1,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 1,
- "allow_rename": 1,
- "app": null,
- "autoname": "field:attribute_name",
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "Setup",
- "documentation": null,
- "editable_grid": 0,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "attribute_name",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Attribute Name",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Item Attribute",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 1,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "numeric_values",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Numeric Values",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Item Attribute",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_vbik",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Item Attribute",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "disabled",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Disabled",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Item Attribute",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "numeric_values",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "section_break_4",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Item Attribute",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "from_range",
- "fieldtype": "Float",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "From Range",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Item Attribute",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "increment",
- "fieldtype": "Float",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Increment",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Item Attribute",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_8",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Item Attribute",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "to_range",
- "fieldtype": "Float",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "To Range",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Item Attribute",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval: !doc.numeric_values",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "section_break_5",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Item Attribute",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "item_attribute_values",
- "fieldtype": "Table",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Item Attribute Values",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Item Attribute Value",
- "parent": "Item Attribute",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": "fa fa-edit",
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 1,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 0,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:47.336502",
- "module": "Stock",
- "name": "Item Attribute",
- "naming_rule": "By fieldname",
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [
- {
- "amend": 0,
- "cancel": 0,
- "create": 1,
- "delete": 1,
- "email": 0,
- "export": 0,
- "if_owner": 0,
- "import": 0,
- "match": null,
- "parent": "Item Attribute",
- "parentfield": "permissions",
- "parenttype": "DocType",
- "permlevel": 0,
- "print": 0,
- "read": 1,
- "report": 1,
- "role": "Item Manager",
- "select": 0,
- "share": 1,
- "submit": 0,
- "write": 1
- }
- ],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 0,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 1,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 0,
- "allow_rename": 0,
- "app": null,
- "autoname": "",
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "Setup",
- "documentation": null,
- "editable_grid": 1,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "attribute_value",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Attribute Value",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Item Attribute Value",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": "",
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": "This will be appended to the Item Code of the variant. For example, if your abbreviation is \"SM\", and the item code is \"T-SHIRT\", the item code of the variant will be \"T-SHIRT-SM\"",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "abbr",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Abbreviation",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Item Attribute Value",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": "",
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 1,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": "fa fa-edit",
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 0,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 1,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:47.390735",
- "module": "Stock",
- "name": "Item Attribute Value",
- "naming_rule": null,
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 0,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 0,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 0,
- "allow_rename": 0,
- "app": null,
- "autoname": "",
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "Other",
- "documentation": null,
- "editable_grid": 1,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "item_attribute",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Item Attribute",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Item Attribute",
- "parent": "Item Variant",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": "",
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "item_attribute_value",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Item Attribute Value",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "",
- "parent": "Item Variant",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": "",
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": "",
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 0,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 1,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:47.445717",
- "module": "Stock",
- "name": "Item Variant",
- "naming_rule": null,
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 0,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 0,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 0,
- "allow_rename": 0,
- "app": null,
- "autoname": null,
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "Setup",
- "documentation": null,
- "editable_grid": 1,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "company",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 1,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Company",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Company",
- "parent": "Fiscal Year Company",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": null,
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 1,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 1,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:47.498728",
- "module": "Accounts",
- "name": "Fiscal Year Company",
- "naming_rule": null,
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 0,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 1,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 1,
- "allow_rename": 0,
- "app": null,
- "autoname": null,
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": null,
- "documentation": null,
- "editable_grid": 0,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "category_name",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Category Name",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Help Category",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "category_description",
- "fieldtype": "Text",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Category Description",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Help Category",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "published",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Published",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Help Category",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "help_articles",
- "fieldtype": "Int",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Help Articles",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Help Category",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "route",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Route",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Help Category",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": "icon-list",
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 0,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 0,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:47.563696",
- "module": "Website",
- "name": "Help Category",
- "naming_rule": null,
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [
- {
- "amend": 0,
- "cancel": 0,
- "create": 1,
- "delete": 1,
- "email": 1,
- "export": 1,
- "if_owner": 0,
- "import": 0,
- "match": null,
- "parent": "Help Category",
- "parentfield": "permissions",
- "parenttype": "DocType",
- "permlevel": 0,
- "print": 1,
- "read": 1,
- "report": 1,
- "role": "Website Manager",
- "select": 0,
- "share": 1,
- "submit": 0,
- "write": 1
- }
- ],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 0,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 1,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 1,
- "allow_import": 1,
- "allow_rename": 0,
- "app": null,
- "autoname": null,
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": null,
- "documentation": null,
- "editable_grid": 0,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "title",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 1,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Title",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Help Article",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "category",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 1,
- "is_virtual": 0,
- "label": "Category",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Help Category",
- "parent": "Help Article",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "published",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Published",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Help Article",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_4",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Help Article",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "user_fullname",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "author",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Author",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Help Article",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "level",
- "fieldtype": "Select",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Level",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Beginner\nIntermediate\nExpert",
- "parent": "Help Article",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "section_break_7",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Help Article",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "content",
- "fieldtype": "Text Editor",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 1,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Content",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Help Article",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "likes",
- "fieldtype": "Int",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Likes",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Help Article",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "route",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 1,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Route",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Help Article",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "section_break_cww5",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Help Article",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "helpful",
- "fieldtype": "Int",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Helpful",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Help Article",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "cb_00",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Help Article",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "not_helpful",
- "fieldtype": "Int",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Not Helpful",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Help Article",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 1,
- "hide_toolbar": 0,
- "icon": "icon-file-alt",
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 1,
- "is_calendar_and_gantt": 0,
- "is_published_field": "published",
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 0,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:47.647840",
- "module": "Website",
- "name": "Help Article",
- "naming_rule": null,
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [
- {
- "amend": 0,
- "cancel": 0,
- "create": 1,
- "delete": 1,
- "email": 1,
- "export": 1,
- "if_owner": 0,
- "import": 1,
- "match": null,
- "parent": "Help Article",
- "parentfield": "permissions",
- "parenttype": "DocType",
- "permlevel": 0,
- "print": 1,
- "read": 1,
- "report": 1,
- "role": "Knowledge Base Editor",
- "select": 0,
- "share": 0,
- "submit": 0,
- "write": 1
- },
- {
- "amend": 0,
- "cancel": 0,
- "create": 1,
- "delete": 0,
- "email": 0,
- "export": 0,
- "if_owner": 0,
- "import": 0,
- "match": null,
- "parent": "Help Article",
- "parentfield": "permissions",
- "parenttype": "DocType",
- "permlevel": 0,
- "print": 0,
- "read": 1,
- "report": 0,
- "role": "Knowledge Base Contributor",
- "select": 0,
- "share": 0,
- "submit": 0,
- "write": 1
- }
- ],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 0,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": "title",
- "track_changes": 1,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 1,
- "allow_rename": 1,
- "app": null,
- "autoname": "Prompt",
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "Setup",
- "documentation": null,
- "editable_grid": 0,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "workstation",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 1,
- "is_virtual": 0,
- "label": "Default Workstation",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Workstation",
- "parent": "Operation",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "data_2",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Operation",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "is_corrective_operation",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Is Corrective Operation",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Operation",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 1,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "job_card_section",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Job Card",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Operation",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "create_job_card_based_on_batch_size",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Create Job Card based on Batch Size",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Operation",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "quality_inspection_template",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Quality Inspection Template",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Quality Inspection Template",
- "parent": "Operation",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_6",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Operation",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "1",
- "depends_on": "create_job_card_based_on_batch_size",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "batch_size",
- "fieldtype": "Int",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Batch Size",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": "create_job_card_based_on_batch_size",
- "max_height": null,
- "no_copy": 0,
- "non_negative": 1,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Operation",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 1,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "sub_operations_section",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Sub Operations",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Operation",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "sub_operations",
- "fieldtype": "Table",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Sub Operation",
- "parent": "Operation",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": "Time in mins.",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "total_operation_time",
- "fieldtype": "Float",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Total Operation Time",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Operation",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 1,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "section_break_4",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Operation Description",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Operation",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "description",
- "fieldtype": "Text",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Description",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Operation",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": "fa fa-wrench",
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 1,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 0,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:47.726989",
- "module": "Manufacturing",
- "name": "Operation",
- "naming_rule": "Set by user",
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [
- {
- "amend": 0,
- "cancel": 0,
- "create": 1,
- "delete": 1,
- "email": 0,
- "export": 1,
- "if_owner": 0,
- "import": 1,
- "match": null,
- "parent": "Operation",
- "parentfield": "permissions",
- "parenttype": "DocType",
- "permlevel": 0,
- "print": 0,
- "read": 1,
- "report": 0,
- "role": "Manufacturing User",
- "select": 0,
- "share": 1,
- "submit": 0,
- "write": 1
- },
- {
- "amend": 0,
- "cancel": 0,
- "create": 1,
- "delete": 1,
- "email": 0,
- "export": 1,
- "if_owner": 0,
- "import": 1,
- "match": null,
- "parent": "Operation",
- "parentfield": "permissions",
- "parenttype": "DocType",
- "permlevel": 0,
- "print": 0,
- "read": 1,
- "report": 1,
- "role": "Manufacturing Manager",
- "select": 0,
- "share": 1,
- "submit": 0,
- "write": 1
- }
- ],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 1,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 1,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 0,
- "allow_rename": 0,
- "app": null,
- "autoname": null,
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "Document",
- "documentation": null,
- "editable_grid": 0,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "bom_and_work_order_tab",
- "fieldtype": "Tab Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "BOM and Production",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "raw_materials_consumption_section",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Raw Materials Consumption ",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": "Allow material consumptions without immediately manufacturing finished goods against a Work Order",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "material_consumption",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Allow Continuous Material Consumption",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": "eval: doc.material_consumption",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "get_rm_cost_from_consumption_entry",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Get Raw Materials Cost from Consumption Entry",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_3",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "BOM",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "backflush_raw_materials_based_on",
- "fieldtype": "Select",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Backflush Raw Materials Based On",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "BOM\nMaterial Transferred for Manufacture",
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": "eval:doc.backflush_raw_materials_based_on == \"BOM\"",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "validate_components_quantities_per_bom",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Validate Components and Quantities Per BOM",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "bom_section",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "BOM",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": "Update BOM cost automatically via scheduler, based on the latest Valuation Rate/Price List Rate/Last Purchase Rate of raw materials",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "update_bom_costs_automatically",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Update BOM Cost Automatically",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_lhyt",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": "If enabled, the system will allow users to edit the raw materials and their quantities in the Work Order. The system will not reset the quantities as per the BOM, if the user has changed them.",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "allow_editing_of_items_and_quantities_in_work_order",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Allow Editing of Items and Quantities in Work Order",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "section_break_6",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Default Warehouses for Production",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "default_wip_warehouse",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Default Work In Progress Warehouse",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Warehouse",
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "default_fg_warehouse",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Default Finished Goods Warehouse",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Warehouse",
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_11",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "default_scrap_warehouse",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Default Scrap Warehouse",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Warehouse",
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "over_production_for_sales_and_work_order_section",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Overproduction for Sales and Work Order",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "overproduction_percentage_for_sales_order",
- "fieldtype": "Percent",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Overproduction Percentage For Sales Order",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_16",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "overproduction_percentage_for_work_order",
- "fieldtype": "Percent",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Overproduction Percentage For Work Order",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "job_card_section",
- "fieldtype": "Tab Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Job Card and Capacity Planning",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "add_corrective_operation_cost_in_finished_good_valuation",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Add Corrective Operation Cost in Finished Good Valuation",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": "Enabling this checkbox will force each Job Card Time Log to have From Time and To Time",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "enforce_time_logs",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Enforce Time Logs",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_24",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": "Allow transferring raw materials even after the Required Quantity is fulfilled",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "job_card_excess_transfer",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Allow Excess Material Transfer",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "capacity_planning",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Capacity Planning",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "disable_capacity_planning",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Disable Capacity Planning",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": "eval:!doc.disable_capacity_planning",
- "description": "Plan time logs outside Workstation working hours",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "allow_overtime",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Allow Overtime",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": "eval:!doc.disable_capacity_planning",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "allow_production_on_holidays",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Allow Production on Holidays",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_5",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "30",
- "depends_on": "eval:!doc.disable_capacity_planning",
- "description": "Plan operations X days in advance",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "capacity_planning_for_days",
- "fieldtype": "Int",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Capacity Planning For (Days)",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval:!doc.disable_capacity_planning",
- "description": "Default: 10 mins",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "mins_between_operations",
- "fieldtype": "Int",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Time Between Operations (Mins)",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "other_settings_section",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Other Settings",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": "To include sub-assembly costs and scrap items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled.",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "set_op_cost_and_scrap_from_sub_assemblies",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Set Operating Cost / Scrap Items From Sub-assemblies",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_23",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": "System will automatically create the serial numbers / batch for the Finished Good on submission of work order",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "make_serial_no_batch_from_work_order",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Make Serial No / Batch from Work Order",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Manufacturing Settings",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": "icon-wrench",
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 1,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 1,
- "istable": 0,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:47.812498",
- "module": "Manufacturing",
- "name": "Manufacturing Settings",
- "naming_rule": null,
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [
- {
- "amend": 0,
- "cancel": 0,
- "create": 1,
- "delete": 0,
- "email": 0,
- "export": 0,
- "if_owner": 0,
- "import": 0,
- "match": null,
- "parent": "Manufacturing Settings",
- "parentfield": "permissions",
- "parenttype": "DocType",
- "permlevel": 0,
- "print": 0,
- "read": 1,
- "report": 0,
- "role": "Manufacturing Manager",
- "select": 0,
- "share": 1,
- "submit": 0,
- "write": 1
- }
- ],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 0,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 1,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 0,
- "allow_rename": 0,
- "app": null,
- "autoname": null,
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": null,
- "documentation": null,
- "editable_grid": 1,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "start_time",
- "fieldtype": "Time",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Start Time",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Workstation Working Hour",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "hours",
- "fieldtype": "Float",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Hours",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Workstation Working Hour",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_2",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Workstation Working Hour",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "end_time",
- "fieldtype": "Time",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "End Time",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Workstation Working Hour",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "1",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "enabled",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Enabled",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Workstation Working Hour",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": null,
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 0,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 1,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:47.876908",
- "module": "Manufacturing",
- "name": "Workstation Working Hour",
- "naming_rule": null,
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 0,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 0,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 0,
- "allow_rename": 0,
- "app": null,
- "autoname": null,
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "",
- "documentation": null,
- "editable_grid": 1,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "company",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Company",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Company",
- "parent": "Mode of Payment Account",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": "",
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": "Default account will be automatically updated in POS Invoice when this mode is selected.",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "default_account",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Default Account",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Account",
- "parent": "Mode of Payment Account",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": "",
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": null,
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 0,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 1,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:47.928269",
- "module": "Accounts",
- "name": "Mode of Payment Account",
- "naming_rule": null,
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 0,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 0,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 1,
- "allow_rename": 0,
- "app": null,
- "autoname": "hash",
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": "Internal record of document shares",
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "System",
- "documentation": null,
- "editable_grid": 0,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "user",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "User",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "User",
- "parent": "DocShare",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 1,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "share_doctype",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Document Type",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "DocType",
- "parent": "DocShare",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 1,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "share_name",
- "fieldtype": "Dynamic Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Document Name",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "share_doctype",
- "parent": "DocShare",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 1,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "read",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Read",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "DocShare",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "write",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Write",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "DocShare",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "share",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Share",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "DocShare",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "submit",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Submit",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "DocShare",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "everyone",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Everyone",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "DocShare",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 1,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "1",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "notify_by_email",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Notify by email",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "DocShare",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 1,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": null,
- "image_field": null,
- "in_create": 1,
- "index_web_pages_for_search": 0,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 0,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:47.993165",
- "module": "Core",
- "name": "DocShare",
- "naming_rule": "Random",
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [
- {
- "amend": 0,
- "cancel": 0,
- "create": 1,
- "delete": 1,
- "email": 0,
- "export": 1,
- "if_owner": 0,
- "import": 1,
- "match": null,
- "parent": "DocShare",
- "parentfield": "permissions",
- "parenttype": "DocType",
- "permlevel": 0,
- "print": 0,
- "read": 1,
- "report": 1,
- "role": "System Manager",
- "select": 0,
- "share": 1,
- "submit": 0,
- "write": 1
- }
- ],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 0,
- "read_only": 1,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 1,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 0,
- "allow_rename": 0,
- "app": null,
- "autoname": null,
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "Other",
- "documentation": null,
- "editable_grid": 1,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "barcode",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Barcode",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 1,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "barcode",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "has_item_scanned",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Has Item Scanned",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 3,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "item_code",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 1,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Item Code",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Item",
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": "item_code.item_name",
- "fetch_if_empty": 0,
- "fieldname": "item_name",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 1,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Item Name",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 1,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 1,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": "item_code.item_group",
- "fetch_if_empty": 0,
- "fieldname": "item_group",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Item Group",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Item Group",
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_6",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 3,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "warehouse",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Warehouse",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Warehouse",
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 2,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "qty",
- "fieldtype": "Float",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Quantity",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 2,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": "item_code.stock_uom",
- "fetch_if_empty": 0,
- "fieldname": "stock_uom",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Stock UOM",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "UOM",
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 2,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "valuation_rate",
- "fieldtype": "Currency",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Valuation Rate",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Company:company:default_currency",
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "amount",
- "fieldtype": "Currency",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Amount",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Company:company:default_currency",
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "allow_zero_valuation_rate",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Allow Zero Valuation Rate",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 1,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "serial_no_and_batch_section",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Serial No and Batch",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval:doc.use_serial_batch_fields === 0 || doc.docstatus === 1",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "add_serial_batch_bundle",
- "fieldtype": "Button",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Add Serial / Batch No",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "use_serial_batch_fields",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Use Serial No / Batch Fields",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": "eval:!doc.use_serial_batch_fields",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "reconcile_all_serial_batch",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Reconcile All Serial Nos / Batches",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_11",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval:doc.use_serial_batch_fields === 0 || doc.docstatus === 1",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "serial_and_batch_bundle",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Serial / Batch Bundle",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 1,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Serial and Batch Bundle",
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 1,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 1,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval:doc.use_serial_batch_fields === 0 || doc.docstatus === 1",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "current_serial_and_batch_bundle",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Current Serial / Batch Bundle",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 1,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Serial and Batch Bundle",
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval:doc.use_serial_batch_fields === 1",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "section_break_lypk",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval:doc.use_serial_batch_fields === 1",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "serial_no",
- "fieldtype": "Long Text",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Serial No",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 1,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_eefq",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval:doc.use_serial_batch_fields === 1",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "batch_no",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Batch No",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Batch",
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 1,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "section_break_3",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Before reconciliation",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "current_qty",
- "fieldtype": "Float",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Current Qty",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "current_amount",
- "fieldtype": "Currency",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Current Amount",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Company:company:default_currency",
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_9",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "current_valuation_rate",
- "fieldtype": "Currency",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Current Valuation Rate",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Company:company:default_currency",
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "current_serial_no",
- "fieldtype": "Long Text",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Current Serial No",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 1,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 1,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "section_break_14",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "quantity_difference",
- "fieldtype": "Read Only",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Quantity Difference",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_16",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "amount_difference",
- "fieldtype": "Currency",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Amount Difference",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Company:company:default_currency",
- "parent": "Stock Reconciliation Item",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": null,
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 0,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 1,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:48.084654",
- "module": "Stock",
- "name": "Stock Reconciliation Item",
- "naming_rule": null,
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 1,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 1,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 1,
- "allow_rename": 0,
- "app": null,
- "autoname": "field:theme",
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "Setup",
- "documentation": null,
- "editable_grid": 0,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "bootstrap_theme_section",
- "fieldtype": "Tab Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Theme Configuration",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "theme",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Theme",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 1,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "Website",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "module",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Module",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Module Def",
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "1",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "custom",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Custom?",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "google_font",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Google Font",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "font_size",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Font Size",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "wght@300;400;500;600;700;800",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "font_properties",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Font Properties",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "1",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "button_rounded_corners",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Button Rounded Corners",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "button_shadows",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Button Shadows",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "button_gradients",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Button Gradients",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_11",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "primary_color",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Primary Color",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Color",
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "text_color",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Text Color",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Color",
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "light_color",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Light Color",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Color",
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "dark_color",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Dark Color",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Color",
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "background_color",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Background Color",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Color",
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "stylesheet_section",
- "fieldtype": "Tab Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Stylesheet",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "custom_overrides",
- "fieldtype": "Code",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Custom Overrides",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "SCSS",
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "custom_scss",
- "fieldtype": "Code",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Custom SCSS",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "SCSS",
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "ignored_apps",
- "fieldtype": "Table",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Ignored Apps",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Website Theme Ignore App",
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "theme_scss",
- "fieldtype": "Code",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Theme",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "SCSS",
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "theme_url",
- "fieldtype": "Data",
- "hidden": 1,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Theme URL",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 1,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "custom_js_section",
- "fieldtype": "Tab Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Script",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "js",
- "fieldtype": "Code",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "JavaScript",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "JS",
- "parent": "Website Theme",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": null,
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 1,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 0,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:48.167920",
- "module": "Website",
- "name": "Website Theme",
- "naming_rule": "By fieldname",
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [
- {
- "amend": 0,
- "cancel": 0,
- "create": 1,
- "delete": 1,
- "email": 0,
- "export": 0,
- "if_owner": 0,
- "import": 0,
- "match": null,
- "parent": "Website Theme",
- "parentfield": "permissions",
- "parenttype": "DocType",
- "permlevel": 0,
- "print": 0,
- "read": 1,
- "report": 0,
- "role": "Website Manager",
- "select": 0,
- "share": 0,
- "submit": 0,
- "write": 1
- },
- {
- "amend": 0,
- "cancel": 0,
- "create": 1,
- "delete": 1,
- "email": 0,
- "export": 1,
- "if_owner": 0,
- "import": 1,
- "match": null,
- "parent": "Website Theme",
- "parentfield": "permissions",
- "parenttype": "DocType",
- "permlevel": 0,
- "print": 0,
- "read": 1,
- "report": 0,
- "role": "Administrator",
- "select": 0,
- "share": 0,
- "submit": 0,
- "write": 1
- }
- ],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 0,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 1,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 1,
- "allow_rename": 1,
- "app": null,
- "autoname": "field:title",
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "Setup",
- "documentation": null,
- "editable_grid": 0,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "title",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Title",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 1,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Email Group",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 1,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_oyyj",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Email Group",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "total_subscribers",
- "fieldtype": "Int",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Total Subscribers",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Email Group",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "sign_up_and_confirmation_section",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Sign Up and Confirmation",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Email Group",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "confirmation_email_template",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Confirmation Email Template",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Email Template",
- "parent": "Email Group",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "welcome_email_template",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Welcome Email Template",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Email Template",
- "parent": "Email Group",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": "Redirect to this URL after successful confirmation.",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "welcome_url",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Welcome URL",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "URL",
- "parent": "Email Group",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": "welcome_url",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "add_query_parameters",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Add Query Parameters",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Email Group",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": null,
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 1,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 0,
- "links": [
- {
- "custom": 0,
- "group": "Members",
- "hidden": 0,
- "is_child_table": 0,
- "link_doctype": "Email Group Member",
- "link_fieldname": "email_group",
- "parent": "Email Group",
- "parent_doctype": null,
- "parentfield": "links",
- "parenttype": "DocType",
- "table_fieldname": null
- }
- ],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:48.234444",
- "module": "Email",
- "name": "Email Group",
- "naming_rule": "By fieldname",
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [
- {
- "amend": 0,
- "cancel": 0,
- "create": 1,
- "delete": 1,
- "email": 1,
- "export": 1,
- "if_owner": 0,
- "import": 1,
- "match": null,
- "parent": "Email Group",
- "parentfield": "permissions",
- "parenttype": "DocType",
- "permlevel": 0,
- "print": 1,
- "read": 1,
- "report": 1,
- "role": "Newsletter Manager",
- "select": 0,
- "share": 1,
- "submit": 0,
- "write": 1
- }
- ],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 1,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 1,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 1,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 1,
- "allow_rename": 0,
- "app": null,
- "autoname": "hash",
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "Document",
- "documentation": null,
- "editable_grid": 0,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "email_group",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 1,
- "is_virtual": 0,
- "label": "Email Group",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Email Group",
- "parent": "Email Group Member",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 1,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "email",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 1,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Email",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Email",
- "parent": "Email Group Member",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "unsubscribed",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Unsubscribed",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Email Group Member",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 1,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": null,
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 0,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 0,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:48.296293",
- "module": "Email",
- "name": "Email Group Member",
- "naming_rule": "Random",
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [
- {
- "amend": 0,
- "cancel": 0,
- "create": 1,
- "delete": 1,
- "email": 1,
- "export": 1,
- "if_owner": 0,
- "import": 1,
- "match": null,
- "parent": "Email Group Member",
- "parentfield": "permissions",
- "parenttype": "DocType",
- "permlevel": 0,
- "print": 1,
- "read": 1,
- "report": 1,
- "role": "Newsletter Manager",
- "select": 0,
- "share": 1,
- "submit": 0,
- "write": 1
- }
- ],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 1,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": "email",
- "track_changes": 1,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 0,
- "allow_rename": 0,
- "app": null,
- "autoname": null,
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "System",
- "documentation": null,
- "editable_grid": 0,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "email",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Email",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Email Unsubscribe",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 1,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "reference_doctype",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 1,
- "is_virtual": 0,
- "label": "Reference Document Type",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "DocType",
- "parent": "Email Unsubscribe",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "reference_name",
- "fieldtype": "Dynamic Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Reference Name",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "reference_doctype",
- "parent": "Email Unsubscribe",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "global_unsubscribe",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Global Unsubscribe",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Email Unsubscribe",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": null,
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 0,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 0,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:48.356738",
- "module": "Email",
- "name": "Email Unsubscribe",
- "naming_rule": null,
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [
- {
- "amend": 0,
- "cancel": 0,
- "create": 1,
- "delete": 1,
- "email": 1,
- "export": 1,
- "if_owner": 0,
- "import": 0,
- "match": null,
- "parent": "Email Unsubscribe",
- "parentfield": "permissions",
- "parenttype": "DocType",
- "permlevel": 0,
- "print": 1,
- "read": 1,
- "report": 1,
- "role": "System Manager",
- "select": 0,
- "share": 1,
- "submit": 0,
- "write": 1
- }
- ],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 1,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 1,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 1,
- "allow_rename": 1,
- "app": null,
- "autoname": "PROJ-ACC-.#####",
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "Setup",
- "documentation": null,
- "editable_grid": 0,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "activity_type",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 1,
- "is_virtual": 0,
- "label": "Activity Type",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Activity Type",
- "parent": "Activity Cost",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": "",
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "employee",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 1,
- "is_virtual": 0,
- "label": "Employee",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Employee",
- "parent": "Activity Cost",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": "",
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_2",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Activity Cost",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": "",
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "employee_name",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Employee Name",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "",
- "parent": "Activity Cost",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": "",
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": "employee.department",
- "fetch_if_empty": 0,
- "fieldname": "department",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Department",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Department",
- "parent": "Activity Cost",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": "",
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "section_break_4",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Activity Cost",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": "",
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": "per hour",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "billing_rate",
- "fieldtype": "Currency",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Billing Rate",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Activity Cost",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": "",
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_6",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Activity Cost",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": "",
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": "per hour",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "costing_rate",
- "fieldtype": "Currency",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Costing Rate",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Activity Cost",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": "",
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "title",
- "fieldtype": "Data",
- "hidden": 1,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "title",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 1,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Activity Cost",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": "",
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": null,
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 0,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 0,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:48.425479",
- "module": "Projects",
- "name": "Activity Cost",
- "naming_rule": null,
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [
- {
- "amend": 0,
- "cancel": 0,
- "create": 1,
- "delete": 1,
- "email": 1,
- "export": 1,
- "if_owner": 0,
- "import": 0,
- "match": null,
- "parent": "Activity Cost",
- "parentfield": "permissions",
- "parenttype": "DocType",
- "permlevel": 0,
- "print": 1,
- "read": 1,
- "report": 1,
- "role": "Projects User",
- "select": 0,
- "share": 1,
- "submit": 0,
- "write": 1
- }
- ],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 0,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": "title",
- "track_changes": 0,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 0,
- "allow_rename": 0,
- "app": null,
- "autoname": null,
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "Other",
- "documentation": null,
- "editable_grid": 1,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "module",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Module",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Block Module",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": null,
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 0,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 1,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:48.483056",
- "module": "Core",
- "name": "Block Module",
- "naming_rule": null,
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 0,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 0,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 0,
- "allow_rename": 0,
- "app": null,
- "autoname": null,
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "",
- "documentation": null,
- "editable_grid": 1,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "task",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Task",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Task",
- "parent": "Dependent Task",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": "",
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 1,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": null,
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 0,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 1,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:48.535763",
- "module": "Projects",
- "name": "Dependent Task",
- "naming_rule": null,
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 0,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 0,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 0,
- "allow_rename": 0,
- "app": null,
- "autoname": null,
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": null,
- "documentation": null,
- "editable_grid": 1,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "task",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Task",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Task",
- "parent": "Task Depends On",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_2",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Task Depends On",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": "task.subject",
- "fetch_if_empty": 1,
- "fieldname": "subject",
- "fieldtype": "Text",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Subject",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Task Depends On",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "project",
- "fieldtype": "Text",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Project",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Task Depends On",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": null,
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 0,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 1,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:48.588494",
- "module": "Projects",
- "name": "Task Depends On",
- "naming_rule": null,
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 0,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 0,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 0,
- "allow_rename": 0,
- "app": null,
- "autoname": null,
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "Other",
- "documentation": null,
- "editable_grid": 1,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "variant_of",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Variant Of",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Item",
- "parent": "Item Variant Attribute",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 1,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "attribute",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Attribute",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Item Attribute",
- "parent": "Item Variant Attribute",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 1,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_2",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Item Variant Attribute",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "attribute_value",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Attribute Value",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Item Variant Attribute",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": "has_variants",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "numeric_values",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Numeric Values",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Item Variant Attribute",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": "attribute.disabled",
- "fetch_if_empty": 0,
- "fieldname": "disabled",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Disabled",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Item Variant Attribute",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "numeric_values",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "section_break_4",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Item Variant Attribute",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "from_range",
- "fieldtype": "Float",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "From Range",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Item Variant Attribute",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "increment",
- "fieldtype": "Float",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Increment",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Item Variant Attribute",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_8",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Item Variant Attribute",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "to_range",
- "fieldtype": "Float",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "To Range",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Item Variant Attribute",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": null,
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 0,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 1,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:48.675616",
- "module": "Stock",
- "name": "Item Variant Attribute",
- "naming_rule": null,
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 0,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 0,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 1,
- "allow_rename": 0,
- "app": null,
- "autoname": "ACC-TAX-RULE-.YYYY.-.#####",
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "Setup",
- "documentation": null,
- "editable_grid": 0,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "Sales",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "tax_type",
- "fieldtype": "Select",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 1,
- "is_virtual": 0,
- "label": "Tax Type",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Sales\nPurchase",
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "1",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "use_for_shopping_cart",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Use for Shopping Cart",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_1",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval:doc.tax_type==\"Sales\"",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "sales_tax_template",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Sales Tax Template",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Sales Taxes and Charges Template",
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval:doc.tax_type==\"Purchase\"",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "purchase_tax_template",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Purchase Tax Template",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Purchase Taxes and Charges Template",
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "filters",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Filters",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval:doc.tax_type==\"Sales\"",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "customer",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Customer",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Customer",
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval:doc.tax_type==\"Purchase\"",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "supplier",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Supplier",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Supplier",
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "item",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Item",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Item",
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "billing_city",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Billing City",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "billing_county",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Billing County",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "billing_state",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Billing State",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "billing_zipcode",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Billing Zipcode",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "billing_country",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Billing Country",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Country",
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "tax_category",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Tax Category",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Tax Category",
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_2",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval:doc.tax_type==\"Sales\"",
- "description": null,
- "documentation_url": null,
- "fetch_from": "customer.customer_group",
- "fetch_if_empty": 0,
- "fieldname": "customer_group",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Customer Group",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Customer Group",
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval:doc.tax_type==\"Purchase\"",
- "description": null,
- "documentation_url": null,
- "fetch_from": "supplier.supplier_group",
- "fetch_if_empty": 0,
- "fieldname": "supplier_group",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Supplier Group",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Supplier Group",
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "item_group",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Item Group",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Item Group",
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "shipping_city",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Shipping City",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "shipping_county",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Shipping County",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "shipping_state",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Shipping State",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "shipping_zipcode",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Shipping Zipcode",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "shipping_country",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Shipping Country",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Country",
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "section_break_4",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Validity",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "from_date",
- "fieldtype": "Date",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "From Date",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_7",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "to_date",
- "fieldtype": "Date",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "To Date",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "section_break_6",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "1",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "priority",
- "fieldtype": "Int",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Priority",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_20",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "company",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Company",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Company",
- "parent": "Tax Rule",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 1,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": null,
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 0,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 0,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:48.768249",
- "module": "Accounts",
- "name": "Tax Rule",
- "naming_rule": null,
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [
- {
- "amend": 0,
- "cancel": 0,
- "create": 1,
- "delete": 1,
- "email": 1,
- "export": 1,
- "if_owner": 0,
- "import": 0,
- "match": null,
- "parent": "Tax Rule",
- "parentfield": "permissions",
- "parenttype": "DocType",
- "permlevel": 0,
- "print": 1,
- "read": 1,
- "report": 1,
- "role": "Accounts Manager",
- "select": 0,
- "share": 1,
- "submit": 0,
- "write": 1
- }
- ],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 0,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 1,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 0,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 0,
- "allow_rename": 0,
- "app": null,
- "autoname": null,
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "Other",
- "documentation": null,
- "editable_grid": 1,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "country",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Country",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Country",
- "parent": "Shipping Rule Country",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": "",
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": null,
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 0,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 1,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:48.818335",
- "module": "Accounts",
- "name": "Shipping Rule Country",
- "naming_rule": null,
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 0,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 0,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 0,
- "allow_rename": 0,
- "app": null,
- "autoname": null,
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": "",
- "documentation": null,
- "editable_grid": 1,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "country",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Country",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Country",
- "parent": "Price List Country",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": "",
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- }
- ],
- "force_re_route_to_default_view": 0,
- "grid_page_length": 0,
- "has_web_view": 0,
- "hide_toolbar": 0,
- "icon": null,
- "image_field": null,
- "in_create": 0,
- "index_web_pages_for_search": 0,
- "is_calendar_and_gantt": 0,
- "is_published_field": null,
- "is_submittable": 0,
- "is_tree": 0,
- "is_virtual": 0,
- "issingle": 0,
- "istable": 1,
- "links": [],
- "make_attachments_public": 0,
- "max_attachments": 0,
- "menu_index": null,
- "migration_hash": "572c73571fd0c3a0c0d80998262c6672",
- "modified": "2026-05-17 05:46:48.869165",
- "module": "Stock",
- "name": "Price List Country",
- "naming_rule": null,
- "nsm_parent_field": null,
- "parent_node": null,
- "permissions": [],
- "print_outline": null,
- "protect_attached_files": 0,
- "queue_in_background": 0,
- "quick_entry": 0,
- "read_only": 0,
- "recipient_account_field": null,
- "restrict_to_domain": null,
- "route": null,
- "row_format": "Dynamic",
- "rows_threshold_for_grid_search": 0,
- "search_fields": null,
- "sender_field": null,
- "sender_name_field": null,
- "show_name_in_global_search": 0,
- "show_preview_popup": 0,
- "show_title_field_in_link": 0,
- "smallicon": null,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": [],
- "subject": null,
- "subject_field": null,
- "tag_fields": null,
- "timeline_field": null,
- "title_field": null,
- "track_changes": 0,
- "track_seen": 0,
- "track_views": 0,
- "translated_doctype": 0,
- "website_search_field": null
- },
- {
- "_assign": null,
- "_comments": null,
- "_last_update": null,
- "_liked_by": null,
- "_user_tags": null,
- "actions": [],
- "allow_auto_repeat": 0,
- "allow_copy": 0,
- "allow_events_in_timeline": 0,
- "allow_guest_to_view": 0,
- "allow_import": 0,
- "allow_rename": 0,
- "app": null,
- "autoname": "naming_series:",
- "beta": 0,
- "color": null,
- "colour": null,
- "custom": 0,
- "default_email_template": null,
- "default_print_format": null,
- "default_view": null,
- "description": null,
- "docstatus": 0,
- "doctype": "DocType",
- "document_type": null,
- "documentation": null,
- "editable_grid": 0,
- "email_append_to": 0,
- "engine": "InnoDB",
- "fields": [
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "Inward",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "payment_request_type",
- "fieldtype": "Select",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Payment Request Type",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Outward\nInward",
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "transaction_date",
- "fieldtype": "Date",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 1,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Transaction Date",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_2",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "naming_series",
- "fieldtype": "Select",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 1,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Series",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 1,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "ACC-PRQ-.YYYY.-",
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 1,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 1,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "company",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Company",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Company",
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "mode_of_payment",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Mode of Payment",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Mode of Payment",
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "party_details",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Party Details",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "party_type",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Party Type",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "DocType",
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "party",
- "fieldtype": "Dynamic Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Party",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "party_type",
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "party_name",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Party Name",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_4",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "reference_doctype",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 1,
- "is_virtual": 0,
- "label": "Reference Doctype",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 1,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "DocType",
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 1,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 1,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "reference_name",
- "fieldtype": "Dynamic Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 1,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 1,
- "is_virtual": 0,
- "label": "Reference Name",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 1,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "reference_doctype",
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 1,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 1,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "transaction_details",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Transaction Details",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": "Amount in transaction currency",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "grand_total",
- "fieldtype": "Currency",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 1,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Amount",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 1,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "currency",
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 1,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "currency",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Transaction Currency",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Currency",
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "is_a_subscription",
- "fieldtype": "Check",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Is a Subscription",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_18",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval: doc.docstatus === 1",
- "description": "Amount in party's bank account currency",
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "outstanding_amount",
- "fieldtype": "Currency",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 1,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Outstanding Amount",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 1,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "party_account_currency",
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "party_account_currency",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Party Account Currency",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Currency",
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval:doc.is_a_subscription",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "subscription_section",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Subscription Section",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "subscription_plans",
- "fieldtype": "Table",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Subscription Plans",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Subscription Plan Detail",
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 1,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "bank_account_details",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Bank Account Details",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "bank_account",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Bank Account",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Bank Account",
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": "bank_account.bank",
- "fetch_if_empty": 0,
- "fieldname": "bank",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Bank",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Bank",
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": "bank_account.bank_account_no",
- "fetch_if_empty": 0,
- "fieldname": "bank_account_no",
- "fieldtype": "Read Only",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Bank Account No",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": "bank_account.account",
- "fetch_if_empty": 0,
- "fieldname": "account",
- "fieldtype": "Read Only",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Account",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_11",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": "bank_account.iban",
- "fetch_if_empty": 0,
- "fieldname": "iban",
- "fieldtype": "Read Only",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "IBAN",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "IBAN",
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": "bank_account.branch_code",
- "fetch_if_empty": 1,
- "fieldname": "branch_code",
- "fieldtype": "Read Only",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Branch Code",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": "bank.swift_number",
- "fetch_if_empty": 0,
- "fieldname": "swift_number",
- "fieldtype": "Read Only",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "SWIFT Number",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 1,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "accounting_dimensions_section",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Accounting Dimensions",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "cost_center",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Cost Center",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Cost Center",
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "dimension_col_break",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "project",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Project",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Project",
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval: doc.payment_request_type == 'Inward'",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "recipient_and_message",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Recipient Message And Payment Details",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval: doc.payment_channel != \"Phone\"",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "print_format",
- "fieldtype": "Select",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Print Format",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "email_to",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 1,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "To",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval: doc.payment_channel != \"Phone\"",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "subject",
- "fieldtype": "Data",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 1,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Subject",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "column_break_9",
- "fieldtype": "Column Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval: doc.payment_request_type == 'Inward'",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "payment_gateway_account",
- "fieldtype": "Link",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Payment Gateway Account",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "Payment Gateway Account",
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "Draft",
- "depends_on": null,
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "status",
- "fieldtype": "Select",
- "hidden": 1,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 1,
- "is_virtual": 0,
- "label": "Status",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "\nDraft\nRequested\nInitiated\nPartially Paid\nPayment Ordered\nPaid\nFailed\nCancelled",
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": "0",
- "depends_on": "eval:doc.reference_doctype==\"Sales Order\"",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "make_sales_invoice",
- "fieldtype": "Check",
- "hidden": 1,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Make Sales Invoice",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 1,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval: doc.payment_request_type == 'Inward' || doc.payment_channel != \"Phone\"",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "section_break_10",
- "fieldtype": "Section Break",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": null,
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval: doc.payment_channel != \"Phone\"",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "message",
- "fieldtype": "Text",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Message",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": null,
- "parent": "Payment Request",
- "parentfield": "fields",
- "parenttype": "DocType",
- "permlevel": 0,
- "placeholder": null,
- "precision": null,
- "print_hide": 0,
- "print_hide_if_no_value": 0,
- "print_width": null,
- "read_only": 0,
- "read_only_depends_on": null,
- "remember_last_selected_value": 0,
- "report_hide": 0,
- "reqd": 0,
- "search_index": 0,
- "set_only_once": 0,
- "show_dashboard": 0,
- "show_on_timeline": 0,
- "show_preview_popup": 0,
- "sort_options": 0,
- "translatable": 0,
- "trigger": null,
- "unique": 0,
- "width": null
- },
- {
- "allow_bulk_edit": 0,
- "allow_in_quick_entry": 0,
- "allow_on_submit": 0,
- "bold": 0,
- "collapsible": 0,
- "collapsible_depends_on": null,
- "columns": 0,
- "default": null,
- "depends_on": "eval: doc.payment_channel != \"Phone\"",
- "description": null,
- "documentation_url": null,
- "fetch_from": null,
- "fetch_if_empty": 0,
- "fieldname": "message_examples",
- "fieldtype": "HTML",
- "hidden": 0,
- "hide_border": 0,
- "hide_days": 0,
- "hide_seconds": 0,
- "ignore_user_permissions": 0,
- "ignore_xss_filter": 0,
- "in_filter": 0,
- "in_global_search": 0,
- "in_list_view": 0,
- "in_preview": 0,
- "in_standard_filter": 0,
- "is_virtual": 0,
- "label": "Message Examples",
- "length": 0,
- "link_filters": null,
- "make_attachment_public": 0,
- "mandatory_depends_on": null,
- "max_height": null,
- "no_copy": 0,
- "non_negative": 0,
- "oldfieldname": null,
- "oldfieldtype": null,
- "options": "\n", - "parent": "Payment Request", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 1, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "mute_email", - "fieldtype": "Check", - "hidden": 1, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Mute Email", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 1, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Request", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 1, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 1, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "payment_url", - "fieldtype": "Data", - "hidden": 1, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 500, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "URL", - "parent": "Payment Request", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 1, - "collapsible_depends_on": "doc.payment_gateway_account", - "columns": 0, - "default": null, - "depends_on": "eval: doc.payment_request_type == 'Inward'", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "section_break_7", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Payment Gateway Details", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Request", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": "payment_gateway_account.payment_gateway", - "fetch_if_empty": 0, - "fieldname": "payment_gateway", - "fieldtype": "Read Only", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Payment Gateway", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Request", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": "payment_gateway_account.payment_account", - "fetch_if_empty": 0, - "fieldname": "payment_account", - "fieldtype": "Read Only", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Payment Account", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Request", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval: doc.payment_channel==\"Phone\"", - "description": null, - "documentation_url": null, - "fetch_from": "payment_gateway_account.payment_channel", - "fetch_if_empty": 0, - "fieldname": "payment_channel", - "fieldtype": "Select", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Payment Channel", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "\nEmail\nPhone", - "parent": "Payment Request", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "payment_order", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Payment Order", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Payment Order", - "parent": "Payment Request", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "amended_from", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Amended From", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 1, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Payment Request", - "parent": "Payment Request", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 1, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break_iiuv", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Request", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "phone_number", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Phone Number", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Request", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "amended_from", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Amended From", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 1, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Payment Request", - "parent": "Payment Request", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 1, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 1, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - } - ], - "force_re_route_to_default_view": 0, - "grid_page_length": 50, - "has_web_view": 0, - "hide_toolbar": 0, - "icon": null, - "image_field": null, - "in_create": 1, - "index_web_pages_for_search": 1, - "is_calendar_and_gantt": 0, - "is_published_field": null, - "is_submittable": 1, - "is_tree": 0, - "is_virtual": 0, - "issingle": 0, - "istable": 0, - "links": [], - "make_attachments_public": 0, - "max_attachments": 0, - "menu_index": null, - "migration_hash": "572c73571fd0c3a0c0d80998262c6672", - "modified": "2026-05-17 05:46:49.021070", - "module": "Accounts", - "name": "Payment Request", - "naming_rule": "By \"Naming Series\" field", - "nsm_parent_field": null, - "parent_node": null, - "permissions": [ - { - "amend": 0, - "cancel": 0, - "create": 1, - "delete": 1, - "email": 1, - "export": 1, - "if_owner": 0, - "import": 0, - "match": null, - "parent": "Payment Request", - "parentfield": "permissions", - "parenttype": "DocType", - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "Accounts User", - "select": 0, - "share": 1, - "submit": 0, - "write": 1 - }, - { - "amend": 1, - "cancel": 1, - "create": 1, - "delete": 1, - "email": 1, - "export": 1, - "if_owner": 0, - "import": 0, - "match": null, - "parent": "Payment Request", - "parentfield": "permissions", - "parenttype": "DocType", - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "Accounts Manager", - "select": 0, - "share": 1, - "submit": 1, - "write": 1 - } - ], - "print_outline": null, - "protect_attached_files": 0, - "queue_in_background": 0, - "quick_entry": 0, - "read_only": 0, - "recipient_account_field": null, - "restrict_to_domain": null, - "route": null, - "row_format": "Dynamic", - "rows_threshold_for_grid_search": 0, - "search_fields": null, - "sender_field": null, - "sender_name_field": null, - "show_name_in_global_search": 0, - "show_preview_popup": 1, - "show_title_field_in_link": 0, - "smallicon": null, - "sort_field": "modified", - "sort_order": "DESC", - "states": [], - "subject": null, - "subject_field": null, - "tag_fields": null, - "timeline_field": null, - "title_field": null, - "track_changes": 0, - "track_seen": 0, - "track_views": 0, - "translated_doctype": 0, - "website_search_field": null - }, - { - "_assign": null, - "_comments": null, - "_last_update": null, - "_liked_by": null, - "_user_tags": null, - "actions": [], - "allow_auto_repeat": 0, - "allow_copy": 0, - "allow_events_in_timeline": 0, - "allow_guest_to_view": 0, - "allow_import": 0, - "allow_rename": 0, - "app": null, - "autoname": null, - "beta": 0, - "color": null, - "colour": null, - "custom": 0, - "default_email_template": null, - "default_print_format": null, - "default_view": null, - "description": null, - "docstatus": 0, - "doctype": "DocType", - "document_type": null, - "documentation": null, - "editable_grid": 1, - "email_append_to": 0, - "engine": "InnoDB", - "fields": [ - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "payment_gateway", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Payment Gateway", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Payment Gateway", - "parent": "Payment Gateway Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "Email", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "payment_channel", - "fieldtype": "Select", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Payment Channel", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "\nEmail\nPhone", - "parent": "Payment Gateway Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "company", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Company", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Company", - "parent": "Payment Gateway Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 1, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 1, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "is_default", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Is Default", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Gateway Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break_4", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Gateway Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "payment_account", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Payment Account", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Account", - "parent": "Payment Gateway Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": "payment_account.account_currency", - "fetch_if_empty": 0, - "fieldname": "currency", - "fieldtype": "Read Only", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Currency", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Gateway Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval: doc.payment_channel !== \"Phone\"", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "payment_request_message", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Gateway Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "Please click on the link below to make your payment", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "message", - "fieldtype": "Small Text", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Default Payment Request Message", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Payment Gateway Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "message_examples", - "fieldtype": "HTML", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Message Examples", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Message Example
\n\n<p>Dear {{ doc.contact_person }},</p>\n\n<p>Requesting payment for {{ doc.doctype }}, {{ doc.name }} for {{ doc.grand_total }}.</p>\n\n<a href=\"{{ payment_url }}\"> click here to pay </a>\n\n
\n", - "parent": "Payment Gateway Account", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - } - ], - "force_re_route_to_default_view": 0, - "grid_page_length": 0, - "has_web_view": 0, - "hide_toolbar": 0, - "icon": null, - "image_field": null, - "in_create": 0, - "index_web_pages_for_search": 1, - "is_calendar_and_gantt": 0, - "is_published_field": null, - "is_submittable": 0, - "is_tree": 0, - "is_virtual": 0, - "issingle": 0, - "istable": 0, - "links": [], - "make_attachments_public": 0, - "max_attachments": 0, - "menu_index": null, - "migration_hash": "572c73571fd0c3a0c0d80998262c6672", - "modified": "2026-05-17 05:46:49.092060", - "module": "Accounts", - "name": "Payment Gateway Account", - "naming_rule": null, - "nsm_parent_field": null, - "parent_node": null, - "permissions": [ - { - "amend": 0, - "cancel": 0, - "create": 1, - "delete": 1, - "email": 1, - "export": 1, - "if_owner": 0, - "import": 0, - "match": null, - "parent": "Payment Gateway Account", - "parentfield": "permissions", - "parenttype": "DocType", - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "Accounts Manager", - "select": 0, - "share": 1, - "submit": 0, - "write": 1 - } - ], - "print_outline": null, - "protect_attached_files": 0, - "queue_in_background": 0, - "quick_entry": 0, - "read_only": 0, - "recipient_account_field": null, - "restrict_to_domain": null, - "route": null, - "row_format": "Dynamic", - "rows_threshold_for_grid_search": 0, - "search_fields": null, - "sender_field": null, - "sender_name_field": null, - "show_name_in_global_search": 0, - "show_preview_popup": 0, - "show_title_field_in_link": 0, - "smallicon": null, - "sort_field": "modified", - "sort_order": "DESC", - "states": [], - "subject": null, - "subject_field": null, - "tag_fields": null, - "timeline_field": null, - "title_field": null, - "track_changes": 0, - "track_seen": 0, - "track_views": 0, - "translated_doctype": 0, - "website_search_field": null - }, - { - "_assign": null, - "_comments": null, - "_last_update": null, - "_liked_by": null, - "_user_tags": null, - "actions": [], - "allow_auto_repeat": 0, - "allow_copy": 0, - "allow_events_in_timeline": 0, - "allow_guest_to_view": 0, - "allow_import": 1, - "allow_rename": 1, - "app": null, - "autoname": "field:short_name", - "beta": 0, - "color": null, - "colour": null, - "custom": 0, - "default_email_template": null, - "default_print_format": null, - "default_view": null, - "description": "Manufacturers used in Items", - "docstatus": 0, - "doctype": "DocType", - "document_type": "Setup", - "documentation": null, - "editable_grid": 0, - "email_append_to": 0, - "engine": "InnoDB", - "fields": [ - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": "Limited to 12 characters", - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "short_name", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Short Name", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Manufacturer", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 1, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "full_name", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Full Name", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Manufacturer", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "website", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Website", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Manufacturer", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "country", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Country", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Country", - "parent": "Manufacturer", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "logo", - "fieldtype": "Attach Image", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Logo", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Manufacturer", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval:!doc.__islocal", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "address_contacts", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Address and Contacts", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "fa fa-map-marker", - "parent": "Manufacturer", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "address_html", - "fieldtype": "HTML", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Address HTML", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Manufacturer", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break_8", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Manufacturer", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "contact_html", - "fieldtype": "HTML", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Contact HTML", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Manufacturer", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "section_break_10", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Manufacturer", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "notes", - "fieldtype": "Small Text", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Notes", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Manufacturer", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - } - ], - "force_re_route_to_default_view": 0, - "grid_page_length": 0, - "has_web_view": 0, - "hide_toolbar": 0, - "icon": "fa fa-certificate", - "image_field": null, - "in_create": 0, - "index_web_pages_for_search": 0, - "is_calendar_and_gantt": 0, - "is_published_field": null, - "is_submittable": 0, - "is_tree": 0, - "is_virtual": 0, - "issingle": 0, - "istable": 0, - "links": [], - "make_attachments_public": 0, - "max_attachments": 0, - "menu_index": null, - "migration_hash": "572c73571fd0c3a0c0d80998262c6672", - "modified": "2026-05-17 05:46:49.162985", - "module": "Stock", - "name": "Manufacturer", - "naming_rule": null, - "nsm_parent_field": null, - "parent_node": null, - "permissions": [ - { - "amend": 0, - "cancel": 0, - "create": 1, - "delete": 1, - "email": 1, - "export": 1, - "if_owner": 0, - "import": 0, - "match": null, - "parent": "Manufacturer", - "parentfield": "permissions", - "parenttype": "DocType", - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "Stock Manager", - "select": 0, - "share": 1, - "submit": 0, - "write": 1 - }, - { - "amend": 0, - "cancel": 0, - "create": 0, - "delete": 0, - "email": 1, - "export": 1, - "if_owner": 0, - "import": 0, - "match": null, - "parent": "Manufacturer", - "parentfield": "permissions", - "parenttype": "DocType", - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "Stock User", - "select": 0, - "share": 1, - "submit": 0, - "write": 0 - } - ], - "print_outline": null, - "protect_attached_files": 0, - "queue_in_background": 0, - "quick_entry": 0, - "read_only": 0, - "recipient_account_field": null, - "restrict_to_domain": null, - "route": null, - "row_format": "Dynamic", - "rows_threshold_for_grid_search": 0, - "search_fields": "short_name, full_name", - "sender_field": null, - "sender_name_field": null, - "show_name_in_global_search": 1, - "show_preview_popup": 0, - "show_title_field_in_link": 0, - "smallicon": null, - "sort_field": "modified", - "sort_order": "DESC", - "states": [], - "subject": null, - "subject_field": null, - "tag_fields": null, - "timeline_field": null, - "title_field": "short_name", - "track_changes": 0, - "track_seen": 0, - "track_views": 0, - "translated_doctype": 0, - "website_search_field": null - }, - { - "_assign": null, - "_comments": null, - "_last_update": null, - "_liked_by": null, - "_user_tags": null, - "actions": [], - "allow_auto_repeat": 0, - "allow_copy": 0, - "allow_events_in_timeline": 0, - "allow_guest_to_view": 0, - "allow_import": 0, - "allow_rename": 0, - "app": null, - "autoname": "hash", - "beta": 0, - "color": null, - "colour": null, - "custom": 0, - "default_email_template": null, - "default_print_format": null, - "default_view": null, - "description": null, - "docstatus": 0, - "doctype": "DocType", - "document_type": "", - "documentation": null, - "editable_grid": 1, - "email_append_to": 0, - "engine": "InnoDB", - "fields": [ - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "material_request", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Material Request", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": "prevdoc_docname", - "oldfieldtype": "Data", - "options": "Material Request", - "parent": "Production Plan Material Request", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": "150px", - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": "150px" - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "col_break1", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Production Plan Material Request", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "material_request_date", - "fieldtype": "Date", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Material Request Date", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": "document_date", - "oldfieldtype": "Date", - "options": "", - "parent": "Production Plan Material Request", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": "120px", - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": "120px" - } - ], - "force_re_route_to_default_view": 0, - "grid_page_length": 0, - "has_web_view": 0, - "hide_toolbar": 0, - "icon": null, - "image_field": null, - "in_create": 0, - "index_web_pages_for_search": 0, - "is_calendar_and_gantt": 0, - "is_published_field": null, - "is_submittable": 0, - "is_tree": 0, - "is_virtual": 0, - "issingle": 0, - "istable": 1, - "links": [], - "make_attachments_public": 0, - "max_attachments": 0, - "menu_index": null, - "migration_hash": "572c73571fd0c3a0c0d80998262c6672", - "modified": "2026-05-17 05:46:49.219064", - "module": "Manufacturing", - "name": "Production Plan Material Request", - "naming_rule": null, - "nsm_parent_field": null, - "parent_node": null, - "permissions": [], - "print_outline": null, - "protect_attached_files": 0, - "queue_in_background": 0, - "quick_entry": 0, - "read_only": 0, - "recipient_account_field": null, - "restrict_to_domain": null, - "route": null, - "row_format": "Dynamic", - "rows_threshold_for_grid_search": 0, - "search_fields": null, - "sender_field": null, - "sender_name_field": null, - "show_name_in_global_search": 0, - "show_preview_popup": 0, - "show_title_field_in_link": 0, - "smallicon": null, - "sort_field": "modified", - "sort_order": "ASC", - "states": [], - "subject": null, - "subject_field": null, - "tag_fields": null, - "timeline_field": null, - "title_field": null, - "track_changes": 0, - "track_seen": 0, - "track_views": 0, - "translated_doctype": 0, - "website_search_field": null - }, - { - "_assign": null, - "_comments": null, - "_last_update": null, - "_liked_by": null, - "_user_tags": null, - "actions": [], - "allow_auto_repeat": 0, - "allow_copy": 0, - "allow_events_in_timeline": 0, - "allow_guest_to_view": 0, - "allow_import": 1, - "allow_rename": 0, - "app": null, - "autoname": "hash", - "beta": 0, - "color": null, - "colour": null, - "custom": 0, - "default_email_template": null, - "default_print_format": null, - "default_view": null, - "description": null, - "docstatus": 0, - "doctype": "DocType", - "document_type": "Setup", - "documentation": null, - "editable_grid": 0, - "email_append_to": 0, - "engine": "InnoDB", - "fields": [ - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "contributed", - "fieldtype": "Check", - "hidden": 1, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Contributed", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Translation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "language", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Language", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Language", - "parent": "Translation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 1, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "section_break_4", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Translation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": "If your data is in HTML, please copy paste the exact HTML code with the tags.", - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "source_text", - "fieldtype": "Code", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Source Text", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Translation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "context", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Context", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Translation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break_6", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Translation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "translated_text", - "fieldtype": "Code", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Translated Text", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Translation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "section_break_6", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Translation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "doc.contributed", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "contribution_status", - "fieldtype": "Select", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Contribution Status", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "\nPending\nVerified\nRejected", - "parent": "Translation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "contribution_docname", - "fieldtype": "Data", - "hidden": 1, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Contribution Document Name", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Translation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - } - ], - "force_re_route_to_default_view": 0, - "grid_page_length": 0, - "has_web_view": 0, - "hide_toolbar": 0, - "icon": null, - "image_field": null, - "in_create": 0, - "index_web_pages_for_search": 0, - "is_calendar_and_gantt": 0, - "is_published_field": null, - "is_submittable": 0, - "is_tree": 0, - "is_virtual": 0, - "issingle": 0, - "istable": 0, - "links": [], - "make_attachments_public": 0, - "max_attachments": 0, - "menu_index": null, - "migration_hash": "572c73571fd0c3a0c0d80998262c6672", - "modified": "2026-05-17 05:46:49.290494", - "module": "Core", - "name": "Translation", - "naming_rule": "Random", - "nsm_parent_field": null, - "parent_node": null, - "permissions": [ - { - "amend": 0, - "cancel": 0, - "create": 1, - "delete": 1, - "email": 1, - "export": 1, - "if_owner": 0, - "import": 0, - "match": null, - "parent": "Translation", - "parentfield": "permissions", - "parenttype": "DocType", - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "System Manager", - "select": 0, - "share": 1, - "submit": 0, - "write": 1 - }, - { - "amend": 0, - "cancel": 0, - "create": 1, - "delete": 1, - "email": 1, - "export": 1, - "if_owner": 0, - "import": 0, - "match": null, - "parent": "Translation", - "parentfield": "permissions", - "parenttype": "DocType", - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "Translator", - "select": 0, - "share": 1, - "submit": 0, - "write": 1 - } - ], - "print_outline": null, - "protect_attached_files": 0, - "queue_in_background": 0, - "quick_entry": 0, - "read_only": 0, - "recipient_account_field": null, - "restrict_to_domain": null, - "route": null, - "row_format": "Dynamic", - "rows_threshold_for_grid_search": 0, - "search_fields": null, - "sender_field": null, - "sender_name_field": null, - "show_name_in_global_search": 0, - "show_preview_popup": 0, - "show_title_field_in_link": 0, - "smallicon": null, - "sort_field": "modified", - "sort_order": "DESC", - "states": [], - "subject": null, - "subject_field": null, - "tag_fields": null, - "timeline_field": null, - "title_field": "source_text", - "track_changes": 1, - "track_seen": 0, - "track_views": 0, - "translated_doctype": 0, - "website_search_field": null - }, - { - "_assign": null, - "_comments": null, - "_last_update": null, - "_liked_by": null, - "_user_tags": null, - "actions": [], - "allow_auto_repeat": 0, - "allow_copy": 0, - "allow_events_in_timeline": 0, - "allow_guest_to_view": 0, - "allow_import": 0, - "allow_rename": 0, - "app": null, - "autoname": null, - "beta": 0, - "color": null, - "colour": null, - "custom": 0, - "default_email_template": null, - "default_print_format": null, - "default_view": null, - "description": null, - "docstatus": 0, - "doctype": "DocType", - "document_type": null, - "documentation": null, - "editable_grid": 0, - "email_append_to": 0, - "engine": "InnoDB", - "fields": [ - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "module_name", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Module Name", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Desktop Icon", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "label", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Label", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Desktop Icon", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "standard", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Standard", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Desktop Icon", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "custom", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Custom", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Desktop Icon", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break_3", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Desktop Icon", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "app", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "App", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Desktop Icon", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "description", - "fieldtype": "Small Text", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Description", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Desktop Icon", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "category", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Category", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Desktop Icon", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "hidden", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Hidden", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Desktop Icon", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "blocked", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Blocked", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Desktop Icon", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "force_show", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Force Show", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Desktop Icon", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "section_break_7", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Desktop Icon", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "type", - "fieldtype": "Select", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 1, - "is_virtual": 0, - "label": "Type", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "module\nlist\nlink\npage\nquery-report", - "parent": "Desktop Icon", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "_doctype", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "_doctype", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "DocType", - "parent": "Desktop Icon", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "_report", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "_report", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Report", - "parent": "Desktop Icon", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "link", - "fieldtype": "Small Text", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Link", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Desktop Icon", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break_10", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Desktop Icon", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "color", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Color", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Desktop Icon", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "icon", - "fieldtype": "Data", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Icon", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Desktop Icon", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "reverse", - "fieldtype": "Check", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Reverse Icon Color", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Desktop Icon", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "idx", - "fieldtype": "Int", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Idx", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Desktop Icon", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - } - ], - "force_re_route_to_default_view": 0, - "grid_page_length": 0, - "has_web_view": 0, - "hide_toolbar": 0, - "icon": null, - "image_field": null, - "in_create": 1, - "index_web_pages_for_search": 0, - "is_calendar_and_gantt": 0, - "is_published_field": null, - "is_submittable": 0, - "is_tree": 0, - "is_virtual": 0, - "issingle": 0, - "istable": 0, - "links": [], - "make_attachments_public": 0, - "max_attachments": 0, - "menu_index": null, - "migration_hash": "572c73571fd0c3a0c0d80998262c6672", - "modified": "2026-05-17 05:46:49.375407", - "module": "Desk", - "name": "Desktop Icon", - "naming_rule": null, - "nsm_parent_field": null, - "parent_node": null, - "permissions": [ - { - "amend": 0, - "cancel": 0, - "create": 1, - "delete": 1, - "email": 1, - "export": 1, - "if_owner": 0, - "import": 0, - "match": null, - "parent": "Desktop Icon", - "parentfield": "permissions", - "parenttype": "DocType", - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "System Manager", - "select": 0, - "share": 1, - "submit": 0, - "write": 1 - } - ], - "print_outline": null, - "protect_attached_files": 0, - "queue_in_background": 0, - "quick_entry": 0, - "read_only": 1, - "recipient_account_field": null, - "restrict_to_domain": null, - "route": null, - "row_format": "Dynamic", - "rows_threshold_for_grid_search": 0, - "search_fields": null, - "sender_field": null, - "sender_name_field": null, - "show_name_in_global_search": 0, - "show_preview_popup": 0, - "show_title_field_in_link": 0, - "smallicon": null, - "sort_field": "modified", - "sort_order": "DESC", - "states": [], - "subject": null, - "subject_field": null, - "tag_fields": null, - "timeline_field": null, - "title_field": "module_name", - "track_changes": 1, - "track_seen": 0, - "track_views": 0, - "translated_doctype": 0, - "website_search_field": null - }, - { - "_assign": null, - "_comments": null, - "_last_update": null, - "_liked_by": null, - "_user_tags": null, - "actions": [], - "allow_auto_repeat": 0, - "allow_copy": 0, - "allow_events_in_timeline": 0, - "allow_guest_to_view": 0, - "allow_import": 1, - "allow_rename": 0, - "app": null, - "autoname": "naming_series:", - "beta": 0, - "color": null, - "colour": null, - "custom": 0, - "default_email_template": null, - "default_print_format": null, - "default_view": null, - "description": null, - "docstatus": 0, - "doctype": "DocType", - "document_type": "Document", - "documentation": null, - "editable_grid": 0, - "email_append_to": 0, - "engine": "InnoDB", - "fields": [ - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "naming_series", - "fieldtype": "Select", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Series", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 1, - "non_negative": 0, - "oldfieldname": "naming_series", - "oldfieldtype": "Select", - "options": "PUR-RFQ-.YYYY.-", - "parent": "Request for Quotation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 1, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 1, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "company", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Company", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": "company", - "oldfieldtype": "Link", - "options": "Company", - "parent": "Request for Quotation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 1, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 1, - "report_hide": 0, - "reqd": 1, - "search_index": 1, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "billing_address", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Company Billing Address", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Address", - "parent": "Request for Quotation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "billing_address_display", - "fieldtype": "Small Text", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Billing Address Details", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Request for Quotation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": "For individual supplier", - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "vendor", - "fieldtype": "Link", - "hidden": 1, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 1, - "is_virtual": 0, - "label": "Supplier", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 1, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Supplier", - "parent": "Request for Quotation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "column_break1", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": "Column Break", - "options": null, - "parent": "Request for Quotation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": "50%", - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": "50%" - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "Today", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "transaction_date", - "fieldtype": "Date", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 1, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Date", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": "transaction_date", - "oldfieldtype": "Date", - "options": null, - "parent": "Request for Quotation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 1, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "schedule_date", - "fieldtype": "Date", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Required Date", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Request for Quotation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "status", - "fieldtype": "Select", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Status", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 1, - "non_negative": 0, - "oldfieldname": "status", - "oldfieldtype": "Select", - "options": "\nDraft\nSubmitted\nCancelled", - "parent": "Request for Quotation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 1, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 1, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": "0", - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "has_unit_price_items", - "fieldtype": "Check", - "hidden": 1, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Has Unit Price Items", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 1, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Request for Quotation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "amended_from", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Amended From", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 1, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Request for Quotation", - "parent": "Request for Quotation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 1, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 1, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "suppliers_section", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Request for Quotation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "suppliers", - "fieldtype": "Table", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Suppliers", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Request for Quotation Supplier", - "parent": "Request for Quotation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 1, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "items_section", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": "Section Break", - "options": "fa fa-shopping-cart", - "parent": "Request for Quotation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "items", - "fieldtype": "Table", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Items", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": "po_details", - "oldfieldtype": "Table", - "options": "Request for Quotation Item", - "parent": "Request for Quotation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval:doc.suppliers.some((item) => item.send_email) && !(doc.docstatus == 1 && !doc.email_template)", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "supplier_response_section", - "fieldtype": "Section Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Email Details", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Request for Quotation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "email_template", - "fieldtype": "Link", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Email Template", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Email Template", - "parent": "Request for Quotation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 1, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": "eval:!doc.docstatus==1", - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "preview", - "fieldtype": "Button", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": "Preview Email", - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Request for Quotation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "col_break_email_1", - "fieldtype": "Column Break", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": null, - "parent": "Request for Quotation", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "placeholder": null, - "precision": null, - "print_hide": 0, - "print_hide_if_no_value": 0, - "print_width": null, - "read_only": 0, - "read_only_depends_on": null, - "remember_last_selected_value": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "show_dashboard": 0, - "show_on_timeline": 0, - "show_preview_popup": 0, - "sort_options": 0, - "translatable": 0, - "trigger": null, - "unique": 0, - "width": null - }, - { - "allow_bulk_edit": 0, - "allow_in_quick_entry": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "collapsible_depends_on": null, - "columns": 0, - "default": null, - "depends_on": null, - "description": null, - "documentation_url": null, - "fetch_from": null, - "fetch_if_empty": 0, - "fieldname": "html_llwp", - "fieldtype": "HTML", - "hidden": 0, - "hide_border": 0, - "hide_days": 0, - "hide_seconds": 0, - "ignore_user_permissions": 0, - "ignore_xss_filter": 0, - "in_filter": 0, - "in_global_search": 0, - "in_list_view": 0, - "in_preview": 0, - "in_standard_filter": 0, - "is_virtual": 0, - "label": null, - "length": 0, - "link_filters": null, - "make_attachment_public": 0, - "mandatory_depends_on": null, - "max_height": null, - "no_copy": 0, - "non_negative": 0, - "oldfieldname": null, - "oldfieldtype": null, - "options": "Message Example
\n\n<p> Thank You for being a part of {{ doc.company }}! We hope you are enjoying the service.</p>\n\n<p> Please find enclosed the E Bill statement. The outstanding amount is {{ doc.grand_total }}.</p>\n\n<p> We don't want you to be spending time running around in order to pay for your Bill.
After all, life is beautiful and the time you have in hand should be spent to enjoy it!
So here are our little ways to help you get more time for life! </p>\n\n<a href=\"{{ payment_url }}\"> click here to pay </a>\n\n
In your Email Template, you can use the following special variables:\n
\n{{ update_password_link }}: A link where your supplier can set a new password to log into your portal.\n {{ portal_link }}: A link to this RFQ in your supplier portal.\n {{ supplier_name }}: The company name of your supplier.\n {{ contact.salutation }} {{ contact.last_name }}: The contact person of your supplier.\n {{ user_fullname }}: Your full name.\n Apart from these, you can access all values in this RFQ, like {{ message_for_supplier }} or {{ terms }}.