commit 3a3c01194e4d21f0e718e339f5402d3ec4dbf6f3 Author: Westech Admin Date: Sat May 16 23:35:51 2026 +0000 Initial commit: fixtures, hooks, doctype events, API, and JS diff --git a/README.md b/README.md new file mode 100644 index 0000000..39602fc --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Westech R2 + +R2 Tracking integration for Westech Recyclers ERPNext instance. diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..f47ffaf --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +frappe diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..381d4f6 --- /dev/null +++ b/setup.py @@ -0,0 +1,16 @@ +from setuptools import setup, find_packages + +with open("requirements.txt") as f: + install_requires = f.read().strip().split("\n") + +setup( + name="westech_r2", + version="0.0.1", + description="R2 Tracking for Westech Recyclers", + author="Westech", + author_email="", + packages=find_packages(), + zip_safe=False, + include_package_data=True, + install_requires=install_requires, +) diff --git a/westech_r2.egg-info/PKG-INFO b/westech_r2.egg-info/PKG-INFO new file mode 100644 index 0000000..a149ef1 --- /dev/null +++ b/westech_r2.egg-info/PKG-INFO @@ -0,0 +1,10 @@ +Metadata-Version: 2.4 +Name: westech_r2 +Version: 0.0.1 +Summary: R2 Tracking for Westech Recyclers +Author: Westech +Author-email: +Requires-Dist: frappe +Dynamic: author +Dynamic: requires-dist +Dynamic: summary diff --git a/westech_r2.egg-info/SOURCES.txt b/westech_r2.egg-info/SOURCES.txt new file mode 100644 index 0000000..92808c7 --- /dev/null +++ b/westech_r2.egg-info/SOURCES.txt @@ -0,0 +1,12 @@ +README.md +setup.py +westech_r2/__init__.py +westech_r2/hooks.py +westech_r2.egg-info/PKG-INFO +westech_r2.egg-info/SOURCES.txt +westech_r2.egg-info/dependency_links.txt +westech_r2.egg-info/not-zip-safe +westech_r2.egg-info/requires.txt +westech_r2.egg-info/top_level.txt +westech_r2/config/__init__.py +westech_r2/config/desktop.py \ No newline at end of file diff --git a/westech_r2.egg-info/dependency_links.txt b/westech_r2.egg-info/dependency_links.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/westech_r2.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/westech_r2.egg-info/not-zip-safe b/westech_r2.egg-info/not-zip-safe new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/westech_r2.egg-info/not-zip-safe @@ -0,0 +1 @@ + diff --git a/westech_r2.egg-info/requires.txt b/westech_r2.egg-info/requires.txt new file mode 100644 index 0000000..f47ffaf --- /dev/null +++ b/westech_r2.egg-info/requires.txt @@ -0,0 +1 @@ +frappe diff --git a/westech_r2.egg-info/top_level.txt b/westech_r2.egg-info/top_level.txt new file mode 100644 index 0000000..7d57e71 --- /dev/null +++ b/westech_r2.egg-info/top_level.txt @@ -0,0 +1 @@ +westech_r2 diff --git a/westech_r2/__init__.py b/westech_r2/__init__.py new file mode 100644 index 0000000..f102a9c --- /dev/null +++ b/westech_r2/__init__.py @@ -0,0 +1 @@ +__version__ = "0.0.1" diff --git a/westech_r2/__pycache__/__init__.cpython-312.pyc b/westech_r2/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000..0b2fbe3 Binary files /dev/null and b/westech_r2/__pycache__/__init__.cpython-312.pyc differ diff --git a/westech_r2/__pycache__/hooks.cpython-312.pyc b/westech_r2/__pycache__/hooks.cpython-312.pyc new file mode 100644 index 0000000..ecb5164 Binary files /dev/null and b/westech_r2/__pycache__/hooks.cpython-312.pyc differ diff --git a/westech_r2/api/__init__.py b/westech_r2/api/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/westech_r2/api/install_ssh.py b/westech_r2/api/install_ssh.py new file mode 100644 index 0000000..26fb827 --- /dev/null +++ b/westech_r2/api/install_ssh.py @@ -0,0 +1,6 @@ +import frappe + +@frappe.whitelist() +def install_ssh(): + """Placeholder for SSH install functionality.""" + return {"success": True, "message": "SSH install endpoint ready"} diff --git a/westech_r2/api/optimize_routes.py b/westech_r2/api/optimize_routes.py new file mode 100644 index 0000000..cfe97d4 --- /dev/null +++ b/westech_r2/api/optimize_routes.py @@ -0,0 +1,109 @@ +import json +import re +import frappe + +@frappe.whitelist() +def optimize_routes(pickup_date=None): + """Optimize routes for all trucks on a given date.""" + if not pickup_date: + pickup_date = frappe.utils.today() + + trucks = frappe.get_list("Truck Profile", + filters={"active": 1}, + fields=["name", "truck_name", "total_slots", "weight_capacity"] + ) + + pickups = frappe.get_list("Scheduled Pickup", + filters={ + "pickup_date": pickup_date, + "shipment_type": "Truck", + "truck_profile": ["is", "not set"] + }, + fields=["name", "customer_number", "company_name", "estimated_items", + "estimated_weight", "gaylord_count", "gaylord_sizes", "slots_needed", + "latitude", "longitude"], + order_by="stop_order asc" + ) + + for pickup in pickups: + if not pickup.slots_needed and pickup.gaylord_sizes: + pickup.slots_needed = _calculate_slots(pickup.gaylord_sizes) + elif not pickup.slots_needed: + pickup.slots_needed = pickup.gaylord_count or 1 + + pickups.sort(key=lambda x: x.slots_needed or 0, reverse=True) + + routes = {} + for truck in trucks: + routes[truck.name] = { + "truck": truck, + "pickups": [], + "used_slots": 0, + "used_weight": 0 + } + + unassigned = [] + + for pickup in pickups: + assigned = False + for truck_name, route in routes.items(): + truck = route["truck"] + slots = pickup.slots_needed or 0 + weight = float(pickup.estimated_weight or 0) + + if route["used_slots"] + slots <= truck.total_slots: + if truck.weight_capacity and route["used_weight"] + weight <= truck.weight_capacity: + route["pickups"].append(pickup) + route["used_slots"] += slots + route["used_weight"] += weight + assigned = True + frappe.db.set_value("Scheduled Pickup", pickup.name, "truck_profile", truck_name) + break + elif not truck.weight_capacity: + route["pickups"].append(pickup) + route["used_slots"] += slots + route["used_weight"] += weight + assigned = True + frappe.db.set_value("Scheduled Pickup", pickup.name, "truck_profile", truck_name) + break + if not assigned: + unassigned.append(pickup) + + for truck_name, route in routes.items(): + if route["pickups"]: + route["pickups"].sort(key=lambda p: (float(p.latitude or 0), float(p.longitude or 0))) + for i, pickup in enumerate(route["pickups"], 1): + frappe.db.set_value("Scheduled Pickup", pickup.name, "stop_order", i) + + frappe.db.commit() + + return { + "success": True, + "date": pickup_date, + "trucks_assigned": len([r for r in routes.values() if r["pickups"]]), + "total_pickups": len(pickups), + "unassigned": len(unassigned), + "routes": { + truck_name: { + "truck_name": route["truck"].truck_name, + "slots_used": route["used_slots"], + "slots_total": route["truck"].total_slots, + "weight_used": route["used_weight"], + "weight_capacity": route["truck"].weight_capacity, + "stops": len(route["pickups"]), + "pickups": [{"name": p.name, "company": p.company_name, "slots": p.slots_needed} for p in route["pickups"]] + } + for truck_name, route in routes.items() if route["pickups"] + } + } + +def _calculate_slots(gaylord_sizes_text): + if not gaylord_sizes_text: + return 0 + size_map = {"small": 1, "medium": 2, "large": 3} + total = 0 + matches = re.findall(r'(\d+)\s*(\w+)', gaylord_sizes_text.lower()) + for count, size in matches: + slots = size_map.get(size, 1) + total += int(count) * slots + return total or 1 diff --git a/westech_r2/config/__init__.py b/westech_r2/config/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/westech_r2/config/desktop.py b/westech_r2/config/desktop.py new file mode 100644 index 0000000..7bcc12f --- /dev/null +++ b/westech_r2/config/desktop.py @@ -0,0 +1,4 @@ +from frappe import _ + +def get_data(): + return [] diff --git a/westech_r2/doctype/__init__.py b/westech_r2/doctype/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/westech_r2/doctype/load/__init__.py b/westech_r2/doctype/load/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/westech_r2/doctype/load/load.py b/westech_r2/doctype/load/load.py new file mode 100644 index 0000000..c4d24f8 --- /dev/null +++ b/westech_r2/doctype/load/load.py @@ -0,0 +1,25 @@ +import frappe + +def calculate_totals(doc, method): + """Auto-calculate Load totals from child tables.""" + total_devices = 0 + total_weight = 0.0 + + for item in doc.get("material_items", []): + total_devices += item.total_count or 0 + total_weight += item.weight or 0.0 + + doc.total_devices = total_devices + doc.total_weight = total_weight + + total_hdd_wiped = 0 + total_hdd_degaussed = 0 + + for hdd in doc.get("hdd_serials", []): + if hdd.wiped: + total_hdd_wiped += 1 + if hdd.degaussed or hdd.shredded: + total_hdd_degaussed += 1 + + doc.total_hdd_wiped = total_hdd_wiped + doc.total_hdd_degaussed = total_hdd_degaussed diff --git a/westech_r2/doctype/pallet/__init__.py b/westech_r2/doctype/pallet/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/westech_r2/doctype/pallet/pallet.py b/westech_r2/doctype/pallet/pallet.py new file mode 100644 index 0000000..150b97c --- /dev/null +++ b/westech_r2/doctype/pallet/pallet.py @@ -0,0 +1,7 @@ +import frappe + +def update_serial_nos(doc, method): + """Update serial nos linked to this pallet.""" + if doc.pallet_number: + serials = frappe.get_all("Serial No", filters={"pallet": doc.pallet_number}, fields=["name"]) + doc.db_set("serial_count", len(serials)) diff --git a/westech_r2/doctype/scheduled_pickup/__init__.py b/westech_r2/doctype/scheduled_pickup/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/westech_r2/doctype/scheduled_pickup/scheduled_pickup.py b/westech_r2/doctype/scheduled_pickup/scheduled_pickup.py new file mode 100644 index 0000000..884db2e --- /dev/null +++ b/westech_r2/doctype/scheduled_pickup/scheduled_pickup.py @@ -0,0 +1,8 @@ +import frappe + +def set_title(doc, method): + """Set title from company name and pickup date.""" + if doc.company_name and doc.pickup_date: + doc.title = f"{doc.company_name} - {doc.pickup_date}" + elif doc.company_name: + doc.title = doc.company_name diff --git a/westech_r2/fixtures/custom_doctype.json b/westech_r2/fixtures/custom_doctype.json new file mode 100644 index 0000000..20811ce --- /dev/null +++ b/westech_r2/fixtures/custom_doctype.json @@ -0,0 +1,13188 @@ +[ + { + "name": "Pallet", + "search_fields": "pallet_number,supplier,description", + "issingle": 0, + "is_virtual": 0, + "is_tree": 0, + "istable": 0, + "editable_grid": 1, + "track_changes": 0, + "module": "Westech R2", + "restrict_to_domain": null, + "app": null, + "autoname": "pallet_number", + "naming_rule": "By fieldname", + "title_field": "pallet_number", + "image_field": null, + "timeline_field": null, + "sort_field": "modified", + "sort_order": "DESC", + "description": null, + "colour": null, + "read_only": 0, + "in_create": 0, + "menu_index": null, + "parent_node": null, + "smallicon": null, + "allow_copy": 0, + "allow_rename": 1, + "allow_import": 0, + "hide_toolbar": 0, + "track_seen": 0, + "max_attachments": 0, + "print_outline": null, + "document_type": null, + "icon": null, + "color": null, + "tag_fields": null, + "subject": null, + "_last_update": null, + "engine": "InnoDB", + "default_print_format": null, + "is_submittable": 0, + "show_name_in_global_search": 0, + "custom": 1, + "beta": 0, + "has_web_view": 0, + "allow_guest_to_view": 0, + "route": null, + "is_published_field": null, + "website_search_field": null, + "email_append_to": 0, + "subject_field": null, + "sender_field": null, + "show_title_field_in_link": 0, + "migration_hash": "0c456b6329865720ff9fb39ed1cdf85a", + "translated_doctype": 0, + "is_calendar_and_gantt": 0, + "quick_entry": 0, + "grid_page_length": 50, + "rows_threshold_for_grid_search": 20, + "track_views": 0, + "queue_in_background": 0, + "documentation": null, + "nsm_parent_field": null, + "allow_events_in_timeline": 0, + "allow_auto_repeat": 0, + "make_attachments_public": 0, + "default_view": null, + "force_re_route_to_default_view": 0, + "show_preview_popup": 0, + "default_email_template": null, + "sender_name_field": null, + "recipient_account_field": null, + "protect_attached_files": 0, + "index_web_pages_for_search": 1, + "row_format": "Dynamic", + "doctype": "DocType", + "fields": [ + { + "name": "adkd8id4s9", + "fieldname": "pallet_number", + "label": "Pallet Number", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 1, + "bold": 1, + "in_global_search": 0, + "collapsible": 0, + "unique": 1, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 1, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adk6ormb1o", + "fieldname": "date_info", + "label": "Dates", + "oldfieldname": null, + "fieldtype": "Section Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adk64cgdn1", + "fieldname": "date_reserved", + "label": "Date Reserved", + "oldfieldname": null, + "fieldtype": "Date", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 1, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adkd0aldrp", + "fieldname": "received_date", + "label": "Received Date", + "oldfieldname": null, + "fieldtype": "Date", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adkkd8kuv1", + "fieldname": "finish_date", + "label": "Finish Date", + "oldfieldname": null, + "fieldtype": "Date", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adk29c4mo3", + "fieldname": "source_info", + "label": "Source", + "oldfieldname": null, + "fieldtype": "Section Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adksu7tjtu", + "fieldname": "supplier", + "label": "Supplier", + "oldfieldname": null, + "fieldtype": "Link", + "oldfieldtype": null, + "options": "Supplier", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 1, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adkuhc2jeg", + "fieldname": "inbound_weight", + "label": "Inbound Weight/Load", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adk9ms5nmg", + "fieldname": "tester", + "label": "Tester", + "oldfieldname": null, + "fieldtype": "Link", + "oldfieldtype": null, + "options": "Employee", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 1, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adk6rhub3d", + "fieldname": "description", + "label": "Description", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adkb5nso89", + "fieldname": "sales_info", + "label": "Sales", + "oldfieldname": null, + "fieldtype": "Section Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adklsim99u", + "fieldname": "qty_to_sales", + "label": "Qty to Sales", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 1, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adk4vtm46q", + "fieldname": "weight_to_sales", + "label": "Weight to Sales (lbs)", + "oldfieldname": null, + "fieldtype": "Float", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 1, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adkqfj99h8", + "fieldname": "notes_section", + "label": "Notes", + "oldfieldname": null, + "fieldtype": "Section Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adkgq8qphb", + "fieldname": "notes", + "label": "Notes", + "oldfieldname": null, + "fieldtype": "Small Text", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adk6o6ak4e", + "fieldname": "company", + "label": "Company", + "oldfieldname": null, + "fieldtype": "Link", + "oldfieldtype": null, + "options": "Company", + "search_index": 0, + "show_dashboard": 0, + "hidden": 1, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "Westech Recyclers", + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adk8hrrvu4", + "fieldname": "serials_section", + "label": "Serial Numbers", + "oldfieldname": null, + "fieldtype": "Section Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adkadkb64n", + "fieldname": "serials", + "label": "Serial Numbers", + "oldfieldname": null, + "fieldtype": "Table", + "oldfieldtype": null, + "options": "Pallet Serial", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "j45gp0tnca", + "fieldname": "status", + "label": "Status", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "Received\nSorting\nProcessing\nComplete\nShipped", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 1, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "Received", + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 1, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "u68ge9gif3", + "fieldname": "company_name", + "label": "Company Name", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "u68b92pkuj", + "fieldname": "red_r2", + "label": "RED / R2", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "\nRED\nR2\nBoth\nNeither", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "u68ctnf8k9", + "fieldname": "total_items", + "label": "Total Items", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "0", + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "u689ktqs1a", + "fieldname": "weights", + "label": "Weights", + "oldfieldname": null, + "fieldtype": "Small Text", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "u68khfndr5", + "fieldname": "pickup", + "label": "Pickup / Drop-off", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "\nPickup\nDrop-off", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "u68rnvu5gm", + "fieldname": "data_status", + "label": "Data Status", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "\nActive\nCleared\nN/A", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "u68pof8b5s", + "fieldname": "barcode", + "label": "Barcode", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "u68f83cf2g", + "fieldname": "num_labels", + "label": "Number of Labels", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "1", + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "u68o44bq2f", + "fieldname": "contact_name", + "label": "Contact Name", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "u68kpacpqp", + "fieldname": "contact_number", + "label": "Contact Number", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "u68q3f20eg", + "fieldname": "contact_email", + "label": "Contact Email", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "u68a2131ud", + "fieldname": "address_line", + "label": "Address", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "u68rpjthpv", + "fieldname": "invoice_check_request", + "label": "Invoice / Check Request", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "u68f4229mp", + "fieldname": "amount", + "label": "Amount", + "oldfieldname": null, + "fieldtype": "Currency", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "0", + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "u688gfmbnt", + "fieldname": "paid_received", + "label": "Paid / Received", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "\nPaid\nReceived\nPending", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "da56slbl1j", + "fieldname": "needs_aor", + "label": "Needs AoR (Agreement of Recycling)", + "oldfieldname": null, + "fieldtype": "Check", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "0", + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "da519e893f", + "fieldname": "needs_cod", + "label": "Needs COD (Certificate of Destruction)", + "oldfieldname": null, + "fieldtype": "Check", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "0", + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c13qdfeqa9", + "fieldname": "load", + "label": "Load", + "oldfieldname": null, + "fieldtype": "Link", + "oldfieldtype": null, + "options": "Load", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + } + ], + "states": [], + "actions": [], + "links": [], + "permissions": [ + { + "name": "adkfkedegb", + "permlevel": 0, + "role": "System Manager", + "match": null, + "read": 1, + "write": 1, + "create": 1, + "submit": 0, + "cancel": 0, + "delete": 1, + "amend": 0, + "report": 1, + "export": 1, + "import": 0, + "share": 1, + "print": 1, + "email": 1, + "if_owner": 0, + "select": 0, + "doctype": "DocPerm" + }, + { + "name": "adk0gngtcb", + "permlevel": 0, + "role": "Stock Manager", + "match": null, + "read": 1, + "write": 1, + "create": 1, + "submit": 0, + "cancel": 0, + "delete": 1, + "amend": 0, + "report": 1, + "export": 1, + "import": 0, + "share": 1, + "print": 1, + "email": 1, + "if_owner": 0, + "select": 0, + "doctype": "DocPerm" + }, + { + "name": "adkois8c9g", + "permlevel": 0, + "role": "Stock User", + "match": null, + "read": 1, + "write": 1, + "create": 1, + "submit": 0, + "cancel": 0, + "delete": 1, + "amend": 0, + "report": 1, + "export": 1, + "import": 0, + "share": 1, + "print": 1, + "email": 1, + "if_owner": 0, + "select": 0, + "doctype": "DocPerm" + }, + { + "name": "vsp3okadbv", + "permlevel": 0, + "role": "Demo User", + "match": null, + "read": 1, + "write": 1, + "create": 1, + "submit": 0, + "cancel": 0, + "delete": 0, + "amend": 0, + "report": 1, + "export": 1, + "import": 0, + "share": 1, + "print": 1, + "email": 1, + "if_owner": 0, + "select": 0, + "doctype": "DocPerm" + } + ] + }, + { + "name": "Pallet Serial", + "search_fields": null, + "issingle": 0, + "is_virtual": 0, + "is_tree": 0, + "istable": 1, + "editable_grid": 1, + "track_changes": 0, + "module": "Westech R2", + "restrict_to_domain": null, + "app": null, + "autoname": null, + "naming_rule": null, + "title_field": null, + "image_field": null, + "timeline_field": null, + "sort_field": "modified", + "sort_order": "DESC", + "description": null, + "colour": null, + "read_only": 0, + "in_create": 0, + "menu_index": null, + "parent_node": null, + "smallicon": null, + "allow_copy": 0, + "allow_rename": 1, + "allow_import": 0, + "hide_toolbar": 0, + "track_seen": 0, + "max_attachments": 0, + "print_outline": null, + "document_type": null, + "icon": null, + "color": null, + "tag_fields": null, + "subject": null, + "_last_update": null, + "engine": "InnoDB", + "default_print_format": null, + "is_submittable": 0, + "show_name_in_global_search": 0, + "custom": 1, + "beta": 0, + "has_web_view": 0, + "allow_guest_to_view": 0, + "route": null, + "is_published_field": null, + "website_search_field": null, + "email_append_to": 0, + "subject_field": null, + "sender_field": null, + "show_title_field_in_link": 0, + "migration_hash": "7440aecc18a58e5d90644c885d7055dd", + "translated_doctype": 0, + "is_calendar_and_gantt": 0, + "quick_entry": 0, + "grid_page_length": 50, + "rows_threshold_for_grid_search": 20, + "track_views": 0, + "queue_in_background": 0, + "documentation": null, + "nsm_parent_field": null, + "allow_events_in_timeline": 0, + "allow_auto_repeat": 0, + "make_attachments_public": 0, + "default_view": null, + "force_re_route_to_default_view": 0, + "show_preview_popup": 0, + "default_email_template": null, + "sender_name_field": null, + "recipient_account_field": null, + "protect_attached_files": 0, + "index_web_pages_for_search": 1, + "row_format": "Dynamic", + "doctype": "DocType", + "fields": [ + { + "name": "adlk4hq360", + "fieldname": "serial_no", + "label": "Serial No", + "oldfieldname": null, + "fieldtype": "Link", + "oldfieldtype": null, + "options": "Serial No", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 1, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 2, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adlc9pbmvb", + "fieldname": "manufacturer_model", + "label": "Manufacturer / Model", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 2, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 1, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": "serial_no.item_name", + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adl94nr6sr", + "fieldname": "chassis_type", + "label": "Chassis Type", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 1, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 1, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adl332l24m", + "fieldname": "ram", + "label": "RAM", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 1, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 1, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adlgjml12v", + "fieldname": "storage", + "label": "Storage", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 1, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 1, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adlepejr9r", + "fieldname": "eim_link", + "label": "EIM Link", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 1, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + } + ], + "states": [], + "actions": [], + "links": [], + "permissions": [] + }, + { + "name": "Device Condition Report", + "search_fields": null, + "issingle": 0, + "is_virtual": 0, + "is_tree": 0, + "istable": 0, + "editable_grid": 1, + "track_changes": 0, + "module": "Westech R2", + "restrict_to_domain": null, + "app": null, + "autoname": null, + "naming_rule": "Set by user", + "title_field": "item_code", + "image_field": null, + "timeline_field": null, + "sort_field": "modified", + "sort_order": "DESC", + "description": null, + "colour": null, + "read_only": 0, + "in_create": 0, + "menu_index": null, + "parent_node": null, + "smallicon": null, + "allow_copy": 0, + "allow_rename": 1, + "allow_import": 0, + "hide_toolbar": 0, + "track_seen": 0, + "max_attachments": 0, + "print_outline": null, + "document_type": null, + "icon": null, + "color": null, + "tag_fields": null, + "subject": null, + "_last_update": null, + "engine": "InnoDB", + "default_print_format": null, + "is_submittable": 0, + "show_name_in_global_search": 0, + "custom": 1, + "beta": 0, + "has_web_view": 0, + "allow_guest_to_view": 0, + "route": null, + "is_published_field": null, + "website_search_field": null, + "email_append_to": 0, + "subject_field": null, + "sender_field": null, + "show_title_field_in_link": 0, + "migration_hash": "89b111a6d68f5d9d84bbabc492e27bae", + "translated_doctype": 0, + "is_calendar_and_gantt": 0, + "quick_entry": 0, + "grid_page_length": 50, + "rows_threshold_for_grid_search": 20, + "track_views": 0, + "queue_in_background": 0, + "documentation": null, + "nsm_parent_field": null, + "allow_events_in_timeline": 0, + "allow_auto_repeat": 0, + "make_attachments_public": 0, + "default_view": null, + "force_re_route_to_default_view": 0, + "show_preview_popup": 0, + "default_email_template": null, + "sender_name_field": null, + "recipient_account_field": null, + "protect_attached_files": 0, + "index_web_pages_for_search": 1, + "row_format": "Dynamic", + "doctype": "DocType", + "fields": [ + { + "name": "adobqrnlul", + "fieldname": "item_code", + "label": "Item", + "oldfieldname": null, + "fieldtype": "Link", + "oldfieldtype": null, + "options": "Item", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 1, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "ados4sdib3", + "fieldname": "serial_no", + "label": "Serial No", + "oldfieldname": null, + "fieldtype": "Link", + "oldfieldtype": null, + "options": "Serial No", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "ado3g32slg", + "fieldname": "grading_section", + "label": "Grades", + "oldfieldname": null, + "fieldtype": "Section Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adot26d59i", + "fieldname": "functional_grade", + "label": "Functional Grade", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "\nF0\nF1\nF2\nF3\nF4\nF5", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "ado0a45s5i", + "fieldname": "cosmetic_grade", + "label": "Cosmetic Grade", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "\nC0\nC1\nC2\nC3\nC4\nC5\nC6\nC8\nC9\nnot tested", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adosjj3pb6", + "fieldname": "col_break1", + "label": null, + "oldfieldname": null, + "fieldtype": "Column Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adot06d0d8", + "fieldname": "overall_condition", + "label": "Overall Condition", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "Excellent\nGood\nFair\nPoor\nNon-Functional\nUnknown", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "Unknown", + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adobda0vje", + "fieldname": "missing_parts", + "label": "Missing Parts", + "oldfieldname": null, + "fieldtype": "Small Text", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adoiksbdvh", + "fieldname": "condition_section", + "label": "Condition Details", + "oldfieldname": null, + "fieldtype": "Section Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adohlnbilk", + "fieldname": "screen_condition", + "label": "Screen Condition", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "Excellent\nGood\nFair\nPoor\nN/A", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adoqsb7n2n", + "fieldname": "keyboard_condition", + "label": "Keyboard Condition", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "Excellent\nGood\nFair\nPoor\nN/A", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "ado84h97hc", + "fieldname": "case_condition", + "label": "Case Condition", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "Excellent\nGood\nFair\nPoor\nN/A", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adot1b1fdp", + "fieldname": "col_break2", + "label": null, + "oldfieldname": null, + "fieldtype": "Column Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "ado6r90j0q", + "fieldname": "battery_condition", + "label": "Battery Condition", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "Excellent\nGood\nFair\nPoor\nN/A", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adof3suauo", + "fieldname": "touchpad_condition", + "label": "Touchpad Condition", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "Excellent\nGood\nFair\nPoor\nN/A", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "ador59r941", + "fieldname": "camera_condition", + "label": "Camera Condition", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "Excellent\nGood\nFair\nPoor\nN/A", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "ado13jv56h", + "fieldname": "ports_condition", + "label": "Ports Condition", + "oldfieldname": null, + "fieldtype": "Small Text", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "ado4ec3umh", + "fieldname": "packaging", + "label": "Packaging", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "Original Box\nBulk\nNo Packaging", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "ado67cniia", + "fieldname": "notes", + "label": "Notes", + "oldfieldname": null, + "fieldtype": "Small Text", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "ado9hdbjr0", + "fieldname": "security_section", + "label": "Security Checks", + "oldfieldname": null, + "fieldtype": "Section Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adodvjsuko", + "fieldname": "find_my_status", + "label": "Find My Status", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "Clear\nActive\nUnknown", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "Unknown", + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "ado56dbpja", + "fieldname": "mdm_status", + "label": "MDM/Autopilot Status", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "Clear\nActive\nUnknown", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "Unknown", + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adoq16s3k8", + "fieldname": "computrace_status", + "label": "Computrace Status", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "Clear\nActive\nUnknown", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "Unknown", + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "ado4unc51d", + "fieldname": "dep_status", + "label": "DEP Status", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "Clear\nActive\nUnknown", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "Unknown", + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + } + ], + "states": [], + "actions": [], + "links": [], + "permissions": [ + { + "name": "adou2kq4mm", + "permlevel": 0, + "role": "Stock User", + "match": null, + "read": 1, + "write": 1, + "create": 1, + "submit": 0, + "cancel": 0, + "delete": 1, + "amend": 0, + "report": 1, + "export": 1, + "import": 0, + "share": 1, + "print": 1, + "email": 1, + "if_owner": 0, + "select": 0, + "doctype": "DocPerm" + }, + { + "name": "ado5nrb2pg", + "permlevel": 0, + "role": "Stock Manager", + "match": null, + "read": 1, + "write": 1, + "create": 1, + "submit": 0, + "cancel": 0, + "delete": 1, + "amend": 0, + "report": 1, + "export": 1, + "import": 0, + "share": 1, + "print": 1, + "email": 1, + "if_owner": 0, + "select": 0, + "doctype": "DocPerm" + } + ] + }, + { + "name": "Battery Log", + "search_fields": null, + "issingle": 0, + "is_virtual": 0, + "is_tree": 0, + "istable": 0, + "editable_grid": 1, + "track_changes": 0, + "module": "Westech R2", + "restrict_to_domain": null, + "app": null, + "autoname": null, + "naming_rule": "Set by user", + "title_field": "item_code", + "image_field": null, + "timeline_field": null, + "sort_field": "modified", + "sort_order": "DESC", + "description": null, + "colour": null, + "read_only": 0, + "in_create": 0, + "menu_index": null, + "parent_node": null, + "smallicon": null, + "allow_copy": 0, + "allow_rename": 1, + "allow_import": 0, + "hide_toolbar": 0, + "track_seen": 0, + "max_attachments": 0, + "print_outline": null, + "document_type": null, + "icon": null, + "color": null, + "tag_fields": null, + "subject": null, + "_last_update": null, + "engine": "InnoDB", + "default_print_format": null, + "is_submittable": 0, + "show_name_in_global_search": 0, + "custom": 1, + "beta": 0, + "has_web_view": 0, + "allow_guest_to_view": 0, + "route": null, + "is_published_field": null, + "website_search_field": null, + "email_append_to": 0, + "subject_field": null, + "sender_field": null, + "show_title_field_in_link": 0, + "migration_hash": "09ee6ca46e1fbb37964c2f1d581d5522", + "translated_doctype": 0, + "is_calendar_and_gantt": 0, + "quick_entry": 0, + "grid_page_length": 50, + "rows_threshold_for_grid_search": 20, + "track_views": 0, + "queue_in_background": 0, + "documentation": null, + "nsm_parent_field": null, + "allow_events_in_timeline": 0, + "allow_auto_repeat": 0, + "make_attachments_public": 0, + "default_view": null, + "force_re_route_to_default_view": 0, + "show_preview_popup": 0, + "default_email_template": null, + "sender_name_field": null, + "recipient_account_field": null, + "protect_attached_files": 0, + "index_web_pages_for_search": 1, + "row_format": "Dynamic", + "doctype": "DocType", + "fields": [ + { + "name": "adpcptpuef", + "fieldname": "item_code", + "label": "Item", + "oldfieldname": null, + "fieldtype": "Link", + "oldfieldtype": null, + "options": "Item", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 1, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adpl8nq4kr", + "fieldname": "serial_no", + "label": "Serial No", + "oldfieldname": null, + "fieldtype": "Link", + "oldfieldtype": null, + "options": "Serial No", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adph4r8lna", + "fieldname": "battery_section", + "label": "Battery Details", + "oldfieldname": null, + "fieldtype": "Section Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adpuqst6rv", + "fieldname": "battery_health", + "label": "Battery Health %", + "oldfieldname": null, + "fieldtype": "Percent", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adpu54dmbn", + "fieldname": "charge_cycles", + "label": "Charge Cycles", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adp2qj7om9", + "fieldname": "battery_status", + "label": "Battery Status", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "Good\nFair\nPoor\nReplace\nUnknown", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "Unknown", + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adpc971kkg", + "fieldname": "col_break1", + "label": null, + "oldfieldname": null, + "fieldtype": "Column Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adpvocqrsr", + "fieldname": "full_charge_capacity", + "label": "Full Charge Capacity", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adpu9g8jdi", + "fieldname": "design_capacity", + "label": "Design Capacity", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adp9gjcnic", + "fieldname": "chemistry", + "label": "Chemistry", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adpmgbvt05", + "fieldname": "battery_manufacturer", + "label": "Battery Manufacturer", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adp720aik7", + "fieldname": "battery_model", + "label": "Battery Model", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adpkksm0k4", + "fieldname": "test_date", + "label": "Test Date", + "oldfieldname": null, + "fieldtype": "Date", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + } + ], + "states": [], + "actions": [], + "links": [], + "permissions": [ + { + "name": "adppibfrcp", + "permlevel": 0, + "role": "Stock User", + "match": null, + "read": 1, + "write": 1, + "create": 1, + "submit": 0, + "cancel": 0, + "delete": 1, + "amend": 0, + "report": 1, + "export": 1, + "import": 0, + "share": 1, + "print": 1, + "email": 1, + "if_owner": 0, + "select": 0, + "doctype": "DocPerm" + }, + { + "name": "adp6p9imf9", + "permlevel": 0, + "role": "Stock Manager", + "match": null, + "read": 1, + "write": 1, + "create": 1, + "submit": 0, + "cancel": 0, + "delete": 1, + "amend": 0, + "report": 1, + "export": 1, + "import": 0, + "share": 1, + "print": 1, + "email": 1, + "if_owner": 0, + "select": 0, + "doctype": "DocPerm" + } + ] + }, + { + "name": "Device Erasure Log", + "search_fields": null, + "issingle": 0, + "is_virtual": 0, + "is_tree": 0, + "istable": 0, + "editable_grid": 1, + "track_changes": 0, + "module": "Westech R2", + "restrict_to_domain": null, + "app": null, + "autoname": null, + "naming_rule": "Set by user", + "title_field": "item_code", + "image_field": null, + "timeline_field": null, + "sort_field": "modified", + "sort_order": "DESC", + "description": null, + "colour": null, + "read_only": 0, + "in_create": 0, + "menu_index": null, + "parent_node": null, + "smallicon": null, + "allow_copy": 0, + "allow_rename": 1, + "allow_import": 0, + "hide_toolbar": 0, + "track_seen": 0, + "max_attachments": 0, + "print_outline": null, + "document_type": null, + "icon": null, + "color": null, + "tag_fields": null, + "subject": null, + "_last_update": null, + "engine": "InnoDB", + "default_print_format": null, + "is_submittable": 0, + "show_name_in_global_search": 0, + "custom": 1, + "beta": 0, + "has_web_view": 0, + "allow_guest_to_view": 0, + "route": null, + "is_published_field": null, + "website_search_field": null, + "email_append_to": 0, + "subject_field": null, + "sender_field": null, + "show_title_field_in_link": 0, + "migration_hash": "13253bc7b0d551eab19d1fc4071696f4", + "translated_doctype": 0, + "is_calendar_and_gantt": 0, + "quick_entry": 0, + "grid_page_length": 50, + "rows_threshold_for_grid_search": 20, + "track_views": 0, + "queue_in_background": 0, + "documentation": null, + "nsm_parent_field": null, + "allow_events_in_timeline": 0, + "allow_auto_repeat": 0, + "make_attachments_public": 0, + "default_view": null, + "force_re_route_to_default_view": 0, + "show_preview_popup": 0, + "default_email_template": null, + "sender_name_field": null, + "recipient_account_field": null, + "protect_attached_files": 0, + "index_web_pages_for_search": 1, + "row_format": "Dynamic", + "doctype": "DocType", + "fields": [ + { + "name": "adr5fitbhh", + "fieldname": "item_code", + "label": "Item", + "oldfieldname": null, + "fieldtype": "Link", + "oldfieldtype": null, + "options": "Item", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 1, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adrujbo19s", + "fieldname": "serial_no", + "label": "Serial No", + "oldfieldname": null, + "fieldtype": "Link", + "oldfieldtype": null, + "options": "Serial No", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adr2rjjj1t", + "fieldname": "erasure_section", + "label": "Erasure Details", + "oldfieldname": null, + "fieldtype": "Section Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adr1m7r6b5", + "fieldname": "erasure_type", + "label": "Erasure Type", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "\nNIST 800-88\nHMG IS5\nBSI-VSITR\nGutmann\nRandom Overwrite\nFast\nOther", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adrn8ot6qt", + "fieldname": "erasure_status", + "label": "Erasure Status", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "\nPass\nFail\nCanceled", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 1, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "Pass", + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adradvm784", + "fieldname": "erasure_date", + "label": "Erasure Date", + "oldfieldname": null, + "fieldtype": "Date", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adr02jurt0", + "fieldname": "col_break1", + "label": null, + "oldfieldname": null, + "fieldtype": "Column Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adrrloqa21", + "fieldname": "certificate_number", + "label": "Certificate Number", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adr1pgj1sg", + "fieldname": "software_used", + "label": "Software Used", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adri8acbe5", + "fieldname": "software_version", + "label": "Software Version", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adrdd00ed3", + "fieldname": "duration", + "label": "Duration", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adr51ba53l", + "fieldname": "health_score", + "label": "Health Score", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "adr3hsrsic", + "fieldname": "failure_reason", + "label": "Failure Reason", + "oldfieldname": null, + "fieldtype": "Small Text", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": null, + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + } + ], + "states": [], + "actions": [], + "links": [], + "permissions": [ + { + "name": "adrdf187ku", + "permlevel": 0, + "role": "Stock User", + "match": null, + "read": 1, + "write": 1, + "create": 1, + "submit": 0, + "cancel": 0, + "delete": 1, + "amend": 0, + "report": 1, + "export": 1, + "import": 0, + "share": 1, + "print": 1, + "email": 1, + "if_owner": 0, + "select": 0, + "doctype": "DocPerm" + }, + { + "name": "adr2eit0o7", + "permlevel": 0, + "role": "Stock Manager", + "match": null, + "read": 1, + "write": 1, + "create": 1, + "submit": 0, + "cancel": 0, + "delete": 1, + "amend": 0, + "report": 1, + "export": 1, + "import": 0, + "share": 1, + "print": 1, + "email": 1, + "if_owner": 0, + "select": 0, + "doctype": "DocPerm" + } + ] + }, + { + "name": "Scheduled Pickup", + "search_fields": "pickup_date,customer_number,company_name,status,truck", + "issingle": 0, + "is_virtual": 0, + "is_tree": 0, + "istable": 0, + "editable_grid": 1, + "track_changes": 0, + "module": "Westech R2", + "restrict_to_domain": null, + "app": null, + "autoname": "SCHED-.####", + "naming_rule": "Expression", + "title_field": "title", + "image_field": null, + "timeline_field": null, + "sort_field": "pickup_date", + "sort_order": "ASC", + "description": null, + "colour": null, + "read_only": 0, + "in_create": 0, + "menu_index": null, + "parent_node": null, + "smallicon": null, + "allow_copy": 0, + "allow_rename": 1, + "allow_import": 0, + "hide_toolbar": 0, + "track_seen": 0, + "max_attachments": 0, + "print_outline": null, + "document_type": "", + "icon": null, + "color": null, + "tag_fields": null, + "subject": null, + "_last_update": null, + "engine": "InnoDB", + "default_print_format": null, + "is_submittable": 0, + "show_name_in_global_search": 0, + "custom": 1, + "beta": 0, + "has_web_view": 0, + "allow_guest_to_view": 0, + "route": null, + "is_published_field": null, + "website_search_field": null, + "email_append_to": 0, + "subject_field": null, + "sender_field": null, + "show_title_field_in_link": 0, + "migration_hash": null, + "translated_doctype": 0, + "is_calendar_and_gantt": 0, + "quick_entry": 0, + "grid_page_length": 50, + "rows_threshold_for_grid_search": 20, + "track_views": 0, + "queue_in_background": 0, + "documentation": null, + "nsm_parent_field": null, + "allow_events_in_timeline": 0, + "allow_auto_repeat": 0, + "make_attachments_public": 0, + "default_view": null, + "force_re_route_to_default_view": 0, + "show_preview_popup": 0, + "default_email_template": null, + "sender_name_field": null, + "recipient_account_field": null, + "protect_attached_files": 0, + "index_web_pages_for_search": 1, + "row_format": "Dynamic", + "doctype": "DocType", + "fields": [ + { + "name": "c3p628cus3", + "fieldname": "title", + "label": "Title", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 1, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3p0ndj0b2", + "fieldname": "pickup_info", + "label": "Pickup Info", + "oldfieldname": null, + "fieldtype": "Section Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3p9tou609", + "fieldname": "pickup_date", + "label": "Pickup Date", + "oldfieldname": null, + "fieldtype": "Date", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 1, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3povlasr8", + "fieldname": "pickup_type", + "label": "Type", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "\nPickup\nDrop-off", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "Pickup", + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3phm0uqme", + "fieldname": "col_break_1", + "label": null, + "oldfieldname": null, + "fieldtype": "Column Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3p20mc15d", + "fieldname": "status", + "label": "Status", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "Scheduled\nRouted\nIn Progress\nComplete\nCancelled", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "Scheduled", + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 1, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3ptc1bqhp", + "fieldname": "truck", + "label": "Truck", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "\nTruck 1\nTruck 2\nTruck 3", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3ppc0cgq6", + "fieldname": "stop_order", + "label": "Stop Order", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3poj8ccqj", + "fieldname": "supplier_info", + "label": "Customer & Contact", + "oldfieldname": null, + "fieldtype": "Section Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3pthpk4fj", + "fieldname": "customer_number", + "label": "Customer Number", + "oldfieldname": null, + "fieldtype": "Link", + "oldfieldtype": null, + "options": "Supplier", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 1, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 1, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3p3g0lhsi", + "fieldname": "company_name", + "label": "Company Name", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3pdc2qc7h", + "fieldname": "col_break_2", + "label": null, + "oldfieldname": null, + "fieldtype": "Column Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3pvvmj2uq", + "fieldname": "contact_name", + "label": "Contact Name", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3pot0rn0o", + "fieldname": "contact_phone", + "label": "Contact Phone", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3pp062gqt", + "fieldname": "contact_email", + "label": "Contact Email", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3pk4gqm6o", + "fieldname": "address_info", + "label": "Pickup Address", + "oldfieldname": null, + "fieldtype": "Section Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3pubu7ns7", + "fieldname": "address_line", + "label": "Street Address", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3p5glfddj", + "fieldname": "city", + "label": "City", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3p9nrr27j", + "fieldname": "state", + "label": "State", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3pslosadc", + "fieldname": "zip_code", + "label": "ZIP", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3pjph6qca", + "fieldname": "col_break_3", + "label": null, + "oldfieldname": null, + "fieldtype": "Column Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3pdcdg4oh", + "fieldname": "latitude", + "label": "Latitude", + "oldfieldname": null, + "fieldtype": "Float", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "6", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3pnalk6gl", + "fieldname": "longitude", + "label": "Longitude", + "oldfieldname": null, + "fieldtype": "Float", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "6", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3pt9g9o5t", + "fieldname": "geocoded", + "label": "Geocoded", + "oldfieldname": null, + "fieldtype": "Check", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "0", + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3p23nb6gp", + "fieldname": "load_info", + "label": "Load Info", + "oldfieldname": null, + "fieldtype": "Section Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3pjqpbq0e", + "fieldname": "estimated_items", + "label": "Estimated Items", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3p13alp60", + "fieldname": "estimated_weight", + "label": "Estimated Weight", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3pcaqper3", + "fieldname": "col_break_4", + "label": null, + "oldfieldname": null, + "fieldtype": "Column Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3pt6e8d5u", + "fieldname": "num_labels", + "label": "Labels to Bring", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "1", + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3pljsikti", + "fieldname": "data_status", + "label": "Data Status", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "\nD0\nD1\nND1\nND2\nND3\nND4\nN/A", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3p5n6n831", + "fieldname": "red_r2", + "label": "RED / R2", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "\nRED\nR2\nBoth\nNeither", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3p45idbrh", + "fieldname": "notes_info", + "label": "Notes", + "oldfieldname": null, + "fieldtype": "Section Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3pqg0luck", + "fieldname": "notes", + "label": "Notes", + "oldfieldname": null, + "fieldtype": "Small Text", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3phfei8eb", + "fieldname": "col_break_5", + "label": null, + "oldfieldname": null, + "fieldtype": "Column Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3pp3ahit4", + "fieldname": "needs_aor", + "label": "Needs AoR", + "oldfieldname": null, + "fieldtype": "Check", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "0", + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3plo06klm", + "fieldname": "needs_cod", + "label": "Needs COD", + "oldfieldname": null, + "fieldtype": "Check", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "0", + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3p8g65im0", + "fieldname": "routing_info", + "label": "Routing", + "oldfieldname": null, + "fieldtype": "Section Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3plgs11b7", + "fieldname": "route_distance", + "label": "Route Distance (mi)", + "oldfieldname": null, + "fieldtype": "Float", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "1", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3pcvo276t", + "fieldname": "route_time", + "label": "Est. Drive Time (min)", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3pqbjv7tk", + "fieldname": "col_break_6", + "label": null, + "oldfieldname": null, + "fieldtype": "Column Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c3p3bqn8ft", + "fieldname": "linked_pallet", + "label": "Linked Pallet", + "oldfieldname": null, + "fieldtype": "Link", + "oldfieldtype": null, + "options": "Pallet", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + } + ], + "states": [], + "actions": [], + "links": [], + "permissions": [ + { + "name": "c3pd0u4pmr", + "permlevel": 0, + "role": "System Manager", + "match": null, + "read": 1, + "write": 1, + "create": 1, + "submit": 0, + "cancel": 0, + "delete": 1, + "amend": 0, + "report": 1, + "export": 1, + "import": 0, + "share": 1, + "print": 1, + "email": 1, + "if_owner": 0, + "select": 0, + "doctype": "DocPerm" + }, + { + "name": "c3p5ilv4v6", + "permlevel": 0, + "role": "Stock Manager", + "match": null, + "read": 1, + "write": 1, + "create": 1, + "submit": 0, + "cancel": 0, + "delete": 1, + "amend": 0, + "report": 1, + "export": 1, + "import": 0, + "share": 1, + "print": 1, + "email": 1, + "if_owner": 0, + "select": 0, + "doctype": "DocPerm" + }, + { + "name": "c3ppl2psn1", + "permlevel": 0, + "role": "Stock User", + "match": null, + "read": 1, + "write": 1, + "create": 1, + "submit": 0, + "cancel": 0, + "delete": 1, + "amend": 0, + "report": 1, + "export": 1, + "import": 0, + "share": 1, + "print": 1, + "email": 1, + "if_owner": 0, + "select": 0, + "doctype": "DocPerm" + }, + { + "name": "ktqv418m73", + "permlevel": 0, + "role": "Demo User", + "match": null, + "read": 1, + "write": 1, + "create": 1, + "submit": 0, + "cancel": 0, + "delete": 0, + "amend": 0, + "report": 1, + "export": 1, + "import": 0, + "share": 1, + "print": 1, + "email": 1, + "if_owner": 0, + "select": 0, + "doctype": "DocPerm" + } + ] + }, + { + "name": "HDD Serial Entry", + "search_fields": null, + "issingle": 0, + "is_virtual": 0, + "is_tree": 0, + "istable": 1, + "editable_grid": 1, + "track_changes": 0, + "module": "Westech R2", + "restrict_to_domain": null, + "app": null, + "autoname": null, + "naming_rule": "", + "title_field": null, + "image_field": null, + "timeline_field": null, + "sort_field": "modified", + "sort_order": "DESC", + "description": null, + "colour": null, + "read_only": 0, + "in_create": 0, + "menu_index": null, + "parent_node": null, + "smallicon": null, + "allow_copy": 0, + "allow_rename": 1, + "allow_import": 0, + "hide_toolbar": 0, + "track_seen": 0, + "max_attachments": 0, + "print_outline": null, + "document_type": "", + "icon": null, + "color": null, + "tag_fields": null, + "subject": null, + "_last_update": null, + "engine": "InnoDB", + "default_print_format": null, + "is_submittable": 0, + "show_name_in_global_search": 0, + "custom": 1, + "beta": 0, + "has_web_view": 0, + "allow_guest_to_view": 0, + "route": null, + "is_published_field": null, + "website_search_field": null, + "email_append_to": 0, + "subject_field": null, + "sender_field": null, + "show_title_field_in_link": 0, + "migration_hash": null, + "translated_doctype": 0, + "is_calendar_and_gantt": 0, + "quick_entry": 0, + "grid_page_length": 50, + "rows_threshold_for_grid_search": 20, + "track_views": 0, + "queue_in_background": 0, + "documentation": null, + "nsm_parent_field": null, + "allow_events_in_timeline": 0, + "allow_auto_repeat": 0, + "make_attachments_public": 0, + "default_view": null, + "force_re_route_to_default_view": 0, + "show_preview_popup": 0, + "default_email_template": null, + "sender_name_field": null, + "recipient_account_field": null, + "protect_attached_files": 0, + "index_web_pages_for_search": 1, + "row_format": "Dynamic", + "doctype": "DocType", + "fields": [ + { + "name": "b6dn4ermf3", + "fieldname": "serial_number", + "label": "Serial Number", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 1, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6d2hhv6s6", + "fieldname": "wiped", + "label": "Wiped", + "oldfieldname": null, + "fieldtype": "Check", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "0", + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6df58aa1r", + "fieldname": "failed_pretest", + "label": "Failed Pretest", + "oldfieldname": null, + "fieldtype": "Check", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "0", + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6dh6uci68", + "fieldname": "degaussed", + "label": "Degaussed", + "oldfieldname": null, + "fieldtype": "Check", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "0", + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6d62sofki", + "fieldname": "shredded", + "label": "Shredded", + "oldfieldname": null, + "fieldtype": "Check", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": "0", + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6d21l3cg5", + "fieldname": "final_scan", + "label": "Final Scan Before Wipe/Degauss/Shred", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + } + ], + "states": [], + "actions": [], + "links": [], + "permissions": [] + }, + { + "name": "Load Pallet", + "search_fields": null, + "issingle": 0, + "is_virtual": 0, + "is_tree": 0, + "istable": 1, + "editable_grid": 1, + "track_changes": 0, + "module": "Westech R2", + "restrict_to_domain": null, + "app": null, + "autoname": null, + "naming_rule": "", + "title_field": null, + "image_field": null, + "timeline_field": null, + "sort_field": "modified", + "sort_order": "DESC", + "description": null, + "colour": null, + "read_only": 0, + "in_create": 0, + "menu_index": null, + "parent_node": null, + "smallicon": null, + "allow_copy": 0, + "allow_rename": 1, + "allow_import": 0, + "hide_toolbar": 0, + "track_seen": 0, + "max_attachments": 0, + "print_outline": null, + "document_type": "", + "icon": null, + "color": null, + "tag_fields": null, + "subject": null, + "_last_update": null, + "engine": "InnoDB", + "default_print_format": null, + "is_submittable": 0, + "show_name_in_global_search": 0, + "custom": 1, + "beta": 0, + "has_web_view": 0, + "allow_guest_to_view": 0, + "route": null, + "is_published_field": null, + "website_search_field": null, + "email_append_to": 0, + "subject_field": null, + "sender_field": null, + "show_title_field_in_link": 0, + "migration_hash": null, + "translated_doctype": 0, + "is_calendar_and_gantt": 0, + "quick_entry": 0, + "grid_page_length": 50, + "rows_threshold_for_grid_search": 20, + "track_views": 0, + "queue_in_background": 0, + "documentation": null, + "nsm_parent_field": null, + "allow_events_in_timeline": 0, + "allow_auto_repeat": 0, + "make_attachments_public": 0, + "default_view": null, + "force_re_route_to_default_view": 0, + "show_preview_popup": 0, + "default_email_template": null, + "sender_name_field": null, + "recipient_account_field": null, + "protect_attached_files": 0, + "index_web_pages_for_search": 1, + "row_format": "Dynamic", + "doctype": "DocType", + "fields": [ + { + "name": "c10tnjj24r", + "fieldname": "pallet", + "label": "Pallet", + "oldfieldname": null, + "fieldtype": "Link", + "oldfieldtype": null, + "options": "Pallet", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 1, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c10jrqhi9n", + "fieldname": "pallet_number", + "label": "Pallet Number", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 1, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": "pallet.pallet_number", + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c1045o8sl3", + "fieldname": "status", + "label": "Status", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 1, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": "pallet.status", + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c10jt8oh0m", + "fieldname": "total_items", + "label": "Total Items", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 1, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": "pallet.total_items", + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + } + ], + "states": [], + "actions": [], + "links": [], + "permissions": [] + }, + { + "name": "Load Item", + "search_fields": null, + "issingle": 0, + "is_virtual": 0, + "is_tree": 0, + "istable": 1, + "editable_grid": 1, + "track_changes": 0, + "module": "Westech R2", + "restrict_to_domain": null, + "app": null, + "autoname": null, + "naming_rule": "", + "title_field": null, + "image_field": null, + "timeline_field": null, + "sort_field": "modified", + "sort_order": "DESC", + "description": null, + "colour": null, + "read_only": 0, + "in_create": 0, + "menu_index": null, + "parent_node": null, + "smallicon": null, + "allow_copy": 0, + "allow_rename": 1, + "allow_import": 0, + "hide_toolbar": 0, + "track_seen": 0, + "max_attachments": 0, + "print_outline": null, + "document_type": "", + "icon": null, + "color": null, + "tag_fields": null, + "subject": null, + "_last_update": null, + "engine": "InnoDB", + "default_print_format": null, + "is_submittable": 0, + "show_name_in_global_search": 0, + "custom": 1, + "beta": 0, + "has_web_view": 0, + "allow_guest_to_view": 0, + "route": null, + "is_published_field": null, + "website_search_field": null, + "email_append_to": 0, + "subject_field": null, + "sender_field": null, + "show_title_field_in_link": 0, + "migration_hash": null, + "translated_doctype": 0, + "is_calendar_and_gantt": 0, + "quick_entry": 0, + "grid_page_length": 50, + "rows_threshold_for_grid_search": 20, + "track_views": 0, + "queue_in_background": 0, + "documentation": null, + "nsm_parent_field": null, + "allow_events_in_timeline": 0, + "allow_auto_repeat": 0, + "make_attachments_public": 0, + "default_view": null, + "force_re_route_to_default_view": 0, + "show_preview_popup": 0, + "default_email_template": null, + "sender_name_field": null, + "recipient_account_field": null, + "protect_attached_files": 0, + "index_web_pages_for_search": 1, + "row_format": "Dynamic", + "doctype": "DocType", + "fields": [ + { + "name": "b6apqkr206", + "fieldname": "material_type", + "label": "Material Type", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "\nChromebook / Notebook\nAll In One\nHPStream\nLaptop\nDesktop\nServer\nExternal Hard Drive\nLoose Hard Drive\nLoose SSD or mSATA Drive\nCD / Floppy / DVD / Tapes\nCell Phone / Smart Phone\nDVR\nGaming Systems\nGPS\nNetwork / Modems / Routers\nOffice/ IP Phone\nPersonal Electronics / PDA\nPOS\nPOS Terminals\nPrinters/Copiers\nPrinters/Copiers Hard Drives\nSD Cards\nSmart TV\nCRT TV\nSwitch\nTablet\nThin Clients\nUSB Drive\n# Of Pallets\nDesktops", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 1, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6amd7ab4s", + "fieldname": "subcount_1", + "label": "Subcount 1", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6akdp4t0m", + "fieldname": "subcount_2", + "label": "Subcount 2", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6afgbq2kc", + "fieldname": "subcount_3", + "label": "Subcount 3", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6aivo4r4m", + "fieldname": "total_count", + "label": "Total Count", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6abusrlci", + "fieldname": "weight", + "label": "Weight (lbs)", + "oldfieldname": null, + "fieldtype": "Float", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6avfaihg9", + "fieldname": "initial_data_status", + "label": "Initial Data Status", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "\nD0\nD1\nND1\nND2\nND3\nND4\nND5", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6am5kssbk", + "fieldname": "send_to", + "label": "Send To", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "\nHDR\nR2 Downstream Vendor\nShred / Degauss\nWiping\nResale\nTest\nDisassembly\nInventory", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6al4j030e", + "fieldname": "col_disassembly", + "label": "Disassembly (Data Removal)", + "oldfieldname": null, + "fieldtype": "Column Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6a7i570bj", + "fieldname": "devices_received", + "label": "Devices Received (count)", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6a4as0blp", + "fieldname": "hdd_removed", + "label": "Hard Drives Removed or Devices Sent (count)", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6addr0959", + "fieldname": "disassembly_data_status", + "label": "Data Sanitization Status", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "\nD0\nD1\nND1\nND2\nND3\nND4\nND5", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6aolmtjiu", + "fieldname": "disassembly_send_to", + "label": "Send To", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "\nHDR\nR2 Downstream Vendor\nShred / Degauss\nWiping\nResale\nTest\nDisassembly\nInventory", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6alurgn3l", + "fieldname": "col_test", + "label": "Test", + "oldfieldname": null, + "fieldtype": "Column Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6a78cn1i5", + "fieldname": "units_sanitized_software", + "label": "Units Sanitized by Software (count)", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6ar9eea9h", + "fieldname": "test_data_status", + "label": "Data Sanitization Status", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "\nD0\nD1\nND1\nND2\nND3\nND4\nND5", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6a96ir0t7", + "fieldname": "test_send_to", + "label": "Send To", + "oldfieldname": null, + "fieldtype": "Select", + "oldfieldtype": null, + "options": "\nHDR\nR2 Downstream Vendor\nShred / Degauss\nWiping\nResale\nTest\nDisassembly\nInventory", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6aif2f3ug", + "fieldname": "col_r2", + "label": "R2 Downstream", + "oldfieldname": null, + "fieldtype": "Column Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6aggmvnuf", + "fieldname": "r2_units_sent", + "label": "Units Sent to Qualified R2 Vendor", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6aqcpc0nr", + "fieldname": "col_destruction", + "label": "Physical Destruction", + "oldfieldname": null, + "fieldtype": "Column Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6aoqcqrk3", + "fieldname": "units_physical_destruction", + "label": "Units Sanitized by Physical Destruction (count)", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6afvvbb55", + "fieldname": "hdd_needs_sanitize", + "label": "# of Drives That Need To Be Sanitized", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6a49g3osc", + "fieldname": "hdd_physical_destruction", + "label": "HDD Sanitized by Physical Destruction - Shred or Degauss (count)", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6a8ms2kss", + "fieldname": "hdd_logical_sanitization", + "label": "HDD Sanitized by Logical Sanitization - Wiping (count)", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "b6arv5rspg", + "fieldname": "notes", + "label": "Notes", + "oldfieldname": null, + "fieldtype": "Small Text", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + } + ], + "states": [], + "actions": [], + "links": [], + "permissions": [] + }, + { + "name": "Load", + "search_fields": null, + "issingle": 0, + "is_virtual": 0, + "is_tree": 0, + "istable": 0, + "editable_grid": 1, + "track_changes": 0, + "module": "Westech R2", + "restrict_to_domain": null, + "app": null, + "autoname": "prompt", + "naming_rule": "Set by user", + "title_field": "title", + "image_field": null, + "timeline_field": null, + "sort_field": "modified", + "sort_order": "DESC", + "description": null, + "colour": null, + "read_only": 0, + "in_create": 0, + "menu_index": null, + "parent_node": null, + "smallicon": null, + "allow_copy": 0, + "allow_rename": 1, + "allow_import": 0, + "hide_toolbar": 0, + "track_seen": 0, + "max_attachments": 0, + "print_outline": null, + "document_type": "", + "icon": null, + "color": null, + "tag_fields": null, + "subject": null, + "_last_update": null, + "engine": "InnoDB", + "default_print_format": null, + "is_submittable": 0, + "show_name_in_global_search": 0, + "custom": 1, + "beta": 0, + "has_web_view": 0, + "allow_guest_to_view": 0, + "route": null, + "is_published_field": null, + "website_search_field": null, + "email_append_to": 0, + "subject_field": null, + "sender_field": null, + "show_title_field_in_link": 0, + "migration_hash": null, + "translated_doctype": 0, + "is_calendar_and_gantt": 0, + "quick_entry": 0, + "grid_page_length": 50, + "rows_threshold_for_grid_search": 20, + "track_views": 0, + "queue_in_background": 0, + "documentation": null, + "nsm_parent_field": null, + "allow_events_in_timeline": 0, + "allow_auto_repeat": 0, + "make_attachments_public": 0, + "default_view": null, + "force_re_route_to_default_view": 0, + "show_preview_popup": 0, + "default_email_template": null, + "sender_name_field": null, + "recipient_account_field": null, + "protect_attached_files": 0, + "index_web_pages_for_search": 1, + "row_format": "Dynamic", + "doctype": "DocType", + "fields": [ + { + "name": "c12m73kva8", + "fieldname": "title", + "label": "Title", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 1, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c12ck9qbga", + "fieldname": "load_number", + "label": "Load Number", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 1, + "bold": 1, + "in_global_search": 0, + "collapsible": 0, + "unique": 1, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c1205gg1cs", + "fieldname": "load_info", + "label": "Load Info", + "oldfieldname": null, + "fieldtype": "Section Break", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c12vp4u6i9", + "fieldname": "incoming_date", + "label": "Incoming Date", + "oldfieldname": null, + "fieldtype": "Date", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 1, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c12c3s70hh", + "fieldname": "customer", + "label": "Customer", + "oldfieldname": null, + "fieldtype": "Link", + "oldfieldtype": null, + "options": "Supplier", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 1, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c12pat8cme", + "fieldname": "customer_name", + "label": "Customer Name", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": "customer.supplier_name", + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c12fva79nv", + "fieldname": "customer_number", + "label": "Customer Number", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c12impg0vo", + "fieldname": "barcode", + "label": "Barcode", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c12f421ict", + "fieldname": "additional_job_number", + "label": "Additional Job #", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c12o84fgd8", + "fieldname": "number_of_gaylords", + "label": "# of Gaylords", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c12l4ijisa", + "fieldname": "material_items", + "label": "Material Types", + "oldfieldname": null, + "fieldtype": "Table", + "oldfieldtype": null, + "options": "Load Item", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 1, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c1279ts3qn", + "fieldname": "hdd_serials", + "label": "HDD Serial Numbers", + "oldfieldname": null, + "fieldtype": "Table", + "oldfieldtype": null, + "options": "HDD Serial Entry", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c12o9eqdfb", + "fieldname": "person_degaussing", + "label": "Person Degaussing / Shredding (initials)", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c12sc6rmgn", + "fieldname": "person_wiping", + "label": "Person Wiping HDDs (initials)", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c12bohv5ce", + "fieldname": "data_rep_verification", + "label": "Data Rep Verification (initials)", + "oldfieldname": null, + "fieldtype": "Data", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c123ebj3uc", + "fieldname": "date_completed", + "label": "Date Completed", + "oldfieldname": null, + "fieldtype": "Date", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c12gh004qi", + "fieldname": "status_key", + "label": "Status Key", + "oldfieldname": null, + "fieldtype": "HTML", + "oldfieldtype": null, + "options": "
D0Data unknown
D1Contains data
ND1Non-data device
ND2Evaluated as not containing data
ND3Sanitized using physical destruction
ND4Grade A (80-100%), Sanitized with software
ND5Grade B (60-75%), Sanitized with software
", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c12sbu6bq3", + "fieldname": "pallets", + "label": "Pallets", + "oldfieldname": null, + "fieldtype": "Table", + "oldfieldtype": null, + "options": "Load Pallet", + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 0, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c126g1482k", + "fieldname": "total_devices", + "label": "Total Devices", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 1, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c12sem4ia5", + "fieldname": "total_weight", + "label": "Total Weight (lbs)", + "oldfieldname": null, + "fieldtype": "Float", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 1, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c12mk1fvdi", + "fieldname": "total_hdd_wiped", + "label": "Total HDDs Wiped", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 1, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + }, + { + "name": "c12mlreu2u", + "fieldname": "total_hdd_degaussed", + "label": "Total HDDs Degaussed/Shredded", + "oldfieldname": null, + "fieldtype": "Int", + "oldfieldtype": null, + "options": null, + "search_index": 0, + "show_dashboard": 0, + "hidden": 0, + "set_only_once": 0, + "allow_in_quick_entry": 0, + "print_hide": 0, + "report_hide": 0, + "reqd": 0, + "bold": 0, + "in_global_search": 0, + "collapsible": 0, + "unique": 0, + "no_copy": 0, + "allow_on_submit": 0, + "show_preview_popup": 0, + "trigger": null, + "collapsible_depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "depends_on": null, + "permlevel": 0, + "ignore_user_permissions": 0, + "width": null, + "print_width": null, + "columns": 0, + "default": null, + "description": null, + "in_list_view": 0, + "fetch_if_empty": 0, + "in_filter": 0, + "remember_last_selected_value": 0, + "ignore_xss_filter": 0, + "print_hide_if_no_value": 0, + "allow_bulk_edit": 0, + "in_standard_filter": 0, + "in_preview": 0, + "read_only": 1, + "precision": "", + "max_height": null, + "length": 0, + "translatable": 0, + "hide_border": 0, + "hide_days": 0, + "hide_seconds": 0, + "non_negative": 0, + "is_virtual": 0, + "sort_options": 0, + "link_filters": null, + "fetch_from": null, + "show_on_timeline": 0, + "make_attachment_public": 0, + "documentation_url": null, + "placeholder": null, + "doctype": "DocField" + } + ], + "states": [], + "actions": [], + "links": [], + "permissions": [] + } +] \ No newline at end of file diff --git a/westech_r2/fixtures/custom_field.json b/westech_r2/fixtures/custom_field.json new file mode 100644 index 0000000..e12d90c --- /dev/null +++ b/westech_r2/fixtures/custom_field.json @@ -0,0 +1,3082 @@ +[ + { + "name": "Scheduled Pickup-total_gaylord_weight", + "is_system_generated": 0, + "dt": "Scheduled Pickup", + "module": "Westech R2", + "label": "Total Gaylord Weight (lbs)", + "placeholder": null, + "fieldname": "total_gaylord_weight", + "insert_after": "slots_needed", + "length": 0, + "link_filters": null, + "fieldtype": "Float", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Scheduled Pickup-slots_needed", + "is_system_generated": 0, + "dt": "Scheduled Pickup", + "module": "Westech R2", + "label": "Slots Needed", + "placeholder": null, + "fieldname": "slots_needed", + "insert_after": "gaylord_sizes", + "length": 0, + "link_filters": null, + "fieldtype": "Int", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Scheduled Pickup-gaylord_sizes", + "is_system_generated": 0, + "dt": "Scheduled Pickup", + "module": "Westech R2", + "label": "Gaylord Sizes", + "placeholder": null, + "fieldname": "gaylord_sizes", + "insert_after": "gaylord_count", + "length": 0, + "link_filters": null, + "fieldtype": "Small Text", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Scheduled Pickup-gaylord_count", + "is_system_generated": 0, + "dt": "Scheduled Pickup", + "module": "Westech R2", + "label": "Gaylord Count", + "placeholder": null, + "fieldname": "gaylord_count", + "insert_after": "gaylord_section", + "length": 0, + "link_filters": null, + "fieldtype": "Int", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Scheduled Pickup-gaylord_section", + "is_system_generated": 0, + "dt": "Scheduled Pickup", + "module": "Westech R2", + "label": "Gaylord Details", + "placeholder": null, + "fieldname": "gaylord_section", + "insert_after": "carrier_name", + "length": 0, + "link_filters": null, + "fieldtype": "Section Break", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 1, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Scheduled Pickup-carrier_name", + "is_system_generated": 0, + "dt": "Scheduled Pickup", + "module": "Westech R2", + "label": "Carrier Name", + "placeholder": null, + "fieldname": "carrier_name", + "insert_after": "truck_profile", + "length": 0, + "link_filters": null, + "fieldtype": "Data", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Scheduled Pickup-truck_profile", + "is_system_generated": 0, + "dt": "Scheduled Pickup", + "module": "Westech R2", + "label": "Truck Profile", + "placeholder": null, + "fieldname": "truck_profile", + "insert_after": "shipment_type", + "length": 0, + "link_filters": null, + "fieldtype": "Link", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": "Truck Profile", + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Scheduled Pickup-shipment_type", + "is_system_generated": 0, + "dt": "Scheduled Pickup", + "module": "Westech R2", + "label": "Shipment Type", + "placeholder": null, + "fieldname": "shipment_type", + "insert_after": "status", + "length": 0, + "link_filters": null, + "fieldtype": "Select", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": "Truck\nFreight Carrier", + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Load Pallet-commodity_only", + "is_system_generated": 0, + "dt": "Load Pallet", + "module": "Westech R2", + "label": "Commodity Only", + "placeholder": null, + "fieldname": "commodity_only", + "insert_after": "gaylord_size", + "length": 0, + "link_filters": null, + "fieldtype": "Check", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Load Pallet-gaylord_size", + "is_system_generated": 0, + "dt": "Load Pallet", + "module": "Westech R2", + "label": "Gaylord Size", + "placeholder": null, + "fieldname": "gaylord_size", + "insert_after": "commodity_weight", + "length": 0, + "link_filters": null, + "fieldtype": "Select", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": "\nSmall\nMedium\nLarge", + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Load Pallet-commodity_weight", + "is_system_generated": 0, + "dt": "Load Pallet", + "module": "Westech R2", + "label": "Commodity Weight (lbs)", + "placeholder": null, + "fieldname": "commodity_weight", + "insert_after": "intake_weight", + "length": 0, + "link_filters": null, + "fieldtype": "Float", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Load Pallet-intake_weight", + "is_system_generated": 0, + "dt": "Load Pallet", + "module": "Westech R2", + "label": "Intake Weight (lbs)", + "placeholder": null, + "fieldname": "intake_weight", + "insert_after": "intake_designation", + "length": 0, + "link_filters": null, + "fieldtype": "Float", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Load Pallet-intake_designation", + "is_system_generated": 0, + "dt": "Load Pallet", + "module": "Westech R2", + "label": "Intake Designation", + "placeholder": null, + "fieldname": "intake_designation", + "insert_after": "total_items", + "length": 0, + "link_filters": null, + "fieldtype": "Data", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Load-green_sheet_instructions", + "is_system_generated": 0, + "dt": "Load", + "module": "Westech R2", + "label": "Green Sheet Instructions", + "placeholder": null, + "fieldname": "green_sheet_instructions", + "insert_after": "green_sheet", + "length": 0, + "link_filters": null, + "fieldtype": "Small Text", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Load-green_sheet", + "is_system_generated": 0, + "dt": "Load", + "module": "Westech R2", + "label": "Green Sheet", + "placeholder": null, + "fieldname": "green_sheet", + "insert_after": "total_hdds", + "length": 0, + "link_filters": null, + "fieldtype": "Attach", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Load-sanitization_description", + "is_system_generated": 0, + "dt": "Load", + "module": "Westech R2", + "label": "Sanitization Description", + "placeholder": null, + "fieldname": "sanitization_description", + "insert_after": "sanitization_section", + "length": 0, + "link_filters": null, + "fieldtype": "Small Text", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Load-sanitization_section", + "is_system_generated": 0, + "dt": "Load", + "module": "Westech R2", + "label": "Data Sanitization", + "placeholder": null, + "fieldname": "sanitization_section", + "insert_after": "r2_description", + "length": 0, + "link_filters": null, + "fieldtype": "Section Break", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 1, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Load-r2_description", + "is_system_generated": 0, + "dt": "Load", + "module": "Westech R2", + "label": "R2 Downstream Description", + "placeholder": null, + "fieldname": "r2_description", + "insert_after": "r2_section", + "length": 0, + "link_filters": null, + "fieldtype": "Small Text", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Load-r2_section", + "is_system_generated": 0, + "dt": "Load", + "module": "Westech R2", + "label": "R2 Downstream", + "placeholder": null, + "fieldname": "r2_section", + "insert_after": "testing_description", + "length": 0, + "link_filters": null, + "fieldtype": "Section Break", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 1, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Load-testing_description", + "is_system_generated": 0, + "dt": "Load", + "module": "Westech R2", + "label": "Testing Description", + "placeholder": null, + "fieldname": "testing_description", + "insert_after": "testing_section", + "length": 0, + "link_filters": null, + "fieldtype": "Small Text", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Load-testing_section", + "is_system_generated": 0, + "dt": "Load", + "module": "Westech R2", + "label": "Testing", + "placeholder": null, + "fieldname": "testing_section", + "insert_after": "disassembly_description", + "length": 0, + "link_filters": null, + "fieldtype": "Section Break", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 1, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Load-disassembly_description", + "is_system_generated": 0, + "dt": "Load", + "module": "Westech R2", + "label": "Disassembly Description", + "placeholder": null, + "fieldname": "disassembly_description", + "insert_after": "disassembly_section", + "length": 0, + "link_filters": null, + "fieldtype": "Small Text", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Load-disassembly_section", + "is_system_generated": 0, + "dt": "Load", + "module": "Westech R2", + "label": "Disassembly (Data Removal)", + "placeholder": null, + "fieldname": "disassembly_section", + "insert_after": "sort_description", + "length": 0, + "link_filters": null, + "fieldtype": "Section Break", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 1, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Load-sort_description", + "is_system_generated": 0, + "dt": "Load", + "module": "Westech R2", + "label": "Sort Description", + "placeholder": null, + "fieldname": "sort_description", + "insert_after": "sort_section", + "length": 0, + "link_filters": null, + "fieldtype": "Small Text", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Load-sort_section", + "is_system_generated": 0, + "dt": "Load", + "module": "Westech R2", + "label": "Sort", + "placeholder": null, + "fieldname": "sort_section", + "insert_after": "notes", + "length": 0, + "link_filters": null, + "fieldtype": "Section Break", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 1, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Supplier-geocoded", + "is_system_generated": 0, + "dt": "Supplier", + "module": "Westech R2", + "label": "Geocoded", + "placeholder": null, + "fieldname": "geocoded", + "insert_after": "longitude", + "length": 0, + "link_filters": null, + "fieldtype": "Check", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Supplier-longitude", + "is_system_generated": 0, + "dt": "Supplier", + "module": "Westech R2", + "label": "Longitude", + "placeholder": null, + "fieldname": "longitude", + "insert_after": "latitude", + "length": 0, + "link_filters": null, + "fieldtype": "Float", + "precision": "6", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Supplier-latitude", + "is_system_generated": 0, + "dt": "Supplier", + "module": "Westech R2", + "label": "Latitude", + "placeholder": null, + "fieldname": "latitude", + "insert_after": "supplier_primary_address", + "length": 0, + "link_filters": null, + "fieldtype": "Float", + "precision": "6", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Pallet-customer_number", + "is_system_generated": 0, + "dt": "Pallet", + "module": "Westech R2", + "label": "Customer Number", + "placeholder": null, + "fieldname": "customer_number", + "insert_after": "supplier", + "length": 0, + "link_filters": null, + "fieldtype": "Data", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 1, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 1, + "doctype": "Custom Field" + }, + { + "name": "Serial No-mdm", + "is_system_generated": 0, + "dt": "Serial No", + "module": "Westech R2", + "label": "MDM/Autopilot", + "placeholder": null, + "fieldname": "mdm", + "insert_after": "computrace", + "length": 0, + "link_filters": null, + "fieldtype": "Data", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Serial No-computrace", + "is_system_generated": 0, + "dt": "Serial No", + "module": "Westech R2", + "label": "Computrace", + "placeholder": null, + "fieldname": "computrace", + "insert_after": "erasure_status", + "length": 0, + "link_filters": null, + "fieldtype": "Data", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Serial No-cosmetic_grade", + "is_system_generated": 0, + "dt": "Serial No", + "module": "Westech R2", + "label": "Cosmetic Grade", + "placeholder": null, + "fieldname": "cosmetic_grade", + "insert_after": "functional_grade", + "length": 0, + "link_filters": null, + "fieldtype": "Data", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Serial No-functional_grade", + "is_system_generated": 0, + "dt": "Serial No", + "module": "Westech R2", + "label": "Functional Grade", + "placeholder": null, + "fieldname": "functional_grade", + "insert_after": "os_version", + "length": 0, + "link_filters": null, + "fieldtype": "Data", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Serial No-os_version", + "is_system_generated": 0, + "dt": "Serial No", + "module": "Westech R2", + "label": "OS", + "placeholder": null, + "fieldname": "os_version", + "insert_after": "display", + "length": 0, + "link_filters": null, + "fieldtype": "Data", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Serial No-display", + "is_system_generated": 0, + "dt": "Serial No", + "module": "Westech R2", + "label": "Display", + "placeholder": null, + "fieldname": "display", + "insert_after": "storage", + "length": 0, + "link_filters": null, + "fieldtype": "Data", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Serial No-storage", + "is_system_generated": 0, + "dt": "Serial No", + "module": "Westech R2", + "label": "Storage", + "placeholder": null, + "fieldname": "storage", + "insert_after": "col_break_1", + "length": 0, + "link_filters": null, + "fieldtype": "Data", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Serial No-col_break_1", + "is_system_generated": 0, + "dt": "Serial No", + "module": "Westech R2", + "label": null, + "placeholder": null, + "fieldname": "col_break_1", + "insert_after": "processor", + "length": 0, + "link_filters": null, + "fieldtype": "Column Break", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Serial No-processor", + "is_system_generated": 0, + "dt": "Serial No", + "module": "Westech R2", + "label": "Processor", + "placeholder": null, + "fieldname": "processor", + "insert_after": "ram", + "length": 0, + "link_filters": null, + "fieldtype": "Data", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Serial No-ram", + "is_system_generated": 0, + "dt": "Serial No", + "module": "Westech R2", + "label": "RAM", + "placeholder": null, + "fieldname": "ram", + "insert_after": "chassis_type", + "length": 0, + "link_filters": null, + "fieldtype": "Data", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 1, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 1, + "doctype": "Custom Field" + }, + { + "name": "Serial No-chassis_type", + "is_system_generated": 0, + "dt": "Serial No", + "module": "Westech R2", + "label": "Chassis Type", + "placeholder": null, + "fieldname": "chassis_type", + "insert_after": "eim_section", + "length": 0, + "link_filters": null, + "fieldtype": "Data", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 1, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 1, + "doctype": "Custom Field" + }, + { + "name": "Serial No-eim_section", + "is_system_generated": 0, + "dt": "Serial No", + "module": "Westech R2", + "label": "Device Details (from EIM)", + "placeholder": null, + "fieldname": "eim_section", + "insert_after": "tech", + "length": 0, + "link_filters": null, + "fieldtype": "Section Break", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Serial No-tech", + "is_system_generated": 0, + "dt": "Serial No", + "module": "Westech R2", + "label": "Tech / Tester", + "placeholder": null, + "fieldname": "tech", + "insert_after": "pallet", + "length": 0, + "link_filters": null, + "fieldtype": "Link", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": "Employee", + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 1, + "in_standard_filter": 1, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Serial No-pallet", + "is_system_generated": 0, + "dt": "Serial No", + "module": "Westech R2", + "label": "Pallet", + "placeholder": null, + "fieldname": "pallet", + "insert_after": "item_code", + "length": 0, + "link_filters": null, + "fieldtype": "Link", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": "Pallet", + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 1, + "in_standard_filter": 1, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Communication-company", + "is_system_generated": 1, + "dt": "Communication", + "module": "Westech R2", + "label": "Company", + "placeholder": null, + "fieldname": "company", + "insert_after": "email_account", + "length": 0, + "link_filters": null, + "fieldtype": "Link", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": "Company", + "sort_options": 0, + "fetch_from": "email_account.company", + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 1, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Email Account-company", + "is_system_generated": 1, + "dt": "Email Account", + "module": "Westech R2", + "label": "Company", + "placeholder": null, + "fieldname": "company", + "insert_after": "email_id", + "length": 0, + "link_filters": null, + "fieldtype": "Link", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": "Company", + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Print Settings-print_taxes_with_zero_amount", + "is_system_generated": 1, + "dt": "Print Settings", + "module": "Westech R2", + "label": "Print taxes with zero amount", + "placeholder": null, + "fieldname": "print_taxes_with_zero_amount", + "insert_after": "allow_print_for_cancelled", + "length": 0, + "link_filters": null, + "fieldtype": "Check", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": "0", + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Print Settings-print_uom_after_quantity", + "is_system_generated": 1, + "dt": "Print Settings", + "module": "Westech R2", + "label": "Print UOM after Quantity", + "placeholder": null, + "fieldname": "print_uom_after_quantity", + "insert_after": "compact_item_print", + "length": 0, + "link_filters": null, + "fieldtype": "Check", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": "0", + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Print Settings-compact_item_print", + "is_system_generated": 1, + "dt": "Print Settings", + "module": "Westech R2", + "label": "Compact Item Print", + "placeholder": null, + "fieldname": "compact_item_print", + "insert_after": "with_letterhead", + "length": 0, + "link_filters": null, + "fieldtype": "Check", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": "1", + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Quotation-exempt_from_sales_tax", + "is_system_generated": 1, + "dt": "Quotation", + "module": "Westech R2", + "label": "Is customer exempted from sales tax?", + "placeholder": null, + "fieldname": "exempt_from_sales_tax", + "insert_after": "taxes_and_charges", + "length": 0, + "link_filters": null, + "fieldtype": "Check", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Customer-exempt_from_sales_tax", + "is_system_generated": 1, + "dt": "Customer", + "module": "Westech R2", + "label": "Is customer exempted from sales tax?", + "placeholder": null, + "fieldname": "exempt_from_sales_tax", + "insert_after": "dn_required", + "length": 0, + "link_filters": null, + "fieldtype": "Check", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Sales Invoice-exempt_from_sales_tax", + "is_system_generated": 1, + "dt": "Sales Invoice", + "module": "Westech R2", + "label": "Is customer exempted from sales tax?", + "placeholder": null, + "fieldname": "exempt_from_sales_tax", + "insert_after": "taxes_section", + "length": 0, + "link_filters": null, + "fieldtype": "Check", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Sales Order-exempt_from_sales_tax", + "is_system_generated": 1, + "dt": "Sales Order", + "module": "Westech R2", + "label": "Is customer exempted from sales tax?", + "placeholder": null, + "fieldname": "exempt_from_sales_tax", + "insert_after": "taxes_and_charges", + "length": 0, + "link_filters": null, + "fieldtype": "Check", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Supplier-irs_1099", + "is_system_generated": 1, + "dt": "Supplier", + "module": "Westech R2", + "label": "Is IRS 1099 reporting required for supplier?", + "placeholder": null, + "fieldname": "irs_1099", + "insert_after": "tax_id", + "length": 0, + "link_filters": null, + "fieldtype": "Check", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Address-is_your_company_address", + "is_system_generated": 0, + "dt": "Address", + "module": "Westech R2", + "label": "Is Your Company Address", + "placeholder": null, + "fieldname": "is_your_company_address", + "insert_after": "linked_with", + "length": 0, + "link_filters": null, + "fieldtype": "Check", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": "0", + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Contact-is_billing_contact", + "is_system_generated": 0, + "dt": "Contact", + "module": "Westech R2", + "label": "Is Billing Contact", + "placeholder": null, + "fieldname": "is_billing_contact", + "insert_after": "is_primary_contact", + "length": 0, + "link_filters": null, + "fieldtype": "Check", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": null, + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + }, + { + "name": "Address-tax_category", + "is_system_generated": 0, + "dt": "Address", + "module": "Westech R2", + "label": "Tax Category", + "placeholder": null, + "fieldname": "tax_category", + "insert_after": "fax", + "length": 0, + "link_filters": null, + "fieldtype": "Link", + "precision": "", + "hide_seconds": 0, + "hide_days": 0, + "options": "Tax Category", + "sort_options": 0, + "fetch_from": null, + "fetch_if_empty": 0, + "collapsible": 0, + "collapsible_depends_on": null, + "default": null, + "depends_on": null, + "mandatory_depends_on": null, + "read_only_depends_on": null, + "non_negative": 0, + "reqd": 0, + "unique": 0, + "is_virtual": 0, + "read_only": 0, + "ignore_user_permissions": 0, + "hidden": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "print_width": null, + "no_copy": 0, + "allow_on_submit": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "in_global_search": 0, + "in_preview": 0, + "bold": 0, + "report_hide": 0, + "search_index": 0, + "allow_in_quick_entry": 0, + "ignore_xss_filter": 0, + "translatable": 0, + "hide_border": 0, + "show_dashboard": 0, + "description": null, + "permlevel": 0, + "width": null, + "columns": 0, + "doctype": "Custom Field" + } +] \ No newline at end of file diff --git a/westech_r2/fixtures/workspace.json b/westech_r2/fixtures/workspace.json new file mode 100644 index 0000000..6b28a0e --- /dev/null +++ b/westech_r2/fixtures/workspace.json @@ -0,0 +1,308 @@ +[ + { + "name": "Westech", + "label": "Westech", + "title": "Westech", + "sequence_id": 0.0, + "for_user": null, + "parent_page": null, + "module": "Westech R2", + "icon": "stock", + "indicator_color": "green", + "restrict_to_domain": null, + "hide_custom": 0, + "public": 1, + "is_hidden": 0, + "content": "[{\"type\": \"header\", \"data\": {\"text\": \"Westech Recyclers\"}}, {\"type\": \"shortcut\", \"data\": {\"shortcut_name\": \"New Intake\"}}, {\"type\": \"shortcut\", \"data\": {\"shortcut_name\": \"Pallets\"}}, {\"type\": \"shortcut\", \"data\": {\"shortcut_name\": \"Pallet List\"}}, {\"type\": \"shortcut\", \"data\": {\"shortcut_name\": \"Scheduled Pickups\"}}, {\"type\": \"shortcut\", \"data\": {\"shortcut_name\": \"Route Planner\"}}, {\"type\": \"spacer\", \"data\": {}}, {\"type\": \"header\", \"data\": {\"text\": \"Tools\"}}, {\"type\": \"shortcut\", \"data\": {\"shortcut_name\": \"EIM Device Portal\"}}, {\"type\": \"shortcut\", \"data\": {\"shortcut_name\": \"R2 Data Tracking\"}}, {\"type\": \"shortcut\", \"data\": {\"shortcut_name\": \"Wes AI Assistant\"}}, {\"type\": \"spacer\", \"data\": {}}, {\"type\": \"header\", \"data\": {\"text\": \"Records\"}}, {\"type\": \"shortcut\", \"data\": {\"shortcut_name\": \"Customers\"}}, {\"type\": \"shortcut\", \"data\": {\"shortcut_name\": \"Suppliers\"}}]", + "doctype": "Workspace", + "number_cards": [], + "roles": [], + "charts": [], + "custom_blocks": [], + "shortcuts": [ + { + "name": "udas5ds8ot", + "type": "Page", + "link_to": "intake", + "url": null, + "doc_view": "", + "kanban_board": null, + "label": "New Intake", + "icon": "add", + "restrict_to_domain": null, + "report_ref_doctype": null, + "stats_filter": null, + "color": null, + "format": null, + "doctype": "Workspace Shortcut" + }, + { + "name": "udait4ne28", + "type": "Page", + "link_to": "eim-portal", + "url": null, + "doc_view": "", + "kanban_board": null, + "label": "EIM Device Portal", + "icon": "scan", + "restrict_to_domain": null, + "report_ref_doctype": null, + "stats_filter": null, + "color": null, + "format": null, + "doctype": "Workspace Shortcut" + }, + { + "name": "uda22lpk4d", + "type": "Page", + "link_to": "r2-tracking", + "url": null, + "doc_view": "", + "kanban_board": null, + "label": "R2 Data Tracking", + "icon": "table", + "restrict_to_domain": null, + "report_ref_doctype": null, + "stats_filter": null, + "color": null, + "format": null, + "doctype": "Workspace Shortcut" + }, + { + "name": "uda1ujmmbm", + "type": "DocType", + "link_to": "Pallet", + "url": null, + "doc_view": "", + "kanban_board": null, + "label": "Pallets", + "icon": "stock", + "restrict_to_domain": null, + "report_ref_doctype": null, + "stats_filter": null, + "color": null, + "format": null, + "doctype": "Workspace Shortcut" + }, + { + "name": "udacp7r9mm", + "type": "DocType", + "link_to": "Customer", + "url": null, + "doc_view": "", + "kanban_board": null, + "label": "Customers", + "icon": "customer", + "restrict_to_domain": null, + "report_ref_doctype": null, + "stats_filter": null, + "color": null, + "format": null, + "doctype": "Workspace Shortcut" + }, + { + "name": "udata7hnp2", + "type": "DocType", + "link_to": "Supplier", + "url": null, + "doc_view": "", + "kanban_board": null, + "label": "Suppliers", + "icon": "users", + "restrict_to_domain": null, + "report_ref_doctype": null, + "stats_filter": null, + "color": null, + "format": null, + "doctype": "Workspace Shortcut" + }, + { + "name": "32sa54pcd0", + "type": "Page", + "link_to": "pallet-list", + "url": null, + "doc_view": "", + "kanban_board": null, + "label": "Pallet List", + "icon": "list", + "restrict_to_domain": null, + "report_ref_doctype": null, + "stats_filter": null, + "color": null, + "format": null, + "doctype": "Workspace Shortcut" + }, + { + "name": "dur8jjfd70", + "type": "Page", + "link_to": "route-planner", + "url": null, + "doc_view": "", + "kanban_board": null, + "label": "Route Planner", + "icon": "map", + "restrict_to_domain": null, + "report_ref_doctype": null, + "stats_filter": null, + "color": null, + "format": null, + "doctype": "Workspace Shortcut" + }, + { + "name": "durrgfv1f7", + "type": "DocType", + "link_to": "Scheduled Pickup", + "url": null, + "doc_view": "List", + "kanban_board": null, + "label": "Scheduled Pickups", + "icon": "calendar", + "restrict_to_domain": null, + "report_ref_doctype": null, + "stats_filter": null, + "color": null, + "format": null, + "doctype": "Workspace Shortcut" + } + ], + "quick_lists": [], + "links": [ + { + "name": "a3kfn55i4u", + "type": "Card Break", + "label": "Stock", + "icon": null, + "description": null, + "hidden": 0, + "link_type": "DocType", + "link_to": "", + "report_ref_doctype": null, + "dependencies": "", + "only_for": null, + "onboard": 0, + "is_query_report": 0, + "link_count": 0, + "doctype": "Workspace Link" + }, + { + "name": "a3khtlprab", + "type": "Link", + "label": "Warehouses", + "icon": null, + "description": null, + "hidden": 0, + "link_type": "DocType", + "link_to": "Warehouse", + "report_ref_doctype": null, + "dependencies": "", + "only_for": null, + "onboard": 0, + "is_query_report": 0, + "link_count": 0, + "doctype": "Workspace Link" + }, + { + "name": "a3kfh5qu2i", + "type": "Link", + "label": "Serial Nos", + "icon": null, + "description": null, + "hidden": 0, + "link_type": "DocType", + "link_to": "Serial No", + "report_ref_doctype": null, + "dependencies": "", + "only_for": null, + "onboard": 0, + "is_query_report": 0, + "link_count": 0, + "doctype": "Workspace Link" + }, + { + "name": "a3kd2bjk00", + "type": "Link", + "label": "Stock Entry", + "icon": null, + "description": null, + "hidden": 0, + "link_type": "DocType", + "link_to": "Stock Entry", + "report_ref_doctype": null, + "dependencies": "", + "only_for": null, + "onboard": 0, + "is_query_report": 0, + "link_count": 0, + "doctype": "Workspace Link" + }, + { + "name": "a3k18ofk9m", + "type": "Link", + "label": "Pallets", + "icon": null, + "description": null, + "hidden": 0, + "link_type": "DocType", + "link_to": "Pallet", + "report_ref_doctype": null, + "dependencies": "", + "only_for": null, + "onboard": 0, + "is_query_report": 0, + "link_count": 0, + "doctype": "Workspace Link" + }, + { + "name": "a3knidvhdq", + "type": "Link", + "label": "Stock Balance", + "icon": null, + "description": null, + "hidden": 0, + "link_type": "Report", + "link_to": "Stock Balance", + "report_ref_doctype": "Stock Ledger Entry", + "dependencies": "", + "only_for": null, + "onboard": 0, + "is_query_report": 0, + "link_count": 0, + "doctype": "Workspace Link" + }, + { + "name": "q8h2lf3bto", + "type": "Card Break", + "label": "R2 Tracking", + "icon": "octicon octicon-shield-check", + "description": null, + "hidden": 0, + "link_type": "DocType", + "link_to": null, + "report_ref_doctype": null, + "dependencies": null, + "only_for": null, + "onboard": 0, + "is_query_report": 0, + "link_count": 0, + "doctype": "Workspace Link" + }, + { + "name": "q8hvn93ud9", + "type": "Link", + "label": "Loads", + "icon": null, + "description": null, + "hidden": 0, + "link_type": "DocType", + "link_to": "Load", + "report_ref_doctype": null, + "dependencies": null, + "only_for": null, + "onboard": 0, + "is_query_report": 0, + "link_count": 0, + "doctype": "Workspace Link" + } + ] + } +] \ No newline at end of file diff --git a/westech_r2/hooks.py b/westech_r2/hooks.py new file mode 100644 index 0000000..526b917 --- /dev/null +++ b/westech_r2/hooks.py @@ -0,0 +1,36 @@ +app_name = "westech_r2" +app_title = "Westech R2" +app_publisher = "Westech" +app_description = "R2 Tracking for Westech Recyclers" +app_email = "" +app_license = "MIT" + +# Fixtures - these will be exported/imported +fixtures = [ + "Custom Field", + "DocType", + "Workspace", +] + +# Required apps +required_apps = ["erpnext"] + +# DocType event hooks +doc_events = { + "Pallet": { + "before_save": "westech_r2.doctype.pallet.pallet.update_serial_nos", + }, + "Scheduled Pickup": { + "before_save": "westech_r2.doctype.scheduled_pickup.scheduled_pickup.set_title", + }, + "Load": { + "before_save": "westech_r2.doctype.load.load.calculate_totals", + }, +} + +# Include JS in forms +app_include_js = [ + "/assets/westech_r2/js/scheduled_pickup.js", + "/assets/westech_r2/js/load.js", + "/assets/westech_r2/js/pallet.js", +] diff --git a/westech_r2/modules.txt b/westech_r2/modules.txt new file mode 100644 index 0000000..0883200 --- /dev/null +++ b/westech_r2/modules.txt @@ -0,0 +1 @@ +Westech R2 diff --git a/westech_r2/public/__init__.py b/westech_r2/public/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/westech_r2/public/js/load.js b/westech_r2/public/js/load.js new file mode 100644 index 0000000..008e6ac --- /dev/null +++ b/westech_r2/public/js/load.js @@ -0,0 +1,7 @@ +frappe.ui.form.on('Load', { + refresh: function(frm) { + frm.add_custom_button(__('View Pallets'), function() { + frappe.set_route('List', 'Pallet', {'load': frm.doc.name}); + }, __('Actions')); + } +}); diff --git a/westech_r2/public/js/pallet.js b/westech_r2/public/js/pallet.js new file mode 100644 index 0000000..46771c9 --- /dev/null +++ b/westech_r2/public/js/pallet.js @@ -0,0 +1,15 @@ +frappe.ui.form.on('Pallet', { + refresh: function(frm) { + frm.add_custom_button(__('View Serials'), function() { + frappe.set_route('List', 'Serial No', { + 'pallet': frm.doc.pallet_number || frm.doc.name + }); + }, __('View')); + + frm.add_custom_button(__('Serials Spreadsheet'), function() { + frappe.set_route('query-report', 'Serial Nos by Pallet', { + 'pallet': frm.doc.pallet_number || frm.doc.name + }); + }, __('View')); + } +}); diff --git a/westech_r2/public/js/scheduled_pickup.js b/westech_r2/public/js/scheduled_pickup.js new file mode 100644 index 0000000..a017ec3 --- /dev/null +++ b/westech_r2/public/js/scheduled_pickup.js @@ -0,0 +1,67 @@ +frappe.ui.form.on('Scheduled Pickup', { + customer_number: function(frm) { + var customer = frm.doc.customer_number; + if (!customer) { + clear_supplier_fields(frm); + return; + } + frappe.call({ + method: 'frappe.client.get', + args: {doctype: 'Supplier', name: customer}, + callback: function(r) { + if (!r.message) return; + var s = r.message; + if (!frm.doc.company_name && s.supplier_name) { + frm.set_value('company_name', s.supplier_name); + } + if (s.supplier_primary_contact) { + frappe.call({ + method: 'frappe.client.get', + args: {doctype: 'Contact', name: s.supplier_primary_contact}, + callback: function(cr) { + if (!cr.message) return; + var ct = cr.message; + var full_name = [ct.first_name, ct.last_name].filter(Boolean).join(' '); + if (!frm.doc.contact_name) frm.set_value('contact_name', full_name); + if (!frm.doc.contact_phone) frm.set_value('contact_phone', ct.phone || ''); + if (!frm.doc.contact_email) frm.set_value('contact_email', ct.email_id || ''); + } + }); + } + if (s.supplier_primary_address) { + frappe.call({ + method: 'frappe.client.get', + args: {doctype: 'Address', name: s.supplier_primary_address}, + callback: function(ar) { + if (!ar.message) return; + var a = ar.message; + if (!frm.doc.address_line) frm.set_value('address_line', a.address_line1 || ''); + if (!frm.doc.city) frm.set_value('city', a.city || ''); + if (!frm.doc.state) frm.set_value('state', a.state || ''); + if (!frm.doc.zip_code) frm.set_value('zip_code', a.pincode || ''); + } + }); + } + if (s.geocoded && s.latitude && s.longitude) { + frm.set_value('latitude', s.latitude); + frm.set_value('longitude', s.longitude); + frm.set_value('geocoded', 1); + } + } + }); + } +}); + +function clear_supplier_fields(frm) { + frm.set_value('company_name', ''); + frm.set_value('contact_name', ''); + frm.set_value('contact_phone', ''); + frm.set_value('contact_email', ''); + frm.set_value('address_line', ''); + frm.set_value('city', ''); + frm.set_value('state', ''); + frm.set_value('zip_code', ''); + frm.set_value('latitude', ''); + frm.set_value('longitude', ''); + frm.set_value('geocoded', 0); +} diff --git a/westech_r2/westech_r2/__init__.py b/westech_r2/westech_r2/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/westech_r2/westech_r2/__pycache__/__init__.cpython-312.pyc b/westech_r2/westech_r2/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000..a909cf6 Binary files /dev/null and b/westech_r2/westech_r2/__pycache__/__init__.cpython-312.pyc differ